4fd7129e4080f0ab7bdeef3870ca51b20022d79c
[vpp.git] / src / vnet / ip / ip6_forward.c
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * ip/ip6_forward.c: IP v6 forwarding
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/vnet.h>
41 #include <vnet/ip/ip.h>
42 #include <vnet/ip/ip6_neighbor.h>
43 #include <vnet/ethernet/ethernet.h>     /* for ethernet_header_t */
44 #include <vnet/srp/srp.h>       /* for srp_hw_interface_class */
45 #include <vppinfra/cache.h>
46 #include <vnet/fib/fib_urpf_list.h>     /* for FIB uRPF check */
47 #include <vnet/fib/ip6_fib.h>
48 #include <vnet/mfib/ip6_mfib.h>
49 #include <vnet/dpo/load_balance_map.h>
50 #include <vnet/dpo/classify_dpo.h>
51
52 #include <vppinfra/bihash_template.c>
53 #include <vnet/ip/ip6_forward.h>
54
55 /* Flag used by IOAM code. Classifier sets it pop-hop-by-hop checks it */
56 #define OI_DECAP   0x80000000
57
58 static void
59 ip6_add_interface_routes (vnet_main_t * vnm, u32 sw_if_index,
60                           ip6_main_t * im, u32 fib_index,
61                           ip_interface_address_t * a)
62 {
63   ip_lookup_main_t *lm = &im->lookup_main;
64   ip6_address_t *address = ip_interface_address_get_address (lm, a);
65   fib_prefix_t pfx = {
66     .fp_len = a->address_length,
67     .fp_proto = FIB_PROTOCOL_IP6,
68     .fp_addr.ip6 = *address,
69   };
70
71   if (a->address_length < 128)
72     {
73       fib_table_entry_update_one_path (fib_index,
74                                        &pfx,
75                                        FIB_SOURCE_INTERFACE,
76                                        (FIB_ENTRY_FLAG_CONNECTED |
77                                         FIB_ENTRY_FLAG_ATTACHED),
78                                        DPO_PROTO_IP6,
79                                        /* No next-hop address */
80                                        NULL, sw_if_index,
81                                        /* invalid FIB index */
82                                        ~0, 1,
83                                        /* no label stack */
84                                        NULL, FIB_ROUTE_PATH_FLAG_NONE);
85     }
86
87   pfx.fp_len = 128;
88   if (sw_if_index < vec_len (lm->classify_table_index_by_sw_if_index))
89     {
90       u32 classify_table_index =
91         lm->classify_table_index_by_sw_if_index[sw_if_index];
92       if (classify_table_index != (u32) ~ 0)
93         {
94           dpo_id_t dpo = DPO_INVALID;
95
96           dpo_set (&dpo,
97                    DPO_CLASSIFY,
98                    DPO_PROTO_IP6,
99                    classify_dpo_create (DPO_PROTO_IP6, classify_table_index));
100
101           fib_table_entry_special_dpo_add (fib_index,
102                                            &pfx,
103                                            FIB_SOURCE_CLASSIFY,
104                                            FIB_ENTRY_FLAG_NONE, &dpo);
105           dpo_reset (&dpo);
106         }
107     }
108
109   fib_table_entry_update_one_path (fib_index, &pfx,
110                                    FIB_SOURCE_INTERFACE,
111                                    (FIB_ENTRY_FLAG_CONNECTED |
112                                     FIB_ENTRY_FLAG_LOCAL),
113                                    DPO_PROTO_IP6,
114                                    &pfx.fp_addr,
115                                    sw_if_index, ~0,
116                                    1, NULL, FIB_ROUTE_PATH_FLAG_NONE);
117 }
118
119 static void
120 ip6_del_interface_routes (ip6_main_t * im,
121                           u32 fib_index,
122                           ip6_address_t * address, u32 address_length)
123 {
124   fib_prefix_t pfx = {
125     .fp_len = address_length,
126     .fp_proto = FIB_PROTOCOL_IP6,
127     .fp_addr.ip6 = *address,
128   };
129
130   if (pfx.fp_len < 128)
131     {
132       fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
133
134     }
135
136   pfx.fp_len = 128;
137   fib_table_entry_delete (fib_index, &pfx, FIB_SOURCE_INTERFACE);
138 }
139
140 void
141 ip6_sw_interface_enable_disable (u32 sw_if_index, u32 is_enable)
142 {
143   ip6_main_t *im = &ip6_main;
144
145   vec_validate_init_empty (im->ip_enabled_by_sw_if_index, sw_if_index, 0);
146
147   /*
148    * enable/disable only on the 1<->0 transition
149    */
150   if (is_enable)
151     {
152       if (1 != ++im->ip_enabled_by_sw_if_index[sw_if_index])
153         return;
154     }
155   else
156     {
157       /* The ref count is 0 when an address is removed from an interface that has
158        * no address - this is not a ciritical error */
159       if (0 == im->ip_enabled_by_sw_if_index[sw_if_index] ||
160           0 != --im->ip_enabled_by_sw_if_index[sw_if_index])
161         return;
162     }
163
164   vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
165                                !is_enable, 0, 0);
166
167   vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
168                                sw_if_index, !is_enable, 0, 0);
169 }
170
171 /* get first interface address */
172 ip6_address_t *
173 ip6_interface_first_address (ip6_main_t * im, u32 sw_if_index)
174 {
175   ip_lookup_main_t *lm = &im->lookup_main;
176   ip_interface_address_t *ia = 0;
177   ip6_address_t *result = 0;
178
179   /* *INDENT-OFF* */
180   foreach_ip_interface_address (lm, ia, sw_if_index,
181                                 1 /* honor unnumbered */,
182   ({
183     ip6_address_t * a = ip_interface_address_get_address (lm, ia);
184     result = a;
185     break;
186   }));
187   /* *INDENT-ON* */
188   return result;
189 }
190
191 clib_error_t *
192 ip6_add_del_interface_address (vlib_main_t * vm,
193                                u32 sw_if_index,
194                                ip6_address_t * address,
195                                u32 address_length, u32 is_del)
196 {
197   vnet_main_t *vnm = vnet_get_main ();
198   ip6_main_t *im = &ip6_main;
199   ip_lookup_main_t *lm = &im->lookup_main;
200   clib_error_t *error;
201   u32 if_address_index;
202   ip6_address_fib_t ip6_af, *addr_fib = 0;
203
204   /* local0 interface doesn't support IP addressing */
205   if (sw_if_index == 0)
206     {
207       return
208         clib_error_create ("local0 interface doesn't support IP addressing");
209     }
210
211   vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
212   vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
213
214   ip6_addr_fib_init (&ip6_af, address,
215                      vec_elt (im->fib_index_by_sw_if_index, sw_if_index));
216   vec_add1 (addr_fib, ip6_af);
217
218   {
219     uword elts_before = pool_elts (lm->if_address_pool);
220
221     error = ip_interface_address_add_del
222       (lm, sw_if_index, addr_fib, address_length, is_del, &if_address_index);
223     if (error)
224       goto done;
225
226     /* Pool did not grow: add duplicate address. */
227     if (elts_before == pool_elts (lm->if_address_pool))
228       goto done;
229   }
230
231   ip6_sw_interface_enable_disable (sw_if_index, !is_del);
232
233   if (is_del)
234     ip6_del_interface_routes (im, ip6_af.fib_index, address, address_length);
235   else
236     ip6_add_interface_routes (vnm, sw_if_index,
237                               im, ip6_af.fib_index,
238                               pool_elt_at_index (lm->if_address_pool,
239                                                  if_address_index));
240
241   {
242     ip6_add_del_interface_address_callback_t *cb;
243     vec_foreach (cb, im->add_del_interface_address_callbacks)
244       cb->function (im, cb->function_opaque, sw_if_index,
245                     address, address_length, if_address_index, is_del);
246   }
247
248 done:
249   vec_free (addr_fib);
250   return error;
251 }
252
253 clib_error_t *
254 ip6_sw_interface_admin_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
255 {
256   ip6_main_t *im = &ip6_main;
257   ip_interface_address_t *ia;
258   ip6_address_t *a;
259   u32 is_admin_up, fib_index;
260
261   /* Fill in lookup tables with default table (0). */
262   vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
263
264   vec_validate_init_empty (im->
265                            lookup_main.if_address_pool_index_by_sw_if_index,
266                            sw_if_index, ~0);
267
268   is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
269
270   fib_index = vec_elt (im->fib_index_by_sw_if_index, sw_if_index);
271
272   /* *INDENT-OFF* */
273   foreach_ip_interface_address (&im->lookup_main, ia, sw_if_index,
274                                 0 /* honor unnumbered */,
275   ({
276     a = ip_interface_address_get_address (&im->lookup_main, ia);
277     if (is_admin_up)
278       ip6_add_interface_routes (vnm, sw_if_index,
279                                 im, fib_index,
280                                 ia);
281     else
282       ip6_del_interface_routes (im, fib_index,
283                                 a, ia->address_length);
284   }));
285   /* *INDENT-ON* */
286
287   return 0;
288 }
289
290 VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ip6_sw_interface_admin_up_down);
291
292 /* Built-in ip6 unicast rx feature path definition */
293 /* *INDENT-OFF* */
294 VNET_FEATURE_ARC_INIT (ip6_unicast, static) =
295 {
296   .arc_name  = "ip6-unicast",
297   .start_nodes = VNET_FEATURES ("ip6-input"),
298   .arc_index_ptr = &ip6_main.lookup_main.ucast_feature_arc_index,
299 };
300
301 VNET_FEATURE_INIT (ip6_flow_classify, static) =
302 {
303   .arc_name = "ip6-unicast",
304   .node_name = "ip6-flow-classify",
305   .runs_before = VNET_FEATURES ("ip6-inacl"),
306 };
307
308 VNET_FEATURE_INIT (ip6_inacl, static) =
309 {
310   .arc_name = "ip6-unicast",
311   .node_name = "ip6-inacl",
312   .runs_before = VNET_FEATURES ("ip6-policer-classify"),
313 };
314
315 VNET_FEATURE_INIT (ip6_policer_classify, static) =
316 {
317   .arc_name = "ip6-unicast",
318   .node_name = "ip6-policer-classify",
319   .runs_before = VNET_FEATURES ("ipsec-input-ip6"),
320 };
321
322 VNET_FEATURE_INIT (ip6_ipsec, static) =
323 {
324   .arc_name = "ip6-unicast",
325   .node_name = "ipsec-input-ip6",
326   .runs_before = VNET_FEATURES ("l2tp-decap"),
327 };
328
329 VNET_FEATURE_INIT (ip6_l2tp, static) =
330 {
331   .arc_name = "ip6-unicast",
332   .node_name = "l2tp-decap",
333   .runs_before = VNET_FEATURES ("vpath-input-ip6"),
334 };
335
336 VNET_FEATURE_INIT (ip6_vpath, static) =
337 {
338   .arc_name = "ip6-unicast",
339   .node_name = "vpath-input-ip6",
340   .runs_before = VNET_FEATURES ("ip6-vxlan-bypass"),
341 };
342
343 VNET_FEATURE_INIT (ip6_vxlan_bypass, static) =
344 {
345   .arc_name = "ip6-unicast",
346   .node_name = "ip6-vxlan-bypass",
347   .runs_before = VNET_FEATURES ("ip6-lookup"),
348 };
349
350 VNET_FEATURE_INIT (ip6_not_enabled, static) =
351 {
352   .arc_name = "ip6-unicast",
353   .node_name = "ip6-not-enabled",
354   .runs_before = VNET_FEATURES ("ip6-lookup"),
355 };
356
357 VNET_FEATURE_INIT (ip6_lookup, static) =
358 {
359   .arc_name = "ip6-unicast",
360   .node_name = "ip6-lookup",
361   .runs_before = 0,  /*last feature*/
362 };
363
364 /* Built-in ip6 multicast rx feature path definition (none now) */
365 VNET_FEATURE_ARC_INIT (ip6_multicast, static) =
366 {
367   .arc_name  = "ip6-multicast",
368   .start_nodes = VNET_FEATURES ("ip6-input"),
369   .arc_index_ptr = &ip6_main.lookup_main.mcast_feature_arc_index,
370 };
371
372 VNET_FEATURE_INIT (ip6_vpath_mc, static) = {
373   .arc_name = "ip6-multicast",
374   .node_name = "vpath-input-ip6",
375   .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
376 };
377
378 VNET_FEATURE_INIT (ip6_not_enabled_mc, static) = {
379   .arc_name = "ip6-multicast",
380   .node_name = "ip6-not-enabled",
381   .runs_before = VNET_FEATURES ("ip6-mfib-forward-lookup"),
382 };
383
384 VNET_FEATURE_INIT (ip6_mc_lookup, static) = {
385   .arc_name = "ip6-multicast",
386   .node_name = "ip6-mfib-forward-lookup",
387   .runs_before = 0, /* last feature */
388 };
389
390 /* Built-in ip4 tx feature path definition */
391 VNET_FEATURE_ARC_INIT (ip6_output, static) =
392 {
393   .arc_name  = "ip6-output",
394   .start_nodes = VNET_FEATURES ("ip6-rewrite", "ip6-midchain", "ip6-dvr-dpo"),
395   .arc_index_ptr = &ip6_main.lookup_main.output_feature_arc_index,
396 };
397
398 VNET_FEATURE_INIT (ip6_outacl, static) = {
399   .arc_name = "ip6-output",
400   .node_name = "ip6-outacl",
401   .runs_before = VNET_FEATURES ("ipsec-output-ip6"),
402 };
403
404 VNET_FEATURE_INIT (ip6_ipsec_output, static) = {
405   .arc_name = "ip6-output",
406   .node_name = "ipsec-output-ip6",
407   .runs_before = VNET_FEATURES ("interface-output"),
408 };
409
410 VNET_FEATURE_INIT (ip6_interface_output, static) = {
411   .arc_name = "ip6-output",
412   .node_name = "interface-output",
413   .runs_before = 0, /* not before any other features */
414 };
415 /* *INDENT-ON* */
416
417 clib_error_t *
418 ip6_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
419 {
420   ip6_main_t *im = &ip6_main;
421
422   vec_validate (im->fib_index_by_sw_if_index, sw_if_index);
423   vec_validate (im->mfib_index_by_sw_if_index, sw_if_index);
424
425   if (!is_add)
426     {
427       /* Ensure that IPv6 is disabled */
428       ip6_main_t *im6 = &ip6_main;
429       ip_lookup_main_t *lm6 = &im6->lookup_main;
430       ip_interface_address_t *ia = 0;
431       ip6_address_t *address;
432       vlib_main_t *vm = vlib_get_main ();
433
434       ip6_neighbor_sw_interface_add_del (vnm, sw_if_index, 0 /* is_add */ );
435       /* *INDENT-OFF* */
436       foreach_ip_interface_address (lm6, ia, sw_if_index, 1 /* honor unnumbered */,
437       ({
438         address = ip_interface_address_get_address (lm6, ia);
439         ip6_add_del_interface_address(vm, sw_if_index, address, ia->address_length, 1);
440       }));
441       /* *INDENT-ON* */
442       ip6_mfib_interface_enable_disable (sw_if_index, 0);
443     }
444
445   vnet_feature_enable_disable ("ip6-unicast", "ip6-not-enabled", sw_if_index,
446                                is_add, 0, 0);
447
448   vnet_feature_enable_disable ("ip6-multicast", "ip6-not-enabled",
449                                sw_if_index, is_add, 0, 0);
450
451   return /* no error */ 0;
452 }
453
454 VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ip6_sw_interface_add_del);
455
456 static uword
457 ip6_lookup (vlib_main_t * vm,
458             vlib_node_runtime_t * node, vlib_frame_t * frame)
459 {
460   return ip6_lookup_inline (vm, node, frame);
461 }
462
463 static u8 *format_ip6_lookup_trace (u8 * s, va_list * args);
464
465 /* *INDENT-OFF* */
466 VLIB_REGISTER_NODE (ip6_lookup_node) =
467 {
468   .function = ip6_lookup,
469   .name = "ip6-lookup",
470   .vector_size = sizeof (u32),
471   .format_trace = format_ip6_lookup_trace,
472   .n_next_nodes = IP6_LOOKUP_N_NEXT,
473   .next_nodes = IP6_LOOKUP_NEXT_NODES,
474 };
475 /* *INDENT-ON* */
476
477 VLIB_NODE_FUNCTION_MULTIARCH (ip6_lookup_node, ip6_lookup);
478
479 always_inline uword
480 ip6_load_balance (vlib_main_t * vm,
481                   vlib_node_runtime_t * node, vlib_frame_t * frame)
482 {
483   vlib_combined_counter_main_t *cm = &load_balance_main.lbm_via_counters;
484   u32 n_left_from, n_left_to_next, *from, *to_next;
485   ip_lookup_next_t next;
486   u32 thread_index = vlib_get_thread_index ();
487   ip6_main_t *im = &ip6_main;
488
489   from = vlib_frame_vector_args (frame);
490   n_left_from = frame->n_vectors;
491   next = node->cached_next_index;
492
493   if (node->flags & VLIB_NODE_FLAG_TRACE)
494     ip6_forward_next_trace (vm, node, frame, VLIB_TX);
495
496   while (n_left_from > 0)
497     {
498       vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
499
500
501       while (n_left_from >= 4 && n_left_to_next >= 2)
502         {
503           ip_lookup_next_t next0, next1;
504           const load_balance_t *lb0, *lb1;
505           vlib_buffer_t *p0, *p1;
506           u32 pi0, lbi0, hc0, pi1, lbi1, hc1;
507           const ip6_header_t *ip0, *ip1;
508           const dpo_id_t *dpo0, *dpo1;
509
510           /* Prefetch next iteration. */
511           {
512             vlib_buffer_t *p2, *p3;
513
514             p2 = vlib_get_buffer (vm, from[2]);
515             p3 = vlib_get_buffer (vm, from[3]);
516
517             vlib_prefetch_buffer_header (p2, STORE);
518             vlib_prefetch_buffer_header (p3, STORE);
519
520             CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
521             CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
522           }
523
524           pi0 = to_next[0] = from[0];
525           pi1 = to_next[1] = from[1];
526
527           from += 2;
528           n_left_from -= 2;
529           to_next += 2;
530           n_left_to_next -= 2;
531
532           p0 = vlib_get_buffer (vm, pi0);
533           p1 = vlib_get_buffer (vm, pi1);
534
535           ip0 = vlib_buffer_get_current (p0);
536           ip1 = vlib_buffer_get_current (p1);
537           lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
538           lbi1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
539
540           lb0 = load_balance_get (lbi0);
541           lb1 = load_balance_get (lbi1);
542
543           /*
544            * this node is for via FIBs we can re-use the hash value from the
545            * to node if present.
546            * We don't want to use the same hash value at each level in the recursion
547            * graph as that would lead to polarisation
548            */
549           hc0 = hc1 = 0;
550
551           if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
552             {
553               if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash))
554                 {
555                   hc0 = vnet_buffer (p0)->ip.flow_hash =
556                     vnet_buffer (p0)->ip.flow_hash >> 1;
557                 }
558               else
559                 {
560                   hc0 = vnet_buffer (p0)->ip.flow_hash =
561                     ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
562                 }
563               dpo0 =
564                 load_balance_get_fwd_bucket (lb0,
565                                              (hc0 &
566                                               lb0->lb_n_buckets_minus_1));
567             }
568           else
569             {
570               dpo0 = load_balance_get_bucket_i (lb0, 0);
571             }
572           if (PREDICT_FALSE (lb1->lb_n_buckets > 1))
573             {
574               if (PREDICT_TRUE (vnet_buffer (p1)->ip.flow_hash))
575                 {
576                   hc1 = vnet_buffer (p1)->ip.flow_hash =
577                     vnet_buffer (p1)->ip.flow_hash >> 1;
578                 }
579               else
580                 {
581                   hc1 = vnet_buffer (p1)->ip.flow_hash =
582                     ip6_compute_flow_hash (ip1, lb1->lb_hash_config);
583                 }
584               dpo1 =
585                 load_balance_get_fwd_bucket (lb1,
586                                              (hc1 &
587                                               lb1->lb_n_buckets_minus_1));
588             }
589           else
590             {
591               dpo1 = load_balance_get_bucket_i (lb1, 0);
592             }
593
594           next0 = dpo0->dpoi_next_node;
595           next1 = dpo1->dpoi_next_node;
596
597           /* Only process the HBH Option Header if explicitly configured to do so */
598           if (PREDICT_FALSE
599               (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
600             {
601               next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
602                 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0;
603             }
604           /* Only process the HBH Option Header if explicitly configured to do so */
605           if (PREDICT_FALSE
606               (ip1->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
607             {
608               next1 = (dpo_is_adj (dpo1) && im->hbh_enabled) ?
609                 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next1;
610             }
611
612           vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
613           vnet_buffer (p1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
614
615           vlib_increment_combined_counter
616             (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0));
617           vlib_increment_combined_counter
618             (cm, thread_index, lbi1, 1, vlib_buffer_length_in_chain (vm, p1));
619
620           vlib_validate_buffer_enqueue_x2 (vm, node, next,
621                                            to_next, n_left_to_next,
622                                            pi0, pi1, next0, next1);
623         }
624
625       while (n_left_from > 0 && n_left_to_next > 0)
626         {
627           ip_lookup_next_t next0;
628           const load_balance_t *lb0;
629           vlib_buffer_t *p0;
630           u32 pi0, lbi0, hc0;
631           const ip6_header_t *ip0;
632           const dpo_id_t *dpo0;
633
634           pi0 = from[0];
635           to_next[0] = pi0;
636           from += 1;
637           to_next += 1;
638           n_left_to_next -= 1;
639           n_left_from -= 1;
640
641           p0 = vlib_get_buffer (vm, pi0);
642
643           ip0 = vlib_buffer_get_current (p0);
644           lbi0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
645
646           lb0 = load_balance_get (lbi0);
647
648           hc0 = 0;
649           if (PREDICT_FALSE (lb0->lb_n_buckets > 1))
650             {
651               if (PREDICT_TRUE (vnet_buffer (p0)->ip.flow_hash))
652                 {
653                   hc0 = vnet_buffer (p0)->ip.flow_hash =
654                     vnet_buffer (p0)->ip.flow_hash >> 1;
655                 }
656               else
657                 {
658                   hc0 = vnet_buffer (p0)->ip.flow_hash =
659                     ip6_compute_flow_hash (ip0, lb0->lb_hash_config);
660                 }
661               dpo0 =
662                 load_balance_get_fwd_bucket (lb0,
663                                              (hc0 &
664                                               lb0->lb_n_buckets_minus_1));
665             }
666           else
667             {
668               dpo0 = load_balance_get_bucket_i (lb0, 0);
669             }
670
671           next0 = dpo0->dpoi_next_node;
672           vnet_buffer (p0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
673
674           /* Only process the HBH Option Header if explicitly configured to do so */
675           if (PREDICT_FALSE
676               (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
677             {
678               next0 = (dpo_is_adj (dpo0) && im->hbh_enabled) ?
679                 (ip_lookup_next_t) IP6_LOOKUP_NEXT_HOP_BY_HOP : next0;
680             }
681
682           vlib_increment_combined_counter
683             (cm, thread_index, lbi0, 1, vlib_buffer_length_in_chain (vm, p0));
684
685           vlib_validate_buffer_enqueue_x1 (vm, node, next,
686                                            to_next, n_left_to_next,
687                                            pi0, next0);
688         }
689
690       vlib_put_next_frame (vm, node, next, n_left_to_next);
691     }
692
693   return frame->n_vectors;
694 }
695
696 /* *INDENT-OFF* */
697 VLIB_REGISTER_NODE (ip6_load_balance_node) =
698 {
699   .function = ip6_load_balance,
700   .name = "ip6-load-balance",
701   .vector_size = sizeof (u32),
702   .sibling_of = "ip6-lookup",
703   .format_trace = format_ip6_lookup_trace,
704 };
705 /* *INDENT-ON* */
706
707 VLIB_NODE_FUNCTION_MULTIARCH (ip6_load_balance_node, ip6_load_balance);
708
709 typedef struct
710 {
711   /* Adjacency taken. */
712   u32 adj_index;
713   u32 flow_hash;
714   u32 fib_index;
715
716   /* Packet data, possibly *after* rewrite. */
717   u8 packet_data[128 - 1 * sizeof (u32)];
718 }
719 ip6_forward_next_trace_t;
720
721 u8 *
722 format_ip6_forward_next_trace (u8 * s, va_list * args)
723 {
724   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
725   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
726   ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
727   u32 indent = format_get_indent (s);
728
729   s = format (s, "%U%U",
730               format_white_space, indent,
731               format_ip6_header, t->packet_data, sizeof (t->packet_data));
732   return s;
733 }
734
735 static u8 *
736 format_ip6_lookup_trace (u8 * s, va_list * args)
737 {
738   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
739   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
740   ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
741   u32 indent = format_get_indent (s);
742
743   s = format (s, "fib %d dpo-idx %d flow hash: 0x%08x",
744               t->fib_index, t->adj_index, t->flow_hash);
745   s = format (s, "\n%U%U",
746               format_white_space, indent,
747               format_ip6_header, t->packet_data, sizeof (t->packet_data));
748   return s;
749 }
750
751
752 static u8 *
753 format_ip6_rewrite_trace (u8 * s, va_list * args)
754 {
755   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
756   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
757   ip6_forward_next_trace_t *t = va_arg (*args, ip6_forward_next_trace_t *);
758   u32 indent = format_get_indent (s);
759
760   s = format (s, "tx_sw_if_index %d adj-idx %d : %U flow hash: 0x%08x",
761               t->fib_index, t->adj_index, format_ip_adjacency,
762               t->adj_index, FORMAT_IP_ADJACENCY_NONE, t->flow_hash);
763   s = format (s, "\n%U%U",
764               format_white_space, indent,
765               format_ip_adjacency_packet_data,
766               t->adj_index, t->packet_data, sizeof (t->packet_data));
767   return s;
768 }
769
770 /* Common trace function for all ip6-forward next nodes. */
771 void
772 ip6_forward_next_trace (vlib_main_t * vm,
773                         vlib_node_runtime_t * node,
774                         vlib_frame_t * frame, vlib_rx_or_tx_t which_adj_index)
775 {
776   u32 *from, n_left;
777   ip6_main_t *im = &ip6_main;
778
779   n_left = frame->n_vectors;
780   from = vlib_frame_vector_args (frame);
781
782   while (n_left >= 4)
783     {
784       u32 bi0, bi1;
785       vlib_buffer_t *b0, *b1;
786       ip6_forward_next_trace_t *t0, *t1;
787
788       /* Prefetch next iteration. */
789       vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
790       vlib_prefetch_buffer_with_index (vm, from[3], LOAD);
791
792       bi0 = from[0];
793       bi1 = from[1];
794
795       b0 = vlib_get_buffer (vm, bi0);
796       b1 = vlib_get_buffer (vm, bi1);
797
798       if (b0->flags & VLIB_BUFFER_IS_TRACED)
799         {
800           t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
801           t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
802           t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
803           t0->fib_index =
804             (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
805              (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
806             vec_elt (im->fib_index_by_sw_if_index,
807                      vnet_buffer (b0)->sw_if_index[VLIB_RX]);
808
809           clib_memcpy (t0->packet_data,
810                        vlib_buffer_get_current (b0),
811                        sizeof (t0->packet_data));
812         }
813       if (b1->flags & VLIB_BUFFER_IS_TRACED)
814         {
815           t1 = vlib_add_trace (vm, node, b1, sizeof (t1[0]));
816           t1->adj_index = vnet_buffer (b1)->ip.adj_index[which_adj_index];
817           t1->flow_hash = vnet_buffer (b1)->ip.flow_hash;
818           t1->fib_index =
819             (vnet_buffer (b1)->sw_if_index[VLIB_TX] !=
820              (u32) ~ 0) ? vnet_buffer (b1)->sw_if_index[VLIB_TX] :
821             vec_elt (im->fib_index_by_sw_if_index,
822                      vnet_buffer (b1)->sw_if_index[VLIB_RX]);
823
824           clib_memcpy (t1->packet_data,
825                        vlib_buffer_get_current (b1),
826                        sizeof (t1->packet_data));
827         }
828       from += 2;
829       n_left -= 2;
830     }
831
832   while (n_left >= 1)
833     {
834       u32 bi0;
835       vlib_buffer_t *b0;
836       ip6_forward_next_trace_t *t0;
837
838       bi0 = from[0];
839
840       b0 = vlib_get_buffer (vm, bi0);
841
842       if (b0->flags & VLIB_BUFFER_IS_TRACED)
843         {
844           t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
845           t0->adj_index = vnet_buffer (b0)->ip.adj_index[which_adj_index];
846           t0->flow_hash = vnet_buffer (b0)->ip.flow_hash;
847           t0->fib_index =
848             (vnet_buffer (b0)->sw_if_index[VLIB_TX] !=
849              (u32) ~ 0) ? vnet_buffer (b0)->sw_if_index[VLIB_TX] :
850             vec_elt (im->fib_index_by_sw_if_index,
851                      vnet_buffer (b0)->sw_if_index[VLIB_RX]);
852
853           clib_memcpy (t0->packet_data,
854                        vlib_buffer_get_current (b0),
855                        sizeof (t0->packet_data));
856         }
857       from += 1;
858       n_left -= 1;
859     }
860 }
861
862 /* Compute TCP/UDP/ICMP6 checksum in software. */
863 u16
864 ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0,
865                                    ip6_header_t * ip0, int *bogus_lengthp)
866 {
867   ip_csum_t sum0;
868   u16 sum16, payload_length_host_byte_order;
869   u32 i, n_this_buffer, n_bytes_left;
870   u32 headers_size = sizeof (ip0[0]);
871   void *data_this_buffer;
872
873   ASSERT (bogus_lengthp);
874   *bogus_lengthp = 0;
875
876   /* Initialize checksum with ip header. */
877   sum0 = ip0->payload_length + clib_host_to_net_u16 (ip0->protocol);
878   payload_length_host_byte_order = clib_net_to_host_u16 (ip0->payload_length);
879   data_this_buffer = (void *) (ip0 + 1);
880
881   for (i = 0; i < ARRAY_LEN (ip0->src_address.as_uword); i++)
882     {
883       sum0 = ip_csum_with_carry (sum0,
884                                  clib_mem_unaligned (&ip0->
885                                                      src_address.as_uword[i],
886                                                      uword));
887       sum0 =
888         ip_csum_with_carry (sum0,
889                             clib_mem_unaligned (&ip0->dst_address.as_uword[i],
890                                                 uword));
891     }
892
893   /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets)
894    * or UDP-Ping packets */
895   if (PREDICT_FALSE (ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS))
896     {
897       u32 skip_bytes;
898       ip6_hop_by_hop_ext_t *ext_hdr =
899         (ip6_hop_by_hop_ext_t *) data_this_buffer;
900
901       /* validate really icmp6 next */
902       ASSERT ((ext_hdr->next_hdr == IP_PROTOCOL_ICMP6)
903               || (ext_hdr->next_hdr == IP_PROTOCOL_UDP));
904
905       skip_bytes = 8 * (1 + ext_hdr->n_data_u64s);
906       data_this_buffer = (void *) ((u8 *) data_this_buffer + skip_bytes);
907
908       payload_length_host_byte_order -= skip_bytes;
909       headers_size += skip_bytes;
910     }
911
912   n_bytes_left = n_this_buffer = payload_length_host_byte_order;
913   if (p0 && n_this_buffer + headers_size > p0->current_length)
914     n_this_buffer =
915       p0->current_length >
916       headers_size ? p0->current_length - headers_size : 0;
917   while (1)
918     {
919       sum0 = ip_incremental_checksum (sum0, data_this_buffer, n_this_buffer);
920       n_bytes_left -= n_this_buffer;
921       if (n_bytes_left == 0)
922         break;
923
924       if (!(p0->flags & VLIB_BUFFER_NEXT_PRESENT))
925         {
926           *bogus_lengthp = 1;
927           return 0xfefe;
928         }
929       p0 = vlib_get_buffer (vm, p0->next_buffer);
930       data_this_buffer = vlib_buffer_get_current (p0);
931       n_this_buffer = p0->current_length;
932     }
933
934   sum16 = ~ip_csum_fold (sum0);
935
936   return sum16;
937 }
938
939 u32
940 ip6_tcp_udp_icmp_validate_checksum (vlib_main_t * vm, vlib_buffer_t * p0)
941 {
942   ip6_header_t *ip0 = vlib_buffer_get_current (p0);
943   udp_header_t *udp0;
944   u16 sum16;
945   int bogus_length;
946
947   /* some icmp packets may come with a "router alert" hop-by-hop extension header (e.g., mldv2 packets) */
948   ASSERT (ip0->protocol == IP_PROTOCOL_TCP
949           || ip0->protocol == IP_PROTOCOL_ICMP6
950           || ip0->protocol == IP_PROTOCOL_UDP
951           || ip0->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS);
952
953   udp0 = (void *) (ip0 + 1);
954   if (ip0->protocol == IP_PROTOCOL_UDP && udp0->checksum == 0)
955     {
956       p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
957                     | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
958       return p0->flags;
959     }
960
961   sum16 = ip6_tcp_udp_icmp_compute_checksum (vm, p0, ip0, &bogus_length);
962
963   p0->flags |= (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED
964                 | ((sum16 == 0) << VNET_BUFFER_F_LOG2_L4_CHECKSUM_CORRECT));
965
966   return p0->flags;
967 }
968
969 /**
970  * @brief returns number of links on which src is reachable.
971  */
972 always_inline int
973 ip6_urpf_loose_check (ip6_main_t * im, vlib_buffer_t * b, ip6_header_t * i)
974 {
975   const load_balance_t *lb0;
976   index_t lbi;
977
978   lbi = ip6_fib_table_fwding_lookup_with_if_index (im,
979                                                    vnet_buffer
980                                                    (b)->sw_if_index[VLIB_RX],
981                                                    &i->src_address);
982
983   lb0 = load_balance_get (lbi);
984
985   return (fib_urpf_check_size (lb0->lb_urpf));
986 }
987
988 always_inline u8
989 ip6_next_proto_is_tcp_udp (vlib_buffer_t * p0, ip6_header_t * ip0,
990                            u32 * udp_offset0)
991 {
992   u32 proto0;
993   proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_UDP, udp_offset0);
994   if (proto0 != IP_PROTOCOL_UDP)
995     {
996       proto0 = ip6_locate_header (p0, ip0, IP_PROTOCOL_TCP, udp_offset0);
997       proto0 = (proto0 == IP_PROTOCOL_TCP) ? proto0 : 0;
998     }
999   return proto0;
1000 }
1001
1002 /* *INDENT-OFF* */
1003 VNET_FEATURE_ARC_INIT (ip6_local) =
1004 {
1005   .arc_name  = "ip6-local",
1006   .start_nodes = VNET_FEATURES ("ip6-local"),
1007 };
1008 /* *INDENT-ON* */
1009
1010 static uword
1011 ip6_local_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1012                   vlib_frame_t * frame, int head_of_feature_arc)
1013 {
1014   ip6_main_t *im = &ip6_main;
1015   ip_lookup_main_t *lm = &im->lookup_main;
1016   ip_local_next_t next_index;
1017   u32 *from, *to_next, n_left_from, n_left_to_next;
1018   vlib_node_runtime_t *error_node =
1019     vlib_node_get_runtime (vm, ip6_input_node.index);
1020   u8 arc_index = vnet_feat_arc_ip6_local.feature_arc_index;
1021
1022   from = vlib_frame_vector_args (frame);
1023   n_left_from = frame->n_vectors;
1024   next_index = node->cached_next_index;
1025
1026   if (node->flags & VLIB_NODE_FLAG_TRACE)
1027     ip6_forward_next_trace (vm, node, frame, VLIB_TX);
1028
1029   while (n_left_from > 0)
1030     {
1031       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1032
1033       while (n_left_from >= 4 && n_left_to_next >= 2)
1034         {
1035           vlib_buffer_t *p0, *p1;
1036           ip6_header_t *ip0, *ip1;
1037           udp_header_t *udp0, *udp1;
1038           u32 pi0, ip_len0, udp_len0, flags0, next0;
1039           u32 pi1, ip_len1, udp_len1, flags1, next1;
1040           i32 len_diff0, len_diff1;
1041           u8 error0, type0, good_l4_csum0, is_tcp_udp0;
1042           u8 error1, type1, good_l4_csum1, is_tcp_udp1;
1043           u32 udp_offset0, udp_offset1;
1044
1045           pi0 = to_next[0] = from[0];
1046           pi1 = to_next[1] = from[1];
1047           from += 2;
1048           n_left_from -= 2;
1049           to_next += 2;
1050           n_left_to_next -= 2;
1051
1052           error0 = error1 = IP6_ERROR_UNKNOWN_PROTOCOL;
1053
1054           p0 = vlib_get_buffer (vm, pi0);
1055           p1 = vlib_get_buffer (vm, pi1);
1056
1057           ip0 = vlib_buffer_get_current (p0);
1058           ip1 = vlib_buffer_get_current (p1);
1059
1060           if (head_of_feature_arc == 0)
1061             goto skip_checks;
1062
1063           vnet_buffer (p0)->l3_hdr_offset = p0->current_data;
1064           vnet_buffer (p1)->l3_hdr_offset = p1->current_data;
1065
1066           type0 = lm->builtin_protocol_by_ip_protocol[ip0->protocol];
1067           type1 = lm->builtin_protocol_by_ip_protocol[ip1->protocol];
1068
1069           flags0 = p0->flags;
1070           flags1 = p1->flags;
1071
1072           is_tcp_udp0 = ip6_next_proto_is_tcp_udp (p0, ip0, &udp_offset0);
1073           is_tcp_udp1 = ip6_next_proto_is_tcp_udp (p1, ip1, &udp_offset1);
1074
1075           good_l4_csum0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT
1076                            || (flags0 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM
1077                                || flags0 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
1078             != 0;
1079           good_l4_csum1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT
1080                            || (flags1 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM
1081                                || flags1 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
1082             != 0;
1083           len_diff0 = 0;
1084           len_diff1 = 0;
1085
1086           if (PREDICT_TRUE (is_tcp_udp0))
1087             {
1088               udp0 = (udp_header_t *) ((u8 *) ip0 + udp_offset0);
1089               /* Don't verify UDP checksum for packets with explicit zero checksum. */
1090               good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UDP
1091                 && udp0->checksum == 0;
1092               /* Verify UDP length. */
1093               if (is_tcp_udp0 == IP_PROTOCOL_UDP)
1094                 {
1095                   ip_len0 = clib_net_to_host_u16 (ip0->payload_length);
1096                   udp_len0 = clib_net_to_host_u16 (udp0->length);
1097                   len_diff0 = ip_len0 - udp_len0;
1098                 }
1099             }
1100           if (PREDICT_TRUE (is_tcp_udp1))
1101             {
1102               udp1 = (udp_header_t *) ((u8 *) ip1 + udp_offset1);
1103               /* Don't verify UDP checksum for packets with explicit zero checksum. */
1104               good_l4_csum1 |= type1 == IP_BUILTIN_PROTOCOL_UDP
1105                 && udp1->checksum == 0;
1106               /* Verify UDP length. */
1107               if (is_tcp_udp1 == IP_PROTOCOL_UDP)
1108                 {
1109                   ip_len1 = clib_net_to_host_u16 (ip1->payload_length);
1110                   udp_len1 = clib_net_to_host_u16 (udp1->length);
1111                   len_diff1 = ip_len1 - udp_len1;
1112                 }
1113             }
1114
1115           good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UNKNOWN;
1116           good_l4_csum1 |= type1 == IP_BUILTIN_PROTOCOL_UNKNOWN;
1117
1118           len_diff0 = type0 == IP_BUILTIN_PROTOCOL_UDP ? len_diff0 : 0;
1119           len_diff1 = type1 == IP_BUILTIN_PROTOCOL_UDP ? len_diff1 : 0;
1120
1121           if (PREDICT_FALSE (type0 != IP_BUILTIN_PROTOCOL_UNKNOWN
1122                              && !good_l4_csum0
1123                              && !(flags0 &
1124                                   VNET_BUFFER_F_L4_CHECKSUM_COMPUTED)))
1125             {
1126               flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, p0);
1127               good_l4_csum0 =
1128                 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
1129             }
1130           if (PREDICT_FALSE (type1 != IP_BUILTIN_PROTOCOL_UNKNOWN
1131                              && !good_l4_csum1
1132                              && !(flags1 &
1133                                   VNET_BUFFER_F_L4_CHECKSUM_COMPUTED)))
1134             {
1135               flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, p1);
1136               good_l4_csum1 =
1137                 (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
1138             }
1139
1140           error0 = error1 = IP6_ERROR_UNKNOWN_PROTOCOL;
1141           error0 = len_diff0 < 0 ? IP6_ERROR_UDP_LENGTH : error0;
1142           error1 = len_diff1 < 0 ? IP6_ERROR_UDP_LENGTH : error1;
1143
1144           ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1145                   IP6_ERROR_UDP_CHECKSUM);
1146           ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1147                   IP6_ERROR_ICMP_CHECKSUM);
1148           error0 = (!good_l4_csum0 ? IP6_ERROR_UDP_CHECKSUM + type0 : error0);
1149           error1 = (!good_l4_csum1 ? IP6_ERROR_UDP_CHECKSUM + type1 : error1);
1150
1151           /* Drop packets from unroutable hosts. */
1152           /* If this is a neighbor solicitation (ICMP), skip source RPF check */
1153           if (error0 == IP6_ERROR_UNKNOWN_PROTOCOL &&
1154               type0 != IP_BUILTIN_PROTOCOL_ICMP &&
1155               !ip6_address_is_link_local_unicast (&ip0->src_address))
1156             {
1157               error0 = (!ip6_urpf_loose_check (im, p0, ip0)
1158                         ? IP6_ERROR_SRC_LOOKUP_MISS : error0);
1159             }
1160           if (error1 == IP6_ERROR_UNKNOWN_PROTOCOL &&
1161               type1 != IP_BUILTIN_PROTOCOL_ICMP &&
1162               !ip6_address_is_link_local_unicast (&ip1->src_address))
1163             {
1164               error1 = (!ip6_urpf_loose_check (im, p1, ip1)
1165                         ? IP6_ERROR_SRC_LOOKUP_MISS : error1);
1166             }
1167
1168           /* TODO maybe move to lookup? */
1169           vnet_buffer (p0)->ip.fib_index =
1170             vec_elt (im->fib_index_by_sw_if_index,
1171                      vnet_buffer (p0)->sw_if_index[VLIB_RX]);
1172           vnet_buffer (p0)->ip.fib_index =
1173             (vnet_buffer (p0)->sw_if_index[VLIB_TX] ==
1174              (u32) ~ 0) ? vnet_buffer (p0)->ip.
1175             fib_index : vnet_buffer (p0)->sw_if_index[VLIB_TX];
1176
1177           vnet_buffer (p1)->ip.fib_index =
1178             vec_elt (im->fib_index_by_sw_if_index,
1179                      vnet_buffer (p1)->sw_if_index[VLIB_RX]);
1180           vnet_buffer (p1)->ip.fib_index =
1181             (vnet_buffer (p1)->sw_if_index[VLIB_TX] ==
1182              (u32) ~ 0) ? vnet_buffer (p1)->ip.
1183             fib_index : vnet_buffer (p1)->sw_if_index[VLIB_TX];
1184
1185
1186         skip_checks:
1187
1188           next0 = lm->local_next_by_ip_protocol[ip0->protocol];
1189           next1 = lm->local_next_by_ip_protocol[ip1->protocol];
1190
1191           next0 =
1192             error0 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next0;
1193           next1 =
1194             error1 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next1;
1195
1196           p0->error = error_node->errors[error0];
1197           p1->error = error_node->errors[error1];
1198
1199           if (head_of_feature_arc)
1200             {
1201               if (PREDICT_TRUE (error0 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1202                 vnet_feature_arc_start (arc_index,
1203                                         vnet_buffer (p0)->sw_if_index
1204                                         [VLIB_RX], &next0, p0);
1205               if (PREDICT_TRUE (error1 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1206                 vnet_feature_arc_start (arc_index,
1207                                         vnet_buffer (p1)->sw_if_index
1208                                         [VLIB_RX], &next1, p1);
1209             }
1210
1211           vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
1212                                            to_next, n_left_to_next,
1213                                            pi0, pi1, next0, next1);
1214         }
1215
1216       while (n_left_from > 0 && n_left_to_next > 0)
1217         {
1218           vlib_buffer_t *p0;
1219           ip6_header_t *ip0;
1220           udp_header_t *udp0;
1221           u32 pi0, ip_len0, udp_len0, flags0, next0;
1222           i32 len_diff0;
1223           u8 error0, type0, good_l4_csum0;
1224           u32 udp_offset0;
1225           u8 is_tcp_udp0;
1226
1227           pi0 = to_next[0] = from[0];
1228           from += 1;
1229           n_left_from -= 1;
1230           to_next += 1;
1231           n_left_to_next -= 1;
1232
1233           error0 = IP6_ERROR_UNKNOWN_PROTOCOL;
1234
1235           p0 = vlib_get_buffer (vm, pi0);
1236           ip0 = vlib_buffer_get_current (p0);
1237
1238           if (head_of_feature_arc == 0)
1239             goto skip_check;
1240
1241           vnet_buffer (p0)->l3_hdr_offset = p0->current_data;
1242
1243           type0 = lm->builtin_protocol_by_ip_protocol[ip0->protocol];
1244           flags0 = p0->flags;
1245           is_tcp_udp0 = ip6_next_proto_is_tcp_udp (p0, ip0, &udp_offset0);
1246           good_l4_csum0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT
1247                            || (flags0 & VNET_BUFFER_F_OFFLOAD_TCP_CKSUM
1248                                || flags0 & VNET_BUFFER_F_OFFLOAD_UDP_CKSUM))
1249             != 0;
1250
1251           len_diff0 = 0;
1252           if (PREDICT_TRUE (is_tcp_udp0))
1253             {
1254               udp0 = (udp_header_t *) ((u8 *) ip0 + udp_offset0);
1255               /* Don't verify UDP checksum for packets with explicit zero
1256                * checksum. */
1257               good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UDP
1258                 && udp0->checksum == 0;
1259               /* Verify UDP length. */
1260               if (is_tcp_udp0 == IP_PROTOCOL_UDP)
1261                 {
1262                   ip_len0 = clib_net_to_host_u16 (ip0->payload_length);
1263                   udp_len0 = clib_net_to_host_u16 (udp0->length);
1264                   len_diff0 = ip_len0 - udp_len0;
1265                 }
1266             }
1267
1268           good_l4_csum0 |= type0 == IP_BUILTIN_PROTOCOL_UNKNOWN;
1269           len_diff0 = type0 == IP_BUILTIN_PROTOCOL_UDP ? len_diff0 : 0;
1270
1271           if (PREDICT_FALSE (type0 != IP_BUILTIN_PROTOCOL_UNKNOWN
1272                              && !good_l4_csum0
1273                              && !(flags0 &
1274                                   VNET_BUFFER_F_L4_CHECKSUM_COMPUTED)))
1275             {
1276               flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, p0);
1277               good_l4_csum0 =
1278                 (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0;
1279             }
1280
1281           error0 = IP6_ERROR_UNKNOWN_PROTOCOL;
1282           error0 = len_diff0 < 0 ? IP6_ERROR_UDP_LENGTH : error0;
1283
1284           ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_UDP ==
1285                   IP6_ERROR_UDP_CHECKSUM);
1286           ASSERT (IP6_ERROR_UDP_CHECKSUM + IP_BUILTIN_PROTOCOL_ICMP ==
1287                   IP6_ERROR_ICMP_CHECKSUM);
1288           error0 = (!good_l4_csum0 ? IP6_ERROR_UDP_CHECKSUM + type0 : error0);
1289
1290           /* If this is a neighbor solicitation (ICMP), skip src RPF check */
1291           if (error0 == IP6_ERROR_UNKNOWN_PROTOCOL &&
1292               type0 != IP_BUILTIN_PROTOCOL_ICMP &&
1293               !ip6_address_is_link_local_unicast (&ip0->src_address))
1294             {
1295               error0 = (!ip6_urpf_loose_check (im, p0, ip0)
1296                         ? IP6_ERROR_SRC_LOOKUP_MISS : error0);
1297             }
1298
1299           vnet_buffer (p0)->ip.fib_index =
1300             vec_elt (im->fib_index_by_sw_if_index,
1301                      vnet_buffer (p0)->sw_if_index[VLIB_RX]);
1302           vnet_buffer (p0)->ip.fib_index =
1303             (vnet_buffer (p0)->sw_if_index[VLIB_TX] ==
1304              (u32) ~ 0) ? vnet_buffer (p0)->ip.
1305             fib_index : vnet_buffer (p0)->sw_if_index[VLIB_TX];
1306
1307         skip_check:
1308
1309           next0 = lm->local_next_by_ip_protocol[ip0->protocol];
1310           next0 =
1311             error0 != IP6_ERROR_UNKNOWN_PROTOCOL ? IP_LOCAL_NEXT_DROP : next0;
1312
1313           p0->error = error_node->errors[error0];
1314
1315           if (head_of_feature_arc)
1316             {
1317               if (PREDICT_TRUE (error0 == (u8) IP6_ERROR_UNKNOWN_PROTOCOL))
1318                 vnet_feature_arc_start (arc_index,
1319                                         vnet_buffer (p0)->sw_if_index
1320                                         [VLIB_RX], &next0, p0);
1321             }
1322
1323           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1324                                            to_next, n_left_to_next,
1325                                            pi0, next0);
1326         }
1327
1328       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1329     }
1330
1331   return frame->n_vectors;
1332 }
1333
1334 static uword
1335 ip6_local (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1336 {
1337   return ip6_local_inline (vm, node, frame, 1 /* head of feature arc */ );
1338 }
1339
1340 /* *INDENT-OFF* */
1341 VLIB_REGISTER_NODE (ip6_local_node, static) =
1342 {
1343   .function = ip6_local,
1344   .name = "ip6-local",
1345   .vector_size = sizeof (u32),
1346   .format_trace = format_ip6_forward_next_trace,
1347   .n_next_nodes = IP_LOCAL_N_NEXT,
1348   .next_nodes =
1349   {
1350     [IP_LOCAL_NEXT_DROP] = "ip6-drop",
1351     [IP_LOCAL_NEXT_PUNT] = "ip6-punt",
1352     [IP_LOCAL_NEXT_UDP_LOOKUP] = "ip6-udp-lookup",
1353     [IP_LOCAL_NEXT_ICMP] = "ip6-icmp-input",
1354     [IP_LOCAL_NEXT_REASSEMBLY] = "ip6-reassembly",
1355   },
1356 };
1357 /* *INDENT-ON* */
1358
1359 VLIB_NODE_FUNCTION_MULTIARCH (ip6_local_node, ip6_local);
1360
1361
1362 static uword
1363 ip6_local_end_of_arc (vlib_main_t * vm,
1364                       vlib_node_runtime_t * node, vlib_frame_t * frame)
1365 {
1366   return ip6_local_inline (vm, node, frame, 0 /* head of feature arc */ );
1367 }
1368
1369 /* *INDENT-OFF* */
1370 VLIB_REGISTER_NODE (ip6_local_end_of_arc_node,static) = {
1371   .function = ip6_local_end_of_arc,
1372   .name = "ip6-local-end-of-arc",
1373   .vector_size = sizeof (u32),
1374
1375   .format_trace = format_ip6_forward_next_trace,
1376   .sibling_of = "ip6-local",
1377 };
1378
1379 VLIB_NODE_FUNCTION_MULTIARCH (ip6_local_end_of_arc_node, ip6_local_end_of_arc)
1380
1381 VNET_FEATURE_INIT (ip6_local_end_of_arc, static) = {
1382   .arc_name = "ip6-local",
1383   .node_name = "ip6-local-end-of-arc",
1384   .runs_before = 0, /* not before any other features */
1385 };
1386 /* *INDENT-ON* */
1387
1388 void
1389 ip6_register_protocol (u32 protocol, u32 node_index)
1390 {
1391   vlib_main_t *vm = vlib_get_main ();
1392   ip6_main_t *im = &ip6_main;
1393   ip_lookup_main_t *lm = &im->lookup_main;
1394
1395   ASSERT (protocol < ARRAY_LEN (lm->local_next_by_ip_protocol));
1396   lm->local_next_by_ip_protocol[protocol] =
1397     vlib_node_add_next (vm, ip6_local_node.index, node_index);
1398 }
1399
1400 typedef enum
1401 {
1402   IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
1403   IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX,
1404   IP6_DISCOVER_NEIGHBOR_N_NEXT,
1405 } ip6_discover_neighbor_next_t;
1406
1407 typedef enum
1408 {
1409   IP6_DISCOVER_NEIGHBOR_ERROR_DROP,
1410   IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT,
1411   IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS,
1412 } ip6_discover_neighbor_error_t;
1413
1414 static uword
1415 ip6_discover_neighbor_inline (vlib_main_t * vm,
1416                               vlib_node_runtime_t * node,
1417                               vlib_frame_t * frame, int is_glean)
1418 {
1419   vnet_main_t *vnm = vnet_get_main ();
1420   ip6_main_t *im = &ip6_main;
1421   ip_lookup_main_t *lm = &im->lookup_main;
1422   u32 *from, *to_next_drop;
1423   uword n_left_from, n_left_to_next_drop;
1424   static f64 time_last_seed_change = -1e100;
1425   static u32 hash_seeds[3];
1426   static uword hash_bitmap[256 / BITS (uword)];
1427   f64 time_now;
1428   int bogus_length;
1429
1430   if (node->flags & VLIB_NODE_FLAG_TRACE)
1431     ip6_forward_next_trace (vm, node, frame, VLIB_TX);
1432
1433   time_now = vlib_time_now (vm);
1434   if (time_now - time_last_seed_change > 1e-3)
1435     {
1436       uword i;
1437       u32 *r = clib_random_buffer_get_data (&vm->random_buffer,
1438                                             sizeof (hash_seeds));
1439       for (i = 0; i < ARRAY_LEN (hash_seeds); i++)
1440         hash_seeds[i] = r[i];
1441
1442       /* Mark all hash keys as been not-seen before. */
1443       for (i = 0; i < ARRAY_LEN (hash_bitmap); i++)
1444         hash_bitmap[i] = 0;
1445
1446       time_last_seed_change = time_now;
1447     }
1448
1449   from = vlib_frame_vector_args (frame);
1450   n_left_from = frame->n_vectors;
1451
1452   while (n_left_from > 0)
1453     {
1454       vlib_get_next_frame (vm, node, IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
1455                            to_next_drop, n_left_to_next_drop);
1456
1457       while (n_left_from > 0 && n_left_to_next_drop > 0)
1458         {
1459           vlib_buffer_t *p0;
1460           ip6_header_t *ip0;
1461           u32 pi0, adj_index0, a0, b0, c0, m0, sw_if_index0, drop0;
1462           uword bm0;
1463           ip_adjacency_t *adj0;
1464           vnet_hw_interface_t *hw_if0;
1465           u32 next0;
1466
1467           pi0 = from[0];
1468
1469           p0 = vlib_get_buffer (vm, pi0);
1470
1471           adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1472
1473           ip0 = vlib_buffer_get_current (p0);
1474
1475           adj0 = adj_get (adj_index0);
1476
1477           if (!is_glean)
1478             {
1479               ip0->dst_address.as_u64[0] =
1480                 adj0->sub_type.nbr.next_hop.ip6.as_u64[0];
1481               ip0->dst_address.as_u64[1] =
1482                 adj0->sub_type.nbr.next_hop.ip6.as_u64[1];
1483             }
1484
1485           a0 = hash_seeds[0];
1486           b0 = hash_seeds[1];
1487           c0 = hash_seeds[2];
1488
1489           sw_if_index0 = adj0->rewrite_header.sw_if_index;
1490           vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1491
1492           a0 ^= sw_if_index0;
1493           b0 ^= ip0->dst_address.as_u32[0];
1494           c0 ^= ip0->dst_address.as_u32[1];
1495
1496           hash_v3_mix32 (a0, b0, c0);
1497
1498           b0 ^= ip0->dst_address.as_u32[2];
1499           c0 ^= ip0->dst_address.as_u32[3];
1500
1501           hash_v3_finalize32 (a0, b0, c0);
1502
1503           c0 &= BITS (hash_bitmap) - 1;
1504           c0 = c0 / BITS (uword);
1505           m0 = (uword) 1 << (c0 % BITS (uword));
1506
1507           bm0 = hash_bitmap[c0];
1508           drop0 = (bm0 & m0) != 0;
1509
1510           /* Mark it as seen. */
1511           hash_bitmap[c0] = bm0 | m0;
1512
1513           from += 1;
1514           n_left_from -= 1;
1515           to_next_drop[0] = pi0;
1516           to_next_drop += 1;
1517           n_left_to_next_drop -= 1;
1518
1519           hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1520
1521           /* If the interface is link-down, drop the pkt */
1522           if (!(hw_if0->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
1523             drop0 = 1;
1524
1525           p0->error =
1526             node->errors[drop0 ? IP6_DISCOVER_NEIGHBOR_ERROR_DROP
1527                          : IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT];
1528           if (drop0)
1529             continue;
1530
1531           /*
1532            * the adj has been updated to a rewrite but the node the DPO that got
1533            * us here hasn't - yet. no big deal. we'll drop while we wait.
1534            */
1535           if (IP_LOOKUP_NEXT_REWRITE == adj0->lookup_next_index)
1536             continue;
1537
1538           {
1539             u32 bi0 = 0;
1540             icmp6_neighbor_solicitation_header_t *h0;
1541             vlib_buffer_t *b0;
1542
1543             h0 = vlib_packet_template_get_packet
1544               (vm, &im->discover_neighbor_packet_template, &bi0);
1545
1546             /*
1547              * Build ethernet header.
1548              * Choose source address based on destination lookup
1549              * adjacency.
1550              */
1551             if (ip6_src_address_for_packet (lm,
1552                                             sw_if_index0,
1553                                             &h0->ip.src_address))
1554               {
1555                 /* There is no address on the interface */
1556                 p0->error =
1557                   node->errors[IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS];
1558                 vlib_buffer_free (vm, &bi0, 1);
1559                 continue;
1560               }
1561
1562             /*
1563              * Destination address is a solicited node multicast address.
1564              * We need to fill in
1565              * the low 24 bits with low 24 bits of target's address.
1566              */
1567             h0->ip.dst_address.as_u8[13] = ip0->dst_address.as_u8[13];
1568             h0->ip.dst_address.as_u8[14] = ip0->dst_address.as_u8[14];
1569             h0->ip.dst_address.as_u8[15] = ip0->dst_address.as_u8[15];
1570
1571             h0->neighbor.target_address = ip0->dst_address;
1572
1573             clib_memcpy (h0->link_layer_option.ethernet_address,
1574                          hw_if0->hw_address, vec_len (hw_if0->hw_address));
1575
1576             /* $$$$ appears we need this; why is the checksum non-zero? */
1577             h0->neighbor.icmp.checksum = 0;
1578             h0->neighbor.icmp.checksum =
1579               ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h0->ip,
1580                                                  &bogus_length);
1581
1582             ASSERT (bogus_length == 0);
1583
1584             vlib_buffer_copy_trace_flag (vm, p0, bi0);
1585             b0 = vlib_get_buffer (vm, bi0);
1586             vnet_buffer (b0)->sw_if_index[VLIB_TX]
1587               = vnet_buffer (p0)->sw_if_index[VLIB_TX];
1588
1589             /* Add rewrite/encap string. */
1590             vnet_rewrite_one_header (adj0[0], h0, sizeof (ethernet_header_t));
1591             vlib_buffer_advance (b0, -adj0->rewrite_header.data_bytes);
1592
1593             next0 = IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX;
1594
1595             vlib_set_next_frame_buffer (vm, node, next0, bi0);
1596           }
1597         }
1598
1599       vlib_put_next_frame (vm, node, IP6_DISCOVER_NEIGHBOR_NEXT_DROP,
1600                            n_left_to_next_drop);
1601     }
1602
1603   return frame->n_vectors;
1604 }
1605
1606 static uword
1607 ip6_discover_neighbor (vlib_main_t * vm,
1608                        vlib_node_runtime_t * node, vlib_frame_t * frame)
1609 {
1610   return (ip6_discover_neighbor_inline (vm, node, frame, 0));
1611 }
1612
1613 static uword
1614 ip6_glean (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
1615 {
1616   return (ip6_discover_neighbor_inline (vm, node, frame, 1));
1617 }
1618
1619 static char *ip6_discover_neighbor_error_strings[] = {
1620   [IP6_DISCOVER_NEIGHBOR_ERROR_DROP] = "address overflow drops",
1621   [IP6_DISCOVER_NEIGHBOR_ERROR_REQUEST_SENT] = "neighbor solicitations sent",
1622   [IP6_DISCOVER_NEIGHBOR_ERROR_NO_SOURCE_ADDRESS]
1623     = "no source address for ND solicitation",
1624 };
1625
1626 /* *INDENT-OFF* */
1627 VLIB_REGISTER_NODE (ip6_discover_neighbor_node) =
1628 {
1629   .function = ip6_discover_neighbor,
1630   .name = "ip6-discover-neighbor",
1631   .vector_size = sizeof (u32),
1632   .format_trace = format_ip6_forward_next_trace,
1633   .n_errors = ARRAY_LEN (ip6_discover_neighbor_error_strings),
1634   .error_strings = ip6_discover_neighbor_error_strings,
1635   .n_next_nodes = IP6_DISCOVER_NEIGHBOR_N_NEXT,
1636   .next_nodes =
1637   {
1638     [IP6_DISCOVER_NEIGHBOR_NEXT_DROP] = "ip6-drop",
1639     [IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX] = "interface-output",
1640   },
1641 };
1642 /* *INDENT-ON* */
1643
1644 /* *INDENT-OFF* */
1645 VLIB_REGISTER_NODE (ip6_glean_node) =
1646 {
1647   .function = ip6_glean,
1648   .name = "ip6-glean",
1649   .vector_size = sizeof (u32),
1650   .format_trace = format_ip6_forward_next_trace,
1651   .n_errors = ARRAY_LEN (ip6_discover_neighbor_error_strings),
1652   .error_strings = ip6_discover_neighbor_error_strings,
1653   .n_next_nodes = IP6_DISCOVER_NEIGHBOR_N_NEXT,
1654   .next_nodes =
1655   {
1656     [IP6_DISCOVER_NEIGHBOR_NEXT_DROP] = "ip6-drop",
1657     [IP6_DISCOVER_NEIGHBOR_NEXT_REPLY_TX] = "interface-output",
1658   },
1659 };
1660 /* *INDENT-ON* */
1661
1662 clib_error_t *
1663 ip6_probe_neighbor (vlib_main_t * vm, ip6_address_t * dst, u32 sw_if_index)
1664 {
1665   vnet_main_t *vnm = vnet_get_main ();
1666   ip6_main_t *im = &ip6_main;
1667   icmp6_neighbor_solicitation_header_t *h;
1668   ip6_address_t *src;
1669   ip_interface_address_t *ia;
1670   ip_adjacency_t *adj;
1671   vnet_hw_interface_t *hi;
1672   vnet_sw_interface_t *si;
1673   vlib_buffer_t *b;
1674   adj_index_t ai;
1675   u32 bi = 0;
1676   int bogus_length;
1677
1678   si = vnet_get_sw_interface (vnm, sw_if_index);
1679
1680   if (!(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
1681     {
1682       return clib_error_return (0, "%U: interface %U down",
1683                                 format_ip6_address, dst,
1684                                 format_vnet_sw_if_index_name, vnm,
1685                                 sw_if_index);
1686     }
1687
1688   src =
1689     ip6_interface_address_matching_destination (im, dst, sw_if_index, &ia);
1690   if (!src)
1691     {
1692       vnm->api_errno = VNET_API_ERROR_NO_MATCHING_INTERFACE;
1693       return clib_error_return
1694         (0, "no matching interface address for destination %U (interface %U)",
1695          format_ip6_address, dst,
1696          format_vnet_sw_if_index_name, vnm, sw_if_index);
1697     }
1698
1699   h =
1700     vlib_packet_template_get_packet (vm,
1701                                      &im->discover_neighbor_packet_template,
1702                                      &bi);
1703
1704   hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1705
1706   /* Destination address is a solicited node multicast address.  We need to fill in
1707      the low 24 bits with low 24 bits of target's address. */
1708   h->ip.dst_address.as_u8[13] = dst->as_u8[13];
1709   h->ip.dst_address.as_u8[14] = dst->as_u8[14];
1710   h->ip.dst_address.as_u8[15] = dst->as_u8[15];
1711
1712   h->ip.src_address = src[0];
1713   h->neighbor.target_address = dst[0];
1714
1715   if (PREDICT_FALSE (!hi->hw_address))
1716     {
1717       return clib_error_return (0, "%U: interface %U do not support ip probe",
1718                                 format_ip6_address, dst,
1719                                 format_vnet_sw_if_index_name, vnm,
1720                                 sw_if_index);
1721     }
1722
1723   clib_memcpy (h->link_layer_option.ethernet_address, hi->hw_address,
1724                vec_len (hi->hw_address));
1725
1726   h->neighbor.icmp.checksum =
1727     ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h->ip, &bogus_length);
1728   ASSERT (bogus_length == 0);
1729
1730   b = vlib_get_buffer (vm, bi);
1731   vnet_buffer (b)->sw_if_index[VLIB_RX] =
1732     vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
1733
1734   /* Add encapsulation string for software interface (e.g. ethernet header). */
1735   ip46_address_t nh = {
1736     .ip6 = *dst,
1737   };
1738
1739   ai = adj_nbr_add_or_lock (FIB_PROTOCOL_IP6,
1740                             VNET_LINK_IP6, &nh, sw_if_index);
1741   adj = adj_get (ai);
1742
1743   /* Peer has been previously resolved, retrieve glean adj instead */
1744   if (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE)
1745     {
1746       adj_unlock (ai);
1747       ai = adj_glean_add_or_lock (FIB_PROTOCOL_IP6, sw_if_index, &nh);
1748       adj = adj_get (ai);
1749     }
1750
1751   vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
1752   vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
1753
1754   {
1755     vlib_frame_t *f = vlib_get_frame_to_node (vm, hi->output_node_index);
1756     u32 *to_next = vlib_frame_vector_args (f);
1757     to_next[0] = bi;
1758     f->n_vectors = 1;
1759     vlib_put_frame_to_node (vm, hi->output_node_index, f);
1760   }
1761
1762   adj_unlock (ai);
1763   return /* no error */ 0;
1764 }
1765
1766 typedef enum
1767 {
1768   IP6_REWRITE_NEXT_DROP,
1769   IP6_REWRITE_NEXT_ICMP_ERROR,
1770 } ip6_rewrite_next_t;
1771
1772 always_inline uword
1773 ip6_rewrite_inline (vlib_main_t * vm,
1774                     vlib_node_runtime_t * node,
1775                     vlib_frame_t * frame,
1776                     int do_counters, int is_midchain, int is_mcast)
1777 {
1778   ip_lookup_main_t *lm = &ip6_main.lookup_main;
1779   u32 *from = vlib_frame_vector_args (frame);
1780   u32 n_left_from, n_left_to_next, *to_next, next_index;
1781   vlib_node_runtime_t *error_node =
1782     vlib_node_get_runtime (vm, ip6_input_node.index);
1783
1784   n_left_from = frame->n_vectors;
1785   next_index = node->cached_next_index;
1786   u32 thread_index = vlib_get_thread_index ();
1787
1788   while (n_left_from > 0)
1789     {
1790       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1791
1792       while (n_left_from >= 4 && n_left_to_next >= 2)
1793         {
1794           ip_adjacency_t *adj0, *adj1;
1795           vlib_buffer_t *p0, *p1;
1796           ip6_header_t *ip0, *ip1;
1797           u32 pi0, rw_len0, next0, error0, adj_index0;
1798           u32 pi1, rw_len1, next1, error1, adj_index1;
1799           u32 tx_sw_if_index0, tx_sw_if_index1;
1800
1801           /* Prefetch next iteration. */
1802           {
1803             vlib_buffer_t *p2, *p3;
1804
1805             p2 = vlib_get_buffer (vm, from[2]);
1806             p3 = vlib_get_buffer (vm, from[3]);
1807
1808             vlib_prefetch_buffer_header (p2, LOAD);
1809             vlib_prefetch_buffer_header (p3, LOAD);
1810
1811             CLIB_PREFETCH (p2->pre_data, 32, STORE);
1812             CLIB_PREFETCH (p3->pre_data, 32, STORE);
1813
1814             CLIB_PREFETCH (p2->data, sizeof (ip0[0]), STORE);
1815             CLIB_PREFETCH (p3->data, sizeof (ip0[0]), STORE);
1816           }
1817
1818           pi0 = to_next[0] = from[0];
1819           pi1 = to_next[1] = from[1];
1820
1821           from += 2;
1822           n_left_from -= 2;
1823           to_next += 2;
1824           n_left_to_next -= 2;
1825
1826           p0 = vlib_get_buffer (vm, pi0);
1827           p1 = vlib_get_buffer (vm, pi1);
1828
1829           adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1830           adj_index1 = vnet_buffer (p1)->ip.adj_index[VLIB_TX];
1831
1832           ip0 = vlib_buffer_get_current (p0);
1833           ip1 = vlib_buffer_get_current (p1);
1834
1835           error0 = error1 = IP6_ERROR_NONE;
1836           next0 = next1 = IP6_REWRITE_NEXT_DROP;
1837
1838           if (PREDICT_TRUE (!(p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED)))
1839             {
1840               i32 hop_limit0 = ip0->hop_limit;
1841
1842               /* Input node should have reject packets with hop limit 0. */
1843               ASSERT (ip0->hop_limit > 0);
1844
1845               hop_limit0 -= 1;
1846
1847               ip0->hop_limit = hop_limit0;
1848
1849               /*
1850                * If the hop count drops below 1 when forwarding, generate
1851                * an ICMP response.
1852                */
1853               if (PREDICT_FALSE (hop_limit0 <= 0))
1854                 {
1855                   error0 = IP6_ERROR_TIME_EXPIRED;
1856                   next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
1857                   vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1858                   icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
1859                                                ICMP6_time_exceeded_ttl_exceeded_in_transit,
1860                                                0);
1861                 }
1862             }
1863           else
1864             {
1865               p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
1866             }
1867           if (PREDICT_TRUE (!(p1->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED)))
1868             {
1869               i32 hop_limit1 = ip1->hop_limit;
1870
1871               /* Input node should have reject packets with hop limit 0. */
1872               ASSERT (ip1->hop_limit > 0);
1873
1874               hop_limit1 -= 1;
1875
1876               ip1->hop_limit = hop_limit1;
1877
1878               /*
1879                * If the hop count drops below 1 when forwarding, generate
1880                * an ICMP response.
1881                */
1882               if (PREDICT_FALSE (hop_limit1 <= 0))
1883                 {
1884                   error1 = IP6_ERROR_TIME_EXPIRED;
1885                   next1 = IP6_REWRITE_NEXT_ICMP_ERROR;
1886                   vnet_buffer (p1)->sw_if_index[VLIB_TX] = (u32) ~ 0;
1887                   icmp6_error_set_vnet_buffer (p1, ICMP6_time_exceeded,
1888                                                ICMP6_time_exceeded_ttl_exceeded_in_transit,
1889                                                0);
1890                 }
1891             }
1892           else
1893             {
1894               p1->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
1895             }
1896           adj0 = adj_get (adj_index0);
1897           adj1 = adj_get (adj_index1);
1898
1899           rw_len0 = adj0[0].rewrite_header.data_bytes;
1900           rw_len1 = adj1[0].rewrite_header.data_bytes;
1901           vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
1902           vnet_buffer (p1)->ip.save_rewrite_length = rw_len1;
1903
1904           if (do_counters)
1905             {
1906               vlib_increment_combined_counter
1907                 (&adjacency_counters,
1908                  thread_index, adj_index0, 1,
1909                  vlib_buffer_length_in_chain (vm, p0) + rw_len0);
1910               vlib_increment_combined_counter
1911                 (&adjacency_counters,
1912                  thread_index, adj_index1, 1,
1913                  vlib_buffer_length_in_chain (vm, p1) + rw_len1);
1914             }
1915
1916           /* Check MTU of outgoing interface. */
1917           error0 =
1918             (vlib_buffer_length_in_chain (vm, p0) >
1919              adj0[0].
1920              rewrite_header.max_l3_packet_bytes ? IP6_ERROR_MTU_EXCEEDED :
1921              error0);
1922           error1 =
1923             (vlib_buffer_length_in_chain (vm, p1) >
1924              adj1[0].
1925              rewrite_header.max_l3_packet_bytes ? IP6_ERROR_MTU_EXCEEDED :
1926              error1);
1927
1928           /* Don't adjust the buffer for hop count issue; icmp-error node
1929            * wants to see the IP headerr */
1930           if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
1931             {
1932               p0->current_data -= rw_len0;
1933               p0->current_length += rw_len0;
1934
1935               tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
1936               vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
1937               next0 = adj0[0].rewrite_header.next_index;
1938
1939               if (PREDICT_FALSE
1940                   (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1941                 vnet_feature_arc_start (lm->output_feature_arc_index,
1942                                         tx_sw_if_index0, &next0, p0);
1943             }
1944           if (PREDICT_TRUE (error1 == IP6_ERROR_NONE))
1945             {
1946               p1->current_data -= rw_len1;
1947               p1->current_length += rw_len1;
1948
1949               tx_sw_if_index1 = adj1[0].rewrite_header.sw_if_index;
1950               vnet_buffer (p1)->sw_if_index[VLIB_TX] = tx_sw_if_index1;
1951               next1 = adj1[0].rewrite_header.next_index;
1952
1953               if (PREDICT_FALSE
1954                   (adj1[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
1955                 vnet_feature_arc_start (lm->output_feature_arc_index,
1956                                         tx_sw_if_index1, &next1, p1);
1957             }
1958
1959           /* Guess we are only writing on simple Ethernet header. */
1960           vnet_rewrite_two_headers (adj0[0], adj1[0],
1961                                     ip0, ip1, sizeof (ethernet_header_t));
1962
1963           if (is_midchain)
1964             {
1965               adj0->sub_type.midchain.fixup_func
1966                 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
1967               adj1->sub_type.midchain.fixup_func
1968                 (vm, adj1, p1, adj1->sub_type.midchain.fixup_data);
1969             }
1970           if (is_mcast)
1971             {
1972               /*
1973                * copy bytes from the IP address into the MAC rewrite
1974                */
1975               vnet_fixup_one_header (adj0[0], &ip0->dst_address, ip0);
1976               vnet_fixup_one_header (adj1[0], &ip1->dst_address, ip1);
1977             }
1978
1979           vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
1980                                            to_next, n_left_to_next,
1981                                            pi0, pi1, next0, next1);
1982         }
1983
1984       while (n_left_from > 0 && n_left_to_next > 0)
1985         {
1986           ip_adjacency_t *adj0;
1987           vlib_buffer_t *p0;
1988           ip6_header_t *ip0;
1989           u32 pi0, rw_len0;
1990           u32 adj_index0, next0, error0;
1991           u32 tx_sw_if_index0;
1992
1993           pi0 = to_next[0] = from[0];
1994
1995           p0 = vlib_get_buffer (vm, pi0);
1996
1997           adj_index0 = vnet_buffer (p0)->ip.adj_index[VLIB_TX];
1998
1999           adj0 = adj_get (adj_index0);
2000
2001           ip0 = vlib_buffer_get_current (p0);
2002
2003           error0 = IP6_ERROR_NONE;
2004           next0 = IP6_REWRITE_NEXT_DROP;
2005
2006           /* Check hop limit */
2007           if (PREDICT_TRUE (!(p0->flags & VNET_BUFFER_F_LOCALLY_ORIGINATED)))
2008             {
2009               i32 hop_limit0 = ip0->hop_limit;
2010
2011               ASSERT (ip0->hop_limit > 0);
2012
2013               hop_limit0 -= 1;
2014
2015               ip0->hop_limit = hop_limit0;
2016
2017               if (PREDICT_FALSE (hop_limit0 <= 0))
2018                 {
2019                   /*
2020                    * If the hop count drops below 1 when forwarding, generate
2021                    * an ICMP response.
2022                    */
2023                   error0 = IP6_ERROR_TIME_EXPIRED;
2024                   next0 = IP6_REWRITE_NEXT_ICMP_ERROR;
2025                   vnet_buffer (p0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
2026                   icmp6_error_set_vnet_buffer (p0, ICMP6_time_exceeded,
2027                                                ICMP6_time_exceeded_ttl_exceeded_in_transit,
2028                                                0);
2029                 }
2030             }
2031           else
2032             {
2033               p0->flags &= ~VNET_BUFFER_F_LOCALLY_ORIGINATED;
2034             }
2035
2036           /* Guess we are only writing on simple Ethernet header. */
2037           vnet_rewrite_one_header (adj0[0], ip0, sizeof (ethernet_header_t));
2038
2039           /* Update packet buffer attributes/set output interface. */
2040           rw_len0 = adj0[0].rewrite_header.data_bytes;
2041           vnet_buffer (p0)->ip.save_rewrite_length = rw_len0;
2042
2043           if (do_counters)
2044             {
2045               vlib_increment_combined_counter
2046                 (&adjacency_counters,
2047                  thread_index, adj_index0, 1,
2048                  vlib_buffer_length_in_chain (vm, p0) + rw_len0);
2049             }
2050
2051           /* Check MTU of outgoing interface. */
2052           error0 =
2053             (vlib_buffer_length_in_chain (vm, p0) >
2054              adj0[0].
2055              rewrite_header.max_l3_packet_bytes ? IP6_ERROR_MTU_EXCEEDED :
2056              error0);
2057
2058           /* Don't adjust the buffer for hop count issue; icmp-error node
2059            * wants to see the IP headerr */
2060           if (PREDICT_TRUE (error0 == IP6_ERROR_NONE))
2061             {
2062               p0->current_data -= rw_len0;
2063               p0->current_length += rw_len0;
2064
2065               tx_sw_if_index0 = adj0[0].rewrite_header.sw_if_index;
2066
2067               vnet_buffer (p0)->sw_if_index[VLIB_TX] = tx_sw_if_index0;
2068               next0 = adj0[0].rewrite_header.next_index;
2069
2070               if (PREDICT_FALSE
2071                   (adj0[0].rewrite_header.flags & VNET_REWRITE_HAS_FEATURES))
2072                 vnet_feature_arc_start (lm->output_feature_arc_index,
2073                                         tx_sw_if_index0, &next0, p0);
2074             }
2075
2076           if (is_midchain)
2077             {
2078               adj0->sub_type.midchain.fixup_func
2079                 (vm, adj0, p0, adj0->sub_type.midchain.fixup_data);
2080             }
2081           if (is_mcast)
2082             {
2083               vnet_fixup_one_header (adj0[0], &ip0->dst_address, ip0);
2084             }
2085
2086           p0->error = error_node->errors[error0];
2087
2088           from += 1;
2089           n_left_from -= 1;
2090           to_next += 1;
2091           n_left_to_next -= 1;
2092
2093           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2094                                            to_next, n_left_to_next,
2095                                            pi0, next0);
2096         }
2097
2098       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2099     }
2100
2101   /* Need to do trace after rewrites to pick up new packet data. */
2102   if (node->flags & VLIB_NODE_FLAG_TRACE)
2103     ip6_forward_next_trace (vm, node, frame, VLIB_TX);
2104
2105   return frame->n_vectors;
2106 }
2107
2108 static uword
2109 ip6_rewrite (vlib_main_t * vm,
2110              vlib_node_runtime_t * node, vlib_frame_t * frame)
2111 {
2112   if (adj_are_counters_enabled ())
2113     return ip6_rewrite_inline (vm, node, frame, 1, 0, 0);
2114   else
2115     return ip6_rewrite_inline (vm, node, frame, 0, 0, 0);
2116 }
2117
2118 static uword
2119 ip6_rewrite_mcast (vlib_main_t * vm,
2120                    vlib_node_runtime_t * node, vlib_frame_t * frame)
2121 {
2122   if (adj_are_counters_enabled ())
2123     return ip6_rewrite_inline (vm, node, frame, 1, 0, 1);
2124   else
2125     return ip6_rewrite_inline (vm, node, frame, 0, 0, 1);
2126 }
2127
2128 static uword
2129 ip6_midchain (vlib_main_t * vm,
2130               vlib_node_runtime_t * node, vlib_frame_t * frame)
2131 {
2132   if (adj_are_counters_enabled ())
2133     return ip6_rewrite_inline (vm, node, frame, 1, 1, 0);
2134   else
2135     return ip6_rewrite_inline (vm, node, frame, 0, 1, 0);
2136 }
2137
2138 static uword
2139 ip6_mcast_midchain (vlib_main_t * vm,
2140                     vlib_node_runtime_t * node, vlib_frame_t * frame)
2141 {
2142   if (adj_are_counters_enabled ())
2143     return ip6_rewrite_inline (vm, node, frame, 1, 1, 1);
2144   else
2145     return ip6_rewrite_inline (vm, node, frame, 0, 1, 1);
2146 }
2147
2148 /* *INDENT-OFF* */
2149 VLIB_REGISTER_NODE (ip6_midchain_node) =
2150 {
2151   .function = ip6_midchain,
2152   .name = "ip6-midchain",
2153   .vector_size = sizeof (u32),
2154   .format_trace = format_ip6_forward_next_trace,
2155   .sibling_of = "ip6-rewrite",
2156   };
2157 /* *INDENT-ON* */
2158
2159 VLIB_NODE_FUNCTION_MULTIARCH (ip6_midchain_node, ip6_midchain);
2160
2161 /* *INDENT-OFF* */
2162 VLIB_REGISTER_NODE (ip6_rewrite_node) =
2163 {
2164   .function = ip6_rewrite,
2165   .name = "ip6-rewrite",
2166   .vector_size = sizeof (u32),
2167   .format_trace = format_ip6_rewrite_trace,
2168   .n_next_nodes = 2,
2169   .next_nodes =
2170   {
2171     [IP6_REWRITE_NEXT_DROP] = "ip6-drop",
2172     [IP6_REWRITE_NEXT_ICMP_ERROR] = "ip6-icmp-error",
2173   },
2174 };
2175 /* *INDENT-ON* */
2176
2177 VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_node, ip6_rewrite);
2178
2179 /* *INDENT-OFF* */
2180 VLIB_REGISTER_NODE (ip6_rewrite_mcast_node) =
2181 {
2182   .function = ip6_rewrite_mcast,
2183   .name = "ip6-rewrite-mcast",
2184   .vector_size = sizeof (u32),
2185   .format_trace = format_ip6_rewrite_trace,
2186   .sibling_of = "ip6-rewrite",
2187 };
2188 /* *INDENT-ON* */
2189
2190 VLIB_NODE_FUNCTION_MULTIARCH (ip6_rewrite_mcast_node, ip6_rewrite_mcast);
2191
2192 /* *INDENT-OFF* */
2193 VLIB_REGISTER_NODE (ip6_mcast_midchain_node, static) =
2194 {
2195   .function = ip6_mcast_midchain,
2196   .name = "ip6-mcast-midchain",
2197   .vector_size = sizeof (u32),
2198   .format_trace = format_ip6_rewrite_trace,
2199   .sibling_of = "ip6-rewrite",
2200 };
2201 /* *INDENT-ON* */
2202
2203 VLIB_NODE_FUNCTION_MULTIARCH (ip6_mcast_midchain_node, ip6_mcast_midchain);
2204
2205 /*
2206  * Hop-by-Hop handling
2207  */
2208 ip6_hop_by_hop_main_t ip6_hop_by_hop_main;
2209
2210 #define foreach_ip6_hop_by_hop_error \
2211 _(PROCESSED, "pkts with ip6 hop-by-hop options") \
2212 _(FORMAT, "incorrectly formatted hop-by-hop options") \
2213 _(UNKNOWN_OPTION, "unknown ip6 hop-by-hop options")
2214
2215 /* *INDENT-OFF* */
2216 typedef enum
2217 {
2218 #define _(sym,str) IP6_HOP_BY_HOP_ERROR_##sym,
2219   foreach_ip6_hop_by_hop_error
2220 #undef _
2221   IP6_HOP_BY_HOP_N_ERROR,
2222 } ip6_hop_by_hop_error_t;
2223 /* *INDENT-ON* */
2224
2225 /*
2226  * Primary h-b-h handler trace support
2227  * We work pretty hard on the problem for obvious reasons
2228  */
2229 typedef struct
2230 {
2231   u32 next_index;
2232   u32 trace_len;
2233   u8 option_data[256];
2234 } ip6_hop_by_hop_trace_t;
2235
2236 vlib_node_registration_t ip6_hop_by_hop_node;
2237
2238 static char *ip6_hop_by_hop_error_strings[] = {
2239 #define _(sym,string) string,
2240   foreach_ip6_hop_by_hop_error
2241 #undef _
2242 };
2243
2244 u8 *
2245 format_ip6_hop_by_hop_ext_hdr (u8 * s, va_list * args)
2246 {
2247   ip6_hop_by_hop_header_t *hbh0 = va_arg (*args, ip6_hop_by_hop_header_t *);
2248   int total_len = va_arg (*args, int);
2249   ip6_hop_by_hop_option_t *opt0, *limit0;
2250   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2251   u8 type0;
2252
2253   s = format (s, "IP6_HOP_BY_HOP: next protocol %d len %d total %d",
2254               hbh0->protocol, (hbh0->length + 1) << 3, total_len);
2255
2256   opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2257   limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 + total_len);
2258
2259   while (opt0 < limit0)
2260     {
2261       type0 = opt0->type;
2262       switch (type0)
2263         {
2264         case 0:         /* Pad, just stop */
2265           opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0 + 1);
2266           break;
2267
2268         default:
2269           if (hm->trace[type0])
2270             {
2271               s = (*hm->trace[type0]) (s, opt0);
2272             }
2273           else
2274             {
2275               s =
2276                 format (s, "\n    unrecognized option %d length %d", type0,
2277                         opt0->length);
2278             }
2279           opt0 =
2280             (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2281                                          sizeof (ip6_hop_by_hop_option_t));
2282           break;
2283         }
2284     }
2285   return s;
2286 }
2287
2288 static u8 *
2289 format_ip6_hop_by_hop_trace (u8 * s, va_list * args)
2290 {
2291   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2292   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2293   ip6_hop_by_hop_trace_t *t = va_arg (*args, ip6_hop_by_hop_trace_t *);
2294   ip6_hop_by_hop_header_t *hbh0;
2295   ip6_hop_by_hop_option_t *opt0, *limit0;
2296   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2297
2298   u8 type0;
2299
2300   hbh0 = (ip6_hop_by_hop_header_t *) t->option_data;
2301
2302   s = format (s, "IP6_HOP_BY_HOP: next index %d len %d traced %d",
2303               t->next_index, (hbh0->length + 1) << 3, t->trace_len);
2304
2305   opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2306   limit0 = (ip6_hop_by_hop_option_t *) ((u8 *) hbh0) + t->trace_len;
2307
2308   while (opt0 < limit0)
2309     {
2310       type0 = opt0->type;
2311       switch (type0)
2312         {
2313         case 0:         /* Pad, just stop */
2314           opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2315           break;
2316
2317         default:
2318           if (hm->trace[type0])
2319             {
2320               s = (*hm->trace[type0]) (s, opt0);
2321             }
2322           else
2323             {
2324               s =
2325                 format (s, "\n    unrecognized option %d length %d", type0,
2326                         opt0->length);
2327             }
2328           opt0 =
2329             (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2330                                          sizeof (ip6_hop_by_hop_option_t));
2331           break;
2332         }
2333     }
2334   return s;
2335 }
2336
2337 always_inline u8
2338 ip6_scan_hbh_options (vlib_buffer_t * b0,
2339                       ip6_header_t * ip0,
2340                       ip6_hop_by_hop_header_t * hbh0,
2341                       ip6_hop_by_hop_option_t * opt0,
2342                       ip6_hop_by_hop_option_t * limit0, u32 * next0)
2343 {
2344   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2345   u8 type0;
2346   u8 error0 = 0;
2347
2348   while (opt0 < limit0)
2349     {
2350       type0 = opt0->type;
2351       switch (type0)
2352         {
2353         case 0:         /* Pad1 */
2354           opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
2355           continue;
2356         case 1:         /* PadN */
2357           break;
2358         default:
2359           if (hm->options[type0])
2360             {
2361               if ((*hm->options[type0]) (b0, ip0, opt0) < 0)
2362                 {
2363                   error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2364                   return (error0);
2365                 }
2366             }
2367           else
2368             {
2369               /* Unrecognized mandatory option, check the two high order bits */
2370               switch (opt0->type & HBH_OPTION_TYPE_HIGH_ORDER_BITS)
2371                 {
2372                 case HBH_OPTION_TYPE_SKIP_UNKNOWN:
2373                   break;
2374                 case HBH_OPTION_TYPE_DISCARD_UNKNOWN:
2375                   error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2376                   *next0 = IP_LOOKUP_NEXT_DROP;
2377                   break;
2378                 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP:
2379                   error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2380                   *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2381                   icmp6_error_set_vnet_buffer (b0, ICMP6_parameter_problem,
2382                                                ICMP6_parameter_problem_unrecognized_option,
2383                                                (u8 *) opt0 - (u8 *) ip0);
2384                   break;
2385                 case HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST:
2386                   error0 = IP6_HOP_BY_HOP_ERROR_UNKNOWN_OPTION;
2387                   if (!ip6_address_is_multicast (&ip0->dst_address))
2388                     {
2389                       *next0 = IP_LOOKUP_NEXT_ICMP_ERROR;
2390                       icmp6_error_set_vnet_buffer (b0,
2391                                                    ICMP6_parameter_problem,
2392                                                    ICMP6_parameter_problem_unrecognized_option,
2393                                                    (u8 *) opt0 - (u8 *) ip0);
2394                     }
2395                   else
2396                     {
2397                       *next0 = IP_LOOKUP_NEXT_DROP;
2398                     }
2399                   break;
2400                 }
2401               return (error0);
2402             }
2403         }
2404       opt0 =
2405         (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
2406                                      sizeof (ip6_hop_by_hop_option_t));
2407     }
2408   return (error0);
2409 }
2410
2411 /*
2412  * Process the Hop-by-Hop Options header
2413  */
2414 static uword
2415 ip6_hop_by_hop (vlib_main_t * vm,
2416                 vlib_node_runtime_t * node, vlib_frame_t * frame)
2417 {
2418   vlib_node_runtime_t *error_node =
2419     vlib_node_get_runtime (vm, ip6_hop_by_hop_node.index);
2420   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2421   u32 n_left_from, *from, *to_next;
2422   ip_lookup_next_t next_index;
2423
2424   from = vlib_frame_vector_args (frame);
2425   n_left_from = frame->n_vectors;
2426   next_index = node->cached_next_index;
2427
2428   while (n_left_from > 0)
2429     {
2430       u32 n_left_to_next;
2431
2432       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2433
2434       while (n_left_from >= 4 && n_left_to_next >= 2)
2435         {
2436           u32 bi0, bi1;
2437           vlib_buffer_t *b0, *b1;
2438           u32 next0, next1;
2439           ip6_header_t *ip0, *ip1;
2440           ip6_hop_by_hop_header_t *hbh0, *hbh1;
2441           ip6_hop_by_hop_option_t *opt0, *limit0, *opt1, *limit1;
2442           u8 error0 = 0, error1 = 0;
2443
2444           /* Prefetch next iteration. */
2445           {
2446             vlib_buffer_t *p2, *p3;
2447
2448             p2 = vlib_get_buffer (vm, from[2]);
2449             p3 = vlib_get_buffer (vm, from[3]);
2450
2451             vlib_prefetch_buffer_header (p2, LOAD);
2452             vlib_prefetch_buffer_header (p3, LOAD);
2453
2454             CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2455             CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2456           }
2457
2458           /* Speculatively enqueue b0, b1 to the current next frame */
2459           to_next[0] = bi0 = from[0];
2460           to_next[1] = bi1 = from[1];
2461           from += 2;
2462           to_next += 2;
2463           n_left_from -= 2;
2464           n_left_to_next -= 2;
2465
2466           b0 = vlib_get_buffer (vm, bi0);
2467           b1 = vlib_get_buffer (vm, bi1);
2468
2469           /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2470           u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
2471           ip_adjacency_t *adj0 = adj_get (adj_index0);
2472           u32 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
2473           ip_adjacency_t *adj1 = adj_get (adj_index1);
2474
2475           /* Default use the next_index from the adjacency. A HBH option rarely redirects to a different node */
2476           next0 = adj0->lookup_next_index;
2477           next1 = adj1->lookup_next_index;
2478
2479           ip0 = vlib_buffer_get_current (b0);
2480           ip1 = vlib_buffer_get_current (b1);
2481           hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2482           hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
2483           opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2484           opt1 = (ip6_hop_by_hop_option_t *) (hbh1 + 1);
2485           limit0 =
2486             (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2487                                          ((hbh0->length + 1) << 3));
2488           limit1 =
2489             (ip6_hop_by_hop_option_t *) ((u8 *) hbh1 +
2490                                          ((hbh1->length + 1) << 3));
2491
2492           /*
2493            * Basic validity checks
2494            */
2495           if ((hbh0->length + 1) << 3 >
2496               clib_net_to_host_u16 (ip0->payload_length))
2497             {
2498               error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2499               next0 = IP_LOOKUP_NEXT_DROP;
2500               goto outdual;
2501             }
2502           /* Scan the set of h-b-h options, process ones that we understand */
2503           error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2504
2505           if ((hbh1->length + 1) << 3 >
2506               clib_net_to_host_u16 (ip1->payload_length))
2507             {
2508               error1 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2509               next1 = IP_LOOKUP_NEXT_DROP;
2510               goto outdual;
2511             }
2512           /* Scan the set of h-b-h options, process ones that we understand */
2513           error1 = ip6_scan_hbh_options (b1, ip1, hbh1, opt1, limit1, &next1);
2514
2515         outdual:
2516           /* Has the classifier flagged this buffer for special treatment? */
2517           if (PREDICT_FALSE
2518               ((error0 == 0)
2519                && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2520             next0 = hm->next_override;
2521
2522           /* Has the classifier flagged this buffer for special treatment? */
2523           if (PREDICT_FALSE
2524               ((error1 == 0)
2525                && (vnet_buffer (b1)->l2_classify.opaque_index & OI_DECAP)))
2526             next1 = hm->next_override;
2527
2528           if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
2529             {
2530               if (b0->flags & VLIB_BUFFER_IS_TRACED)
2531                 {
2532                   ip6_hop_by_hop_trace_t *t =
2533                     vlib_add_trace (vm, node, b0, sizeof (*t));
2534                   u32 trace_len = (hbh0->length + 1) << 3;
2535                   t->next_index = next0;
2536                   /* Capture the h-b-h option verbatim */
2537                   trace_len =
2538                     trace_len <
2539                     ARRAY_LEN (t->option_data) ? trace_len :
2540                     ARRAY_LEN (t->option_data);
2541                   t->trace_len = trace_len;
2542                   clib_memcpy (t->option_data, hbh0, trace_len);
2543                 }
2544               if (b1->flags & VLIB_BUFFER_IS_TRACED)
2545                 {
2546                   ip6_hop_by_hop_trace_t *t =
2547                     vlib_add_trace (vm, node, b1, sizeof (*t));
2548                   u32 trace_len = (hbh1->length + 1) << 3;
2549                   t->next_index = next1;
2550                   /* Capture the h-b-h option verbatim */
2551                   trace_len =
2552                     trace_len <
2553                     ARRAY_LEN (t->option_data) ? trace_len :
2554                     ARRAY_LEN (t->option_data);
2555                   t->trace_len = trace_len;
2556                   clib_memcpy (t->option_data, hbh1, trace_len);
2557                 }
2558
2559             }
2560
2561           b0->error = error_node->errors[error0];
2562           b1->error = error_node->errors[error1];
2563
2564           /* verify speculative enqueue, maybe switch current next frame */
2565           vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
2566                                            n_left_to_next, bi0, bi1, next0,
2567                                            next1);
2568         }
2569
2570       while (n_left_from > 0 && n_left_to_next > 0)
2571         {
2572           u32 bi0;
2573           vlib_buffer_t *b0;
2574           u32 next0;
2575           ip6_header_t *ip0;
2576           ip6_hop_by_hop_header_t *hbh0;
2577           ip6_hop_by_hop_option_t *opt0, *limit0;
2578           u8 error0 = 0;
2579
2580           /* Speculatively enqueue b0 to the current next frame */
2581           bi0 = from[0];
2582           to_next[0] = bi0;
2583           from += 1;
2584           to_next += 1;
2585           n_left_from -= 1;
2586           n_left_to_next -= 1;
2587
2588           b0 = vlib_get_buffer (vm, bi0);
2589           /*
2590            * Default use the next_index from the adjacency.
2591            * A HBH option rarely redirects to a different node
2592            */
2593           u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
2594           ip_adjacency_t *adj0 = adj_get (adj_index0);
2595           next0 = adj0->lookup_next_index;
2596
2597           ip0 = vlib_buffer_get_current (b0);
2598           hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
2599           opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
2600           limit0 =
2601             (ip6_hop_by_hop_option_t *) ((u8 *) hbh0 +
2602                                          ((hbh0->length + 1) << 3));
2603
2604           /*
2605            * Basic validity checks
2606            */
2607           if ((hbh0->length + 1) << 3 >
2608               clib_net_to_host_u16 (ip0->payload_length))
2609             {
2610               error0 = IP6_HOP_BY_HOP_ERROR_FORMAT;
2611               next0 = IP_LOOKUP_NEXT_DROP;
2612               goto out0;
2613             }
2614
2615           /* Scan the set of h-b-h options, process ones that we understand */
2616           error0 = ip6_scan_hbh_options (b0, ip0, hbh0, opt0, limit0, &next0);
2617
2618         out0:
2619           /* Has the classifier flagged this buffer for special treatment? */
2620           if (PREDICT_FALSE
2621               ((error0 == 0)
2622                && (vnet_buffer (b0)->l2_classify.opaque_index & OI_DECAP)))
2623             next0 = hm->next_override;
2624
2625           if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2626             {
2627               ip6_hop_by_hop_trace_t *t =
2628                 vlib_add_trace (vm, node, b0, sizeof (*t));
2629               u32 trace_len = (hbh0->length + 1) << 3;
2630               t->next_index = next0;
2631               /* Capture the h-b-h option verbatim */
2632               trace_len =
2633                 trace_len <
2634                 ARRAY_LEN (t->option_data) ? trace_len :
2635                 ARRAY_LEN (t->option_data);
2636               t->trace_len = trace_len;
2637               clib_memcpy (t->option_data, hbh0, trace_len);
2638             }
2639
2640           b0->error = error_node->errors[error0];
2641
2642           /* verify speculative enqueue, maybe switch current next frame */
2643           vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2644                                            n_left_to_next, bi0, next0);
2645         }
2646       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2647     }
2648   return frame->n_vectors;
2649 }
2650
2651 /* *INDENT-OFF* */
2652 VLIB_REGISTER_NODE (ip6_hop_by_hop_node) =
2653 {
2654   .function = ip6_hop_by_hop,
2655   .name = "ip6-hop-by-hop",
2656   .sibling_of = "ip6-lookup",
2657   .vector_size = sizeof (u32),
2658   .format_trace = format_ip6_hop_by_hop_trace,
2659   .type = VLIB_NODE_TYPE_INTERNAL,
2660   .n_errors = ARRAY_LEN (ip6_hop_by_hop_error_strings),
2661   .error_strings = ip6_hop_by_hop_error_strings,
2662   .n_next_nodes = 0,
2663 };
2664 /* *INDENT-ON* */
2665
2666 VLIB_NODE_FUNCTION_MULTIARCH (ip6_hop_by_hop_node, ip6_hop_by_hop);
2667
2668 static clib_error_t *
2669 ip6_hop_by_hop_init (vlib_main_t * vm)
2670 {
2671   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2672   memset (hm->options, 0, sizeof (hm->options));
2673   memset (hm->trace, 0, sizeof (hm->trace));
2674   hm->next_override = IP6_LOOKUP_NEXT_POP_HOP_BY_HOP;
2675   return (0);
2676 }
2677
2678 VLIB_INIT_FUNCTION (ip6_hop_by_hop_init);
2679
2680 void
2681 ip6_hbh_set_next_override (uword next)
2682 {
2683   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2684
2685   hm->next_override = next;
2686 }
2687
2688 int
2689 ip6_hbh_register_option (u8 option,
2690                          int options (vlib_buffer_t * b, ip6_header_t * ip,
2691                                       ip6_hop_by_hop_option_t * opt),
2692                          u8 * trace (u8 * s, ip6_hop_by_hop_option_t * opt))
2693 {
2694   ip6_main_t *im = &ip6_main;
2695   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2696
2697   ASSERT (option < ARRAY_LEN (hm->options));
2698
2699   /* Already registered */
2700   if (hm->options[option])
2701     return (-1);
2702
2703   hm->options[option] = options;
2704   hm->trace[option] = trace;
2705
2706   /* Set global variable */
2707   im->hbh_enabled = 1;
2708
2709   return (0);
2710 }
2711
2712 int
2713 ip6_hbh_unregister_option (u8 option)
2714 {
2715   ip6_main_t *im = &ip6_main;
2716   ip6_hop_by_hop_main_t *hm = &ip6_hop_by_hop_main;
2717
2718   ASSERT (option < ARRAY_LEN (hm->options));
2719
2720   /* Not registered */
2721   if (!hm->options[option])
2722     return (-1);
2723
2724   hm->options[option] = NULL;
2725   hm->trace[option] = NULL;
2726
2727   /* Disable global knob if this was the last option configured */
2728   int i;
2729   bool found = false;
2730   for (i = 0; i < 256; i++)
2731     {
2732       if (hm->options[option])
2733         {
2734           found = true;
2735           break;
2736         }
2737     }
2738   if (!found)
2739     im->hbh_enabled = 0;
2740
2741   return (0);
2742 }
2743
2744 /* Global IP6 main. */
2745 ip6_main_t ip6_main;
2746
2747 static clib_error_t *
2748 ip6_lookup_init (vlib_main_t * vm)
2749 {
2750   ip6_main_t *im = &ip6_main;
2751   clib_error_t *error;
2752   uword i;
2753
2754   if ((error = vlib_call_init_function (vm, vnet_feature_init)))
2755     return error;
2756
2757   for (i = 0; i < ARRAY_LEN (im->fib_masks); i++)
2758     {
2759       u32 j, i0, i1;
2760
2761       i0 = i / 32;
2762       i1 = i % 32;
2763
2764       for (j = 0; j < i0; j++)
2765         im->fib_masks[i].as_u32[j] = ~0;
2766
2767       if (i1)
2768         im->fib_masks[i].as_u32[i0] =
2769           clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
2770     }
2771
2772   ip_lookup_init (&im->lookup_main, /* is_ip6 */ 1);
2773
2774   if (im->lookup_table_nbuckets == 0)
2775     im->lookup_table_nbuckets = IP6_FIB_DEFAULT_HASH_NUM_BUCKETS;
2776
2777   im->lookup_table_nbuckets = 1 << max_log2 (im->lookup_table_nbuckets);
2778
2779   if (im->lookup_table_size == 0)
2780     im->lookup_table_size = IP6_FIB_DEFAULT_HASH_MEMORY_SIZE;
2781
2782   BV (clib_bihash_init) (&(im->ip6_table[IP6_FIB_TABLE_FWDING].ip6_hash),
2783                          "ip6 FIB fwding table",
2784                          im->lookup_table_nbuckets, im->lookup_table_size);
2785   BV (clib_bihash_init) (&im->ip6_table[IP6_FIB_TABLE_NON_FWDING].ip6_hash,
2786                          "ip6 FIB non-fwding table",
2787                          im->lookup_table_nbuckets, im->lookup_table_size);
2788
2789   /* Create FIB with index 0 and table id of 0. */
2790   fib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2791                                      FIB_SOURCE_DEFAULT_ROUTE);
2792   mfib_table_find_or_create_and_lock (FIB_PROTOCOL_IP6, 0,
2793                                       MFIB_SOURCE_DEFAULT_ROUTE);
2794
2795   {
2796     pg_node_t *pn;
2797     pn = pg_get_node (ip6_lookup_node.index);
2798     pn->unformat_edit = unformat_pg_ip6_header;
2799   }
2800
2801   /* Unless explicitly configured, don't process HBH options */
2802   im->hbh_enabled = 0;
2803
2804   {
2805     icmp6_neighbor_solicitation_header_t p;
2806
2807     memset (&p, 0, sizeof (p));
2808
2809     p.ip.ip_version_traffic_class_and_flow_label =
2810       clib_host_to_net_u32 (0x6 << 28);
2811     p.ip.payload_length =
2812       clib_host_to_net_u16 (sizeof (p) -
2813                             STRUCT_OFFSET_OF
2814                             (icmp6_neighbor_solicitation_header_t, neighbor));
2815     p.ip.protocol = IP_PROTOCOL_ICMP6;
2816     p.ip.hop_limit = 255;
2817     ip6_set_solicited_node_multicast_address (&p.ip.dst_address, 0);
2818
2819     p.neighbor.icmp.type = ICMP6_neighbor_solicitation;
2820
2821     p.link_layer_option.header.type =
2822       ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address;
2823     p.link_layer_option.header.n_data_u64s =
2824       sizeof (p.link_layer_option) / sizeof (u64);
2825
2826     vlib_packet_template_init (vm,
2827                                &im->discover_neighbor_packet_template,
2828                                &p, sizeof (p),
2829                                /* alloc chunk size */ 8,
2830                                "ip6 neighbor discovery");
2831   }
2832
2833   return error;
2834 }
2835
2836 VLIB_INIT_FUNCTION (ip6_lookup_init);
2837
2838 void
2839 ip6_link_local_address_from_ethernet_mac_address (ip6_address_t * ip,
2840                                                   u8 * mac)
2841 {
2842   ip->as_u64[0] = clib_host_to_net_u64 (0xFE80000000000000ULL);
2843   /* Invert the "u" bit */
2844   ip->as_u8[8] = mac[0] ^ (1 << 1);
2845   ip->as_u8[9] = mac[1];
2846   ip->as_u8[10] = mac[2];
2847   ip->as_u8[11] = 0xFF;
2848   ip->as_u8[12] = 0xFE;
2849   ip->as_u8[13] = mac[3];
2850   ip->as_u8[14] = mac[4];
2851   ip->as_u8[15] = mac[5];
2852 }
2853
2854 void
2855 ip6_ethernet_mac_address_from_link_local_address (u8 * mac,
2856                                                   ip6_address_t * ip)
2857 {
2858   /* Invert the previously inverted "u" bit */
2859   mac[0] = ip->as_u8[8] ^ (1 << 1);
2860   mac[1] = ip->as_u8[9];
2861   mac[2] = ip->as_u8[10];
2862   mac[3] = ip->as_u8[13];
2863   mac[4] = ip->as_u8[14];
2864   mac[5] = ip->as_u8[15];
2865 }
2866
2867 static clib_error_t *
2868 test_ip6_link_command_fn (vlib_main_t * vm,
2869                           unformat_input_t * input, vlib_cli_command_t * cmd)
2870 {
2871   u8 mac[6];
2872   ip6_address_t _a, *a = &_a;
2873
2874   if (unformat (input, "%U", unformat_ethernet_address, mac))
2875     {
2876       ip6_link_local_address_from_ethernet_mac_address (a, mac);
2877       vlib_cli_output (vm, "Link local address: %U", format_ip6_address, a);
2878       ip6_ethernet_mac_address_from_link_local_address (mac, a);
2879       vlib_cli_output (vm, "Original MAC address: %U",
2880                        format_ethernet_address, mac);
2881     }
2882
2883   return 0;
2884 }
2885
2886 /*?
2887  * This command converts the given MAC Address into an IPv6 link-local
2888  * address.
2889  *
2890  * @cliexpar
2891  * Example of how to create an IPv6 link-local address:
2892  * @cliexstart{test ip6 link 16:d9:e0:91:79:86}
2893  * Link local address: fe80::14d9:e0ff:fe91:7986
2894  * Original MAC address: 16:d9:e0:91:79:86
2895  * @cliexend
2896 ?*/
2897 /* *INDENT-OFF* */
2898 VLIB_CLI_COMMAND (test_link_command, static) =
2899 {
2900   .path = "test ip6 link",
2901   .function = test_ip6_link_command_fn,
2902   .short_help = "test ip6 link <mac-address>",
2903 };
2904 /* *INDENT-ON* */
2905
2906 int
2907 vnet_set_ip6_flow_hash (u32 table_id, u32 flow_hash_config)
2908 {
2909   u32 fib_index;
2910
2911   fib_index = fib_table_find (FIB_PROTOCOL_IP6, table_id);
2912
2913   if (~0 == fib_index)
2914     return VNET_API_ERROR_NO_SUCH_FIB;
2915
2916   fib_table_set_flow_hash_config (fib_index, FIB_PROTOCOL_IP6,
2917                                   flow_hash_config);
2918
2919   return 0;
2920 }
2921
2922 static clib_error_t *
2923 set_ip6_flow_hash_command_fn (vlib_main_t * vm,
2924                               unformat_input_t * input,
2925                               vlib_cli_command_t * cmd)
2926 {
2927   int matched = 0;
2928   u32 table_id = 0;
2929   u32 flow_hash_config = 0;
2930   int rv;
2931
2932   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2933     {
2934       if (unformat (input, "table %d", &table_id))
2935         matched = 1;
2936 #define _(a,v) \
2937     else if (unformat (input, #a)) { flow_hash_config |= v; matched=1;}
2938       foreach_flow_hash_bit
2939 #undef _
2940         else
2941         break;
2942     }
2943
2944   if (matched == 0)
2945     return clib_error_return (0, "unknown input `%U'",
2946                               format_unformat_error, input);
2947
2948   rv = vnet_set_ip6_flow_hash (table_id, flow_hash_config);
2949   switch (rv)
2950     {
2951     case 0:
2952       break;
2953
2954     case -1:
2955       return clib_error_return (0, "no such FIB table %d", table_id);
2956
2957     default:
2958       clib_warning ("BUG: illegal flow hash config 0x%x", flow_hash_config);
2959       break;
2960     }
2961
2962   return 0;
2963 }
2964
2965 /*?
2966  * Configure the set of IPv6 fields used by the flow hash.
2967  *
2968  * @cliexpar
2969  * @parblock
2970  * Example of how to set the flow hash on a given table:
2971  * @cliexcmd{set ip6 flow-hash table 8 dst sport dport proto}
2972  *
2973  * Example of display the configured flow hash:
2974  * @cliexstart{show ip6 fib}
2975  * ipv6-VRF:0, fib_index 0, flow hash: src dst sport dport proto
2976  * @::/0
2977  *   unicast-ip6-chain
2978  *   [@0]: dpo-load-balance: [index:5 buckets:1 uRPF:5 to:[0:0]]
2979  *     [0] [@0]: dpo-drop ip6
2980  * fe80::/10
2981  *   unicast-ip6-chain
2982  *   [@0]: dpo-load-balance: [index:10 buckets:1 uRPF:10 to:[0:0]]
2983  *     [0] [@2]: dpo-receive
2984  * ff02::1/128
2985  *   unicast-ip6-chain
2986  *   [@0]: dpo-load-balance: [index:8 buckets:1 uRPF:8 to:[0:0]]
2987  *     [0] [@2]: dpo-receive
2988  * ff02::2/128
2989  *   unicast-ip6-chain
2990  *   [@0]: dpo-load-balance: [index:7 buckets:1 uRPF:7 to:[0:0]]
2991  *     [0] [@2]: dpo-receive
2992  * ff02::16/128
2993  *   unicast-ip6-chain
2994  *   [@0]: dpo-load-balance: [index:9 buckets:1 uRPF:9 to:[0:0]]
2995  *     [0] [@2]: dpo-receive
2996  * ff02::1:ff00:0/104
2997  *   unicast-ip6-chain
2998  *   [@0]: dpo-load-balance: [index:6 buckets:1 uRPF:6 to:[0:0]]
2999  *     [0] [@2]: dpo-receive
3000  * ipv6-VRF:8, fib_index 1, flow hash: dst sport dport proto
3001  * @::/0
3002  *   unicast-ip6-chain
3003  *   [@0]: dpo-load-balance: [index:21 buckets:1 uRPF:20 to:[0:0]]
3004  *     [0] [@0]: dpo-drop ip6
3005  * @::a:1:1:0:4/126
3006  *   unicast-ip6-chain
3007  *   [@0]: dpo-load-balance: [index:27 buckets:1 uRPF:26 to:[0:0]]
3008  *     [0] [@4]: ipv6-glean: af_packet0
3009  * @::a:1:1:0:7/128
3010  *   unicast-ip6-chain
3011  *   [@0]: dpo-load-balance: [index:28 buckets:1 uRPF:27 to:[0:0]]
3012  *     [0] [@2]: dpo-receive: @::a:1:1:0:7 on af_packet0
3013  * fe80::/10
3014  *   unicast-ip6-chain
3015  *   [@0]: dpo-load-balance: [index:26 buckets:1 uRPF:25 to:[0:0]]
3016  *     [0] [@2]: dpo-receive
3017  * fe80::fe:3eff:fe3e:9222/128
3018  *   unicast-ip6-chain
3019  *   [@0]: dpo-load-balance: [index:29 buckets:1 uRPF:28 to:[0:0]]
3020  *     [0] [@2]: dpo-receive: fe80::fe:3eff:fe3e:9222 on af_packet0
3021  * ff02::1/128
3022  *   unicast-ip6-chain
3023  *   [@0]: dpo-load-balance: [index:24 buckets:1 uRPF:23 to:[0:0]]
3024  *     [0] [@2]: dpo-receive
3025  * ff02::2/128
3026  *   unicast-ip6-chain
3027  *   [@0]: dpo-load-balance: [index:23 buckets:1 uRPF:22 to:[0:0]]
3028  *     [0] [@2]: dpo-receive
3029  * ff02::16/128
3030  *   unicast-ip6-chain
3031  *   [@0]: dpo-load-balance: [index:25 buckets:1 uRPF:24 to:[0:0]]
3032  *     [0] [@2]: dpo-receive
3033  * ff02::1:ff00:0/104
3034  *   unicast-ip6-chain
3035  *   [@0]: dpo-load-balance: [index:22 buckets:1 uRPF:21 to:[0:0]]
3036  *     [0] [@2]: dpo-receive
3037  * @cliexend
3038  * @endparblock
3039 ?*/
3040 /* *INDENT-OFF* */
3041 VLIB_CLI_COMMAND (set_ip6_flow_hash_command, static) =
3042 {
3043   .path = "set ip6 flow-hash",
3044   .short_help =
3045   "set ip6 flow-hash table <table-id> [src] [dst] [sport] [dport] [proto] [reverse]",
3046   .function = set_ip6_flow_hash_command_fn,
3047 };
3048 /* *INDENT-ON* */
3049
3050 static clib_error_t *
3051 show_ip6_local_command_fn (vlib_main_t * vm,
3052                            unformat_input_t * input, vlib_cli_command_t * cmd)
3053 {
3054   ip6_main_t *im = &ip6_main;
3055   ip_lookup_main_t *lm = &im->lookup_main;
3056   int i;
3057
3058   vlib_cli_output (vm, "Protocols handled by ip6_local");
3059   for (i = 0; i < ARRAY_LEN (lm->local_next_by_ip_protocol); i++)
3060     {
3061       if (lm->local_next_by_ip_protocol[i] != IP_LOCAL_NEXT_PUNT)
3062         {
3063
3064           u32 node_index = vlib_get_node (vm,
3065                                           ip6_local_node.index)->
3066             next_nodes[lm->local_next_by_ip_protocol[i]];
3067           vlib_cli_output (vm, "%d: %U", i, format_vlib_node_name, vm,
3068                            node_index);
3069         }
3070     }
3071   return 0;
3072 }
3073
3074
3075
3076 /*?
3077  * Display the set of protocols handled by the local IPv6 stack.
3078  *
3079  * @cliexpar
3080  * Example of how to display local protocol table:
3081  * @cliexstart{show ip6 local}
3082  * Protocols handled by ip6_local
3083  * 17
3084  * 43
3085  * 58
3086  * 115
3087  * @cliexend
3088 ?*/
3089 /* *INDENT-OFF* */
3090 VLIB_CLI_COMMAND (show_ip6_local, static) =
3091 {
3092   .path = "show ip6 local",
3093   .function = show_ip6_local_command_fn,
3094   .short_help = "show ip6 local",
3095 };
3096 /* *INDENT-ON* */
3097
3098 int
3099 vnet_set_ip6_classify_intfc (vlib_main_t * vm, u32 sw_if_index,
3100                              u32 table_index)
3101 {
3102   vnet_main_t *vnm = vnet_get_main ();
3103   vnet_interface_main_t *im = &vnm->interface_main;
3104   ip6_main_t *ipm = &ip6_main;
3105   ip_lookup_main_t *lm = &ipm->lookup_main;
3106   vnet_classify_main_t *cm = &vnet_classify_main;
3107   ip6_address_t *if_addr;
3108
3109   if (pool_is_free_index (im->sw_interfaces, sw_if_index))
3110     return VNET_API_ERROR_NO_MATCHING_INTERFACE;
3111
3112   if (table_index != ~0 && pool_is_free_index (cm->tables, table_index))
3113     return VNET_API_ERROR_NO_SUCH_ENTRY;
3114
3115   vec_validate (lm->classify_table_index_by_sw_if_index, sw_if_index);
3116   lm->classify_table_index_by_sw_if_index[sw_if_index] = table_index;
3117
3118   if_addr = ip6_interface_first_address (ipm, sw_if_index);
3119
3120   if (NULL != if_addr)
3121     {
3122       fib_prefix_t pfx = {
3123         .fp_len = 128,
3124         .fp_proto = FIB_PROTOCOL_IP6,
3125         .fp_addr.ip6 = *if_addr,
3126       };
3127       u32 fib_index;
3128
3129       fib_index = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP4,
3130                                                        sw_if_index);
3131
3132
3133       if (table_index != (u32) ~ 0)
3134         {
3135           dpo_id_t dpo = DPO_INVALID;
3136
3137           dpo_set (&dpo,
3138                    DPO_CLASSIFY,
3139                    DPO_PROTO_IP6,
3140                    classify_dpo_create (DPO_PROTO_IP6, table_index));
3141
3142           fib_table_entry_special_dpo_add (fib_index,
3143                                            &pfx,
3144                                            FIB_SOURCE_CLASSIFY,
3145                                            FIB_ENTRY_FLAG_NONE, &dpo);
3146           dpo_reset (&dpo);
3147         }
3148       else
3149         {
3150           fib_table_entry_special_remove (fib_index,
3151                                           &pfx, FIB_SOURCE_CLASSIFY);
3152         }
3153     }
3154
3155   return 0;
3156 }
3157
3158 static clib_error_t *
3159 set_ip6_classify_command_fn (vlib_main_t * vm,
3160                              unformat_input_t * input,
3161                              vlib_cli_command_t * cmd)
3162 {
3163   u32 table_index = ~0;
3164   int table_index_set = 0;
3165   u32 sw_if_index = ~0;
3166   int rv;
3167
3168   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3169     {
3170       if (unformat (input, "table-index %d", &table_index))
3171         table_index_set = 1;
3172       else if (unformat (input, "intfc %U", unformat_vnet_sw_interface,
3173                          vnet_get_main (), &sw_if_index))
3174         ;
3175       else
3176         break;
3177     }
3178
3179   if (table_index_set == 0)
3180     return clib_error_return (0, "classify table-index must be specified");
3181
3182   if (sw_if_index == ~0)
3183     return clib_error_return (0, "interface / subif must be specified");
3184
3185   rv = vnet_set_ip6_classify_intfc (vm, sw_if_index, table_index);
3186
3187   switch (rv)
3188     {
3189     case 0:
3190       break;
3191
3192     case VNET_API_ERROR_NO_MATCHING_INTERFACE:
3193       return clib_error_return (0, "No such interface");
3194
3195     case VNET_API_ERROR_NO_SUCH_ENTRY:
3196       return clib_error_return (0, "No such classifier table");
3197     }
3198   return 0;
3199 }
3200
3201 /*?
3202  * Assign a classification table to an interface. The classification
3203  * table is created using the '<em>classify table</em>' and '<em>classify session</em>'
3204  * commands. Once the table is create, use this command to filter packets
3205  * on an interface.
3206  *
3207  * @cliexpar
3208  * Example of how to assign a classification table to an interface:
3209  * @cliexcmd{set ip6 classify intfc GigabitEthernet2/0/0 table-index 1}
3210 ?*/
3211 /* *INDENT-OFF* */
3212 VLIB_CLI_COMMAND (set_ip6_classify_command, static) =
3213 {
3214   .path = "set ip6 classify",
3215   .short_help =
3216   "set ip6 classify intfc <interface> table-index <classify-idx>",
3217   .function = set_ip6_classify_command_fn,
3218 };
3219 /* *INDENT-ON* */
3220
3221 static clib_error_t *
3222 ip6_config (vlib_main_t * vm, unformat_input_t * input)
3223 {
3224   ip6_main_t *im = &ip6_main;
3225   uword heapsize = 0;
3226   u32 tmp;
3227   u32 nbuckets = 0;
3228
3229   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3230     {
3231       if (unformat (input, "hash-buckets %d", &tmp))
3232         nbuckets = tmp;
3233       else if (unformat (input, "heap-size %U",
3234                          unformat_memory_size, &heapsize))
3235         ;
3236       else
3237         return clib_error_return (0, "unknown input '%U'",
3238                                   format_unformat_error, input);
3239     }
3240
3241   im->lookup_table_nbuckets = nbuckets;
3242   im->lookup_table_size = heapsize;
3243
3244   return 0;
3245 }
3246
3247 VLIB_EARLY_CONFIG_FUNCTION (ip6_config, "ip6");
3248
3249 /*
3250  * fd.io coding-style-patch-verification: ON
3251  *
3252  * Local Variables:
3253  * eval: (c-set-style "gnu")
3254  * End:
3255  */