vnet: introduce vnet_error()
[vpp.git] / src / vnet / interface.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * interface.c: VNET interfaces/sub-interfaces
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/plugin/plugin.h>
42 #include <vnet/adj/adj.h>
43 #include <vnet/adj/adj_mcast.h>
44 #include <vnet/ip/ip.h>
45 #include <vnet/interface/rx_queue_funcs.h>
46 #include <vnet/interface/tx_queue_funcs.h>
47
48 /* *INDENT-OFF* */
49 VLIB_REGISTER_LOG_CLASS (if_default_log, static) = {
50   .class_name = "interface",
51 };
52 /* *INDENT-ON* */
53
54 #define log_debug(fmt,...) vlib_log_debug(if_default_log.class, fmt, __VA_ARGS__)
55 #define log_err(fmt,...) vlib_log_err(if_default_log.class, fmt, __VA_ARGS__)
56
57 typedef enum vnet_interface_helper_flags_t_
58 {
59   VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE = (1 << 0),
60   VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE = (1 << 1),
61 } vnet_interface_helper_flags_t;
62
63 static clib_error_t *vnet_hw_interface_set_flags_helper (vnet_main_t * vnm,
64                                                          u32 hw_if_index,
65                                                          vnet_hw_interface_flags_t
66                                                          flags,
67                                                          vnet_interface_helper_flags_t
68                                                          helper_flags);
69
70 static clib_error_t *vnet_sw_interface_set_flags_helper (vnet_main_t * vnm,
71                                                          u32 sw_if_index,
72                                                          vnet_sw_interface_flags_t
73                                                          flags,
74                                                          vnet_interface_helper_flags_t
75                                                          helper_flags);
76
77 static clib_error_t *vnet_hw_interface_set_class_helper (vnet_main_t * vnm,
78                                                          u32 hw_if_index,
79                                                          u32 hw_class_index,
80                                                          u32 redistribute);
81
82 typedef struct
83 {
84   /* Either sw or hw interface index. */
85   u32 sw_hw_if_index;
86
87   /* Flags. */
88   u32 flags;
89 } vnet_sw_hw_interface_state_t;
90
91 static void
92 serialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, va_list * va)
93 {
94   vnet_sw_hw_interface_state_t *s =
95     va_arg (*va, vnet_sw_hw_interface_state_t *);
96   u32 n = va_arg (*va, u32);
97   u32 i;
98   for (i = 0; i < n; i++)
99     {
100       serialize_integer (m, s[i].sw_hw_if_index,
101                          sizeof (s[i].sw_hw_if_index));
102       serialize_integer (m, s[i].flags, sizeof (s[i].flags));
103     }
104 }
105
106 static void
107 unserialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m,
108                                             va_list * va)
109 {
110   vnet_sw_hw_interface_state_t *s =
111     va_arg (*va, vnet_sw_hw_interface_state_t *);
112   u32 n = va_arg (*va, u32);
113   u32 i;
114   for (i = 0; i < n; i++)
115     {
116       unserialize_integer (m, &s[i].sw_hw_if_index,
117                            sizeof (s[i].sw_hw_if_index));
118       unserialize_integer (m, &s[i].flags, sizeof (s[i].flags));
119     }
120 }
121
122 static vnet_sw_interface_flags_t
123 vnet_hw_interface_flags_to_sw (vnet_hw_interface_flags_t hwf)
124 {
125   vnet_sw_interface_flags_t swf = VNET_SW_INTERFACE_FLAG_NONE;
126
127   if (hwf & VNET_HW_INTERFACE_FLAG_LINK_UP)
128     swf |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
129
130   return (swf);
131 }
132
133 void
134 serialize_vnet_interface_state (serialize_main_t * m, va_list * va)
135 {
136   vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
137   vnet_sw_hw_interface_state_t *sts = 0, *st;
138   vnet_sw_interface_t *sif;
139   vnet_hw_interface_t *hif;
140   vnet_interface_main_t *im = &vnm->interface_main;
141
142   /* Serialize hardware interface classes since they may have changed.
143      Must do this before sending up/down flags. */
144   /* *INDENT-OFF* */
145   pool_foreach (hif, im->hw_interfaces)  {
146     vnet_hw_interface_class_t * hw_class = vnet_get_hw_interface_class (vnm, hif->hw_class_index);
147     serialize_cstring (m, hw_class->name);
148   }
149   /* *INDENT-ON* */
150
151   /* Send sw/hw interface state when non-zero. */
152   /* *INDENT-OFF* */
153   pool_foreach (sif, im->sw_interfaces)  {
154     if (sif->flags != 0)
155       {
156         vec_add2 (sts, st, 1);
157         st->sw_hw_if_index = sif->sw_if_index;
158         st->flags = sif->flags;
159       }
160   }
161   /* *INDENT-ON* */
162
163   vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
164
165   if (sts)
166     _vec_len (sts) = 0;
167
168   /* *INDENT-OFF* */
169   pool_foreach (hif, im->hw_interfaces)  {
170     if (hif->flags != 0)
171       {
172         vec_add2 (sts, st, 1);
173         st->sw_hw_if_index = hif->hw_if_index;
174         st->flags = vnet_hw_interface_flags_to_sw(hif->flags);
175       }
176   }
177   /* *INDENT-ON* */
178
179   vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
180
181   vec_free (sts);
182 }
183
184 static vnet_hw_interface_flags_t
185 vnet_sw_interface_flags_to_hw (vnet_sw_interface_flags_t swf)
186 {
187   vnet_hw_interface_flags_t hwf = VNET_HW_INTERFACE_FLAG_NONE;
188
189   if (swf & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
190     hwf |= VNET_HW_INTERFACE_FLAG_LINK_UP;
191
192   return (hwf);
193 }
194
195 void
196 unserialize_vnet_interface_state (serialize_main_t * m, va_list * va)
197 {
198   vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
199   vnet_sw_hw_interface_state_t *sts = 0, *st;
200
201   /* First set interface hardware class. */
202   {
203     vnet_interface_main_t *im = &vnm->interface_main;
204     vnet_hw_interface_t *hif;
205     char *class_name;
206     uword *p;
207     clib_error_t *error;
208
209     /* *INDENT-OFF* */
210     pool_foreach (hif, im->hw_interfaces)  {
211       unserialize_cstring (m, &class_name);
212       p = hash_get_mem (im->hw_interface_class_by_name, class_name);
213       if (p)
214         {
215           error = vnet_hw_interface_set_class_helper
216             (vnm, hif->hw_if_index, p[0], /* redistribute */ 0);
217         }
218       else
219         error = clib_error_return (0, "hw class %s AWOL?", class_name);
220
221       if (error)
222         clib_error_report (error);
223       vec_free (class_name);
224     }
225     /* *INDENT-ON* */
226   }
227
228   vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
229   vec_foreach (st, sts)
230     vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
231                                         /* no distribute */ 0);
232   vec_free (sts);
233
234   vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
235   vec_foreach (st, sts)
236   {
237     vnet_hw_interface_set_flags_helper
238       (vnm, st->sw_hw_if_index, vnet_sw_interface_flags_to_hw (st->flags),
239        /* no distribute */ 0);
240   }
241   vec_free (sts);
242 }
243
244 static clib_error_t *
245 call_elf_section_interface_callbacks (vnet_main_t * vnm, u32 if_index,
246                                       u32 flags,
247                                       _vnet_interface_function_list_elt_t **
248                                       elts)
249 {
250   _vnet_interface_function_list_elt_t *elt;
251   vnet_interface_function_priority_t prio;
252   clib_error_t *error = 0;
253
254   for (prio = VNET_ITF_FUNC_PRIORITY_LOW;
255        prio <= VNET_ITF_FUNC_PRIORITY_HIGH; prio++)
256     {
257       elt = elts[prio];
258
259       while (elt)
260         {
261           error = elt->fp (vnm, if_index, flags);
262           if (error)
263             return error;
264           elt = elt->next_interface_function;
265         }
266     }
267   return error;
268 }
269
270 static clib_error_t *
271 call_hw_interface_add_del_callbacks (vnet_main_t * vnm, u32 hw_if_index,
272                                      u32 is_create)
273 {
274   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
275   vnet_hw_interface_class_t *hw_class =
276     vnet_get_hw_interface_class (vnm, hi->hw_class_index);
277   vnet_device_class_t *dev_class =
278     vnet_get_device_class (vnm, hi->dev_class_index);
279   clib_error_t *error = 0;
280
281   if (hw_class->interface_add_del_function
282       && (error =
283           hw_class->interface_add_del_function (vnm, hw_if_index, is_create)))
284     return error;
285
286   if (dev_class->interface_add_del_function
287       && (error =
288           dev_class->interface_add_del_function (vnm, hw_if_index,
289                                                  is_create)))
290     return error;
291
292   error = call_elf_section_interface_callbacks
293     (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions);
294
295   return error;
296 }
297
298 static clib_error_t *
299 call_sw_interface_add_del_callbacks (vnet_main_t * vnm, u32 sw_if_index,
300                                      u32 is_create)
301 {
302   return call_elf_section_interface_callbacks
303     (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions);
304 }
305
306 static clib_error_t *
307 vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, u32 hw_if_index,
308                                     vnet_hw_interface_flags_t flags,
309                                     vnet_interface_helper_flags_t
310                                     helper_flags)
311 {
312   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
313   vnet_hw_interface_class_t *hw_class =
314     vnet_get_hw_interface_class (vnm, hi->hw_class_index);
315   u32 mask;
316   clib_error_t *error = 0;
317   u32 is_create =
318     (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
319
320   mask =
321     (VNET_HW_INTERFACE_FLAG_LINK_UP | VNET_HW_INTERFACE_FLAG_DUPLEX_MASK);
322   flags &= mask;
323
324   /* Call hardware interface add/del callbacks. */
325   if (is_create)
326     call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create);
327
328   /* Already in the desired state? */
329   if (!is_create && (hi->flags & mask) == flags)
330     goto done;
331
332   if ((hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) !=
333       (flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
334     {
335       /* Do hardware class (e.g. ethernet). */
336       if (hw_class->link_up_down_function
337           && (error = hw_class->link_up_down_function (vnm, hw_if_index,
338                                                        flags)))
339         goto done;
340
341       error = call_elf_section_interface_callbacks
342         (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions);
343
344       if (error)
345         goto done;
346     }
347
348   hi->flags &= ~mask;
349   hi->flags |= flags;
350
351 done:
352   if (error)
353     log_err ("hw_set_flags_helper: %U", format_clib_error, error);
354   return error;
355 }
356
357 static clib_error_t *
358 vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, u32 sw_if_index,
359                                     vnet_sw_interface_flags_t flags,
360                                     vnet_interface_helper_flags_t
361                                     helper_flags)
362 {
363   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
364   u32 mask;
365   clib_error_t *error = 0;
366   u32 is_create =
367     (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
368   u32 old_flags;
369
370   mask = VNET_SW_INTERFACE_FLAG_ADMIN_UP | VNET_SW_INTERFACE_FLAG_PUNT;
371   flags &= mask;
372
373   if (is_create)
374     {
375       error =
376         call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create);
377       if (error)
378         goto done;
379
380       if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
381         {
382           /* Notify everyone when the interface is created as admin up */
383           error = call_elf_section_interface_callbacks (vnm, sw_if_index,
384                                                         flags,
385                                                         vnm->
386                                                         sw_interface_admin_up_down_functions);
387           if (error)
388             goto done;
389         }
390     }
391   else
392     {
393       vnet_sw_interface_t *si_sup = si;
394
395       /* Check that super interface is in correct state. */
396       if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
397         {
398           si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index);
399
400           /* Check to see if we're bringing down the soft interface and if it's parent is up */
401           if ((flags != (si_sup->flags & mask)) &&
402               (!((flags == 0)
403                  && ((si_sup->flags & mask) ==
404                      VNET_SW_INTERFACE_FLAG_ADMIN_UP))))
405             {
406               error = clib_error_return (0, "super-interface %U must be %U",
407                                          format_vnet_sw_interface_name, vnm,
408                                          si_sup,
409                                          format_vnet_sw_interface_flags,
410                                          flags);
411               goto done;
412             }
413         }
414
415       /* Already in the desired state? */
416       if ((si->flags & mask) == flags)
417         goto done;
418
419       /* Sub-interfaces of hardware interfaces that do no redistribute,
420          do not redistribute themselves. */
421       if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
422         {
423           vnet_hw_interface_t *hi =
424             vnet_get_hw_interface (vnm, si_sup->hw_if_index);
425           vnet_device_class_t *dev_class =
426             vnet_get_device_class (vnm, hi->dev_class_index);
427           if (!dev_class->redistribute)
428             helper_flags &=
429               ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
430         }
431
432       /* set the flags now before invoking the registered clients
433        * so that the state they query is consistent with the state here notified */
434       old_flags = si->flags;
435       si->flags &= ~mask;
436       si->flags |= flags;
437       if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
438         error = call_elf_section_interface_callbacks
439           (vnm, sw_if_index, flags,
440            vnm->sw_interface_admin_up_down_functions);
441
442       if (error)
443         {
444           /* restore flags on error */
445           si->flags = old_flags;
446           goto done;
447         }
448
449       if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
450         {
451           vnet_hw_interface_t *hi =
452             vnet_get_hw_interface (vnm, si->hw_if_index);
453           vnet_hw_interface_class_t *hw_class =
454             vnet_get_hw_interface_class (vnm, hi->hw_class_index);
455           vnet_device_class_t *dev_class =
456             vnet_get_device_class (vnm, hi->dev_class_index);
457
458           if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) &&
459               (si->flags & VNET_SW_INTERFACE_FLAG_ERROR))
460             {
461               error = clib_error_return (0, "Interface in the error state");
462               goto done;
463             }
464
465           /* update si admin up flag in advance if we are going admin down */
466           if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
467             si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
468
469           if (dev_class->admin_up_down_function
470               && (error = dev_class->admin_up_down_function (vnm,
471                                                              si->hw_if_index,
472                                                              flags)))
473             {
474               /* restore si admin up flag to it's original state on errors */
475               si->flags = old_flags;
476               goto done;
477             }
478
479           if (hw_class->admin_up_down_function
480               && (error = hw_class->admin_up_down_function (vnm,
481                                                             si->hw_if_index,
482                                                             flags)))
483             {
484               /* restore si admin up flag to it's original state on errors */
485               si->flags = old_flags;
486               goto done;
487             }
488
489           /* Admin down implies link down. */
490           if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
491               && (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
492             vnet_hw_interface_set_flags_helper (vnm, si->hw_if_index,
493                                                 hi->flags &
494                                                 ~VNET_HW_INTERFACE_FLAG_LINK_UP,
495                                                 helper_flags);
496           vnet_hw_if_update_runtime_data (vnm, si->hw_if_index);
497         }
498     }
499
500   si->flags &= ~mask;
501   si->flags |= flags;
502
503 done:
504   if (error)
505     log_err ("sw_set_flags_helper: %U", format_clib_error, error);
506   return error;
507 }
508
509 clib_error_t *
510 vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index,
511                              vnet_hw_interface_flags_t flags)
512 {
513   log_debug ("hw_set_flags: hw_if_index %u flags 0x%x", hw_if_index, flags);
514   return vnet_hw_interface_set_flags_helper
515     (vnm, hw_if_index, flags,
516      VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
517 }
518
519 clib_error_t *
520 vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index,
521                              vnet_sw_interface_flags_t flags)
522 {
523   log_debug ("sw_set_flags: sw_if_index %u flags 0x%x", sw_if_index, flags);
524   return vnet_sw_interface_set_flags_helper
525     (vnm, sw_if_index, flags,
526      VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
527 }
528
529 void
530 vnet_sw_interface_admin_up (vnet_main_t * vnm, u32 sw_if_index)
531 {
532   u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
533   log_debug ("sw_admin_up: sw_if_index %u", sw_if_index);
534
535   if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
536     {
537       flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
538       vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
539     }
540 }
541
542 void
543 vnet_sw_interface_admin_down (vnet_main_t * vnm, u32 sw_if_index)
544 {
545   u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
546   log_debug ("sw_admin_down: sw_if_index %u", sw_if_index);
547
548   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
549     {
550       flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
551       vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
552     }
553 }
554
555 static void
556 vnet_if_update_lookup_tables (vnet_main_t *vnm, u32 sw_if_index)
557 {
558   vnet_interface_main_t *im = &vnm->interface_main;
559   vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
560
561   vec_validate_init_empty (im->hw_if_index_by_sw_if_index, sw_if_index, ~0);
562   vec_validate_init_empty (im->if_out_arc_end_next_index_by_sw_if_index,
563                            sw_if_index, ~0);
564
565   im->hw_if_index_by_sw_if_index[sw_if_index] = hi->hw_if_index;
566   im->if_out_arc_end_next_index_by_sw_if_index[sw_if_index] =
567     hi->if_out_arc_end_node_next_index;
568 }
569
570 static u32
571 vnet_create_sw_interface_no_callbacks (vnet_main_t * vnm,
572                                        vnet_sw_interface_t * template)
573 {
574   vnet_interface_main_t *im = &vnm->interface_main;
575   vnet_sw_interface_t *sw;
576   u32 sw_if_index;
577
578   pool_get (im->sw_interfaces, sw);
579   sw_if_index = sw - im->sw_interfaces;
580
581   sw[0] = template[0];
582
583   sw->flags = 0;
584   sw->sw_if_index = sw_if_index;
585   if (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
586     sw->sup_sw_if_index = sw->sw_if_index;
587
588   /* Allocate counters for this interface. */
589   {
590     u32 i;
591
592     vnet_interface_counter_lock (im);
593
594     for (i = 0; i < vec_len (im->sw_if_counters); i++)
595       {
596         vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index);
597         vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index);
598       }
599
600     for (i = 0; i < vec_len (im->combined_sw_if_counters); i++)
601       {
602         vlib_validate_combined_counter (&im->combined_sw_if_counters[i],
603                                         sw_if_index);
604         vlib_zero_combined_counter (&im->combined_sw_if_counters[i],
605                                     sw_if_index);
606       }
607
608     vnet_interface_counter_unlock (im);
609   }
610
611   vnet_if_update_lookup_tables (vnm, sw_if_index);
612   return sw_if_index;
613 }
614
615 clib_error_t *
616 vnet_create_sw_interface (vnet_main_t * vnm, vnet_sw_interface_t * template,
617                           u32 * sw_if_index)
618 {
619   vnet_interface_main_t *im = &vnm->interface_main;
620   clib_error_t *error;
621   vnet_hw_interface_t *hi;
622   vnet_device_class_t *dev_class;
623
624   if (template->sub.eth.flags.two_tags == 1
625       && template->sub.eth.flags.exact_match == 1
626       && (template->sub.eth.flags.inner_vlan_id_any == 1
627           || template->sub.eth.flags.outer_vlan_id_any == 1))
628     {
629       char *str = "inner-dot1q any exact-match is unsupported";
630       error = clib_error_return (0, str);
631       log_err ("create_sw_interface: %s", str);
632       return error;
633     }
634
635   hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index);
636   dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
637
638   if (template->type == VNET_SW_INTERFACE_TYPE_SUB &&
639       dev_class->subif_add_del_function)
640     {
641       error = dev_class->subif_add_del_function (vnm, hi->hw_if_index,
642                                                  (struct vnet_sw_interface_t
643                                                   *) template, 1);
644       if (error)
645         return error;
646     }
647
648   *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template);
649   error = vnet_sw_interface_set_flags_helper
650     (vnm, *sw_if_index, template->flags,
651      VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
652
653   if (error)
654     {
655       /* undo the work done by vnet_create_sw_interface_no_callbacks() */
656       log_err ("create_sw_interface: set flags failed\n  %U",
657                format_clib_error, error);
658       vnet_sw_interface_t *sw =
659         pool_elt_at_index (im->sw_interfaces, *sw_if_index);
660       pool_put (im->sw_interfaces, sw);
661     }
662   else
663     {
664       vnet_sw_interface_t *sw =
665         pool_elt_at_index (im->sw_interfaces, *sw_if_index);
666       log_debug ("create_sw_interface: interface %U (sw_if_index %u) created",
667                  format_vnet_sw_interface_name, vnm, sw, *sw_if_index);
668     }
669
670   return error;
671 }
672
673 void
674 vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
675 {
676   vnet_interface_main_t *im = &vnm->interface_main;
677   vnet_sw_interface_t *sw =
678     pool_elt_at_index (im->sw_interfaces, sw_if_index);
679
680   log_debug ("delete_sw_interface: sw_if_index %u, name '%U'",
681              sw_if_index, format_vnet_sw_if_index_name, vnm, sw_if_index);
682
683   /* Check if the interface has config and is removed from L2 BD or XConnect */
684   vnet_clear_sw_interface_tag (vnm, sw_if_index);
685
686   /* Bring down interface in case it is up. */
687   if (sw->flags != 0)
688     vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
689
690   call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
691
692   pool_put (im->sw_interfaces, sw);
693 }
694
695 static clib_error_t *
696 call_sw_interface_mtu_change_callbacks (vnet_main_t * vnm, u32 sw_if_index)
697 {
698   return call_elf_section_interface_callbacks
699     (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions);
700 }
701
702 void
703 vnet_sw_interface_set_mtu (vnet_main_t * vnm, u32 sw_if_index, u32 mtu)
704 {
705   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
706
707   if (si->mtu[VNET_MTU_L3] != mtu)
708     {
709       si->mtu[VNET_MTU_L3] = mtu;
710       log_debug ("set_mtu: interface %U, new mtu %u",
711                  format_vnet_sw_if_index_name, vnm, sw_if_index, mtu);
712
713       call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
714     }
715 }
716
717 void
718 vnet_sw_interface_set_protocol_mtu (vnet_main_t * vnm, u32 sw_if_index,
719                                     u32 mtu[])
720 {
721   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
722   bool changed = false;
723   int i;
724
725   for (i = 0; i < VNET_N_MTU; i++)
726     {
727       if (si->mtu[i] != mtu[i])
728         {
729           si->mtu[i] = mtu[i];
730           changed = true;
731         }
732     }
733   /* Notify interested parties */
734   if (changed)
735     {
736       log_debug ("set_protocol_mtu: interface %U l3 %u ip4 %u ip6 %u mpls %u",
737                  format_vnet_sw_if_index_name, vnm, sw_if_index,
738                  mtu[VNET_MTU_L3], mtu[VNET_MTU_IP4], mtu[VNET_MTU_IP6],
739                  mtu[VNET_MTU_MPLS]);
740       call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
741     }
742 }
743
744 void
745 vnet_sw_interface_ip_directed_broadcast (vnet_main_t * vnm,
746                                          u32 sw_if_index, u8 enable)
747 {
748   vnet_sw_interface_t *si;
749
750   si = vnet_get_sw_interface (vnm, sw_if_index);
751
752   if (enable)
753     si->flags |= VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
754   else
755     si->flags &= ~VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
756
757   ip4_directed_broadcast (sw_if_index, enable);
758 }
759
760 /*
761  * Reflect a change in hardware MTU on protocol MTUs
762  */
763 static walk_rc_t
764 sw_interface_walk_callback (vnet_main_t * vnm, u32 sw_if_index, void *ctx)
765 {
766   u32 *link_mtu = ctx;
767   vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu);
768   return WALK_CONTINUE;
769 }
770
771 clib_error_t *
772 vnet_hw_interface_set_mtu (vnet_main_t *vnm, u32 hw_if_index, u32 mtu)
773 {
774   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
775
776   if (hi->max_packet_bytes != mtu)
777     {
778       if (mtu > hi->max_supported_packet_bytes ||
779           mtu < hi->min_supported_packet_bytes)
780         return vnet_error (VNET_ERR_INVALID_VALUE,
781                            "requested mtu must be in the %u to %u range",
782                            hi->min_supported_packet_bytes,
783                            hi->max_supported_packet_bytes);
784       hi->max_packet_bytes = mtu;
785       ethernet_set_flags (vnm, hw_if_index, ETHERNET_INTERFACE_FLAG_MTU);
786       vnet_hw_interface_walk_sw (vnm, hw_if_index, sw_interface_walk_callback,
787                                  &mtu);
788     }
789   return 0;
790 }
791
792 static void
793 setup_tx_node (vlib_main_t * vm,
794                u32 node_index, vnet_device_class_t * dev_class)
795 {
796   vlib_node_t *n = vlib_get_node (vm, node_index);
797
798   n->format_trace = dev_class->format_tx_trace;
799
800   vlib_register_errors (vm, node_index, dev_class->tx_function_n_errors,
801                         dev_class->tx_function_error_strings,
802                         dev_class->tx_function_error_counters);
803 }
804
805 static void
806 setup_output_node (vlib_main_t * vm,
807                    u32 node_index, vnet_hw_interface_class_t * hw_class)
808 {
809   vlib_node_t *n = vlib_get_node (vm, node_index);
810   n->format_buffer = hw_class->format_header;
811   n->unformat_buffer = hw_class->unformat_header;
812 }
813
814 void
815 vnet_reset_interface_l3_output_node (vlib_main_t *vm, u32 sw_if_index)
816 {
817   vnet_set_interface_l3_output_node (vm, sw_if_index,
818                                      (u8 *) "interface-output");
819 }
820
821 void
822 vnet_set_interface_l3_output_node (vlib_main_t *vm, u32 sw_if_index,
823                                    u8 *output_node)
824 {
825   vlib_node_t *l3_node;
826
827   l3_node = vlib_get_node_by_name (vm, output_node);
828
829   static char *arcs[] = {
830     "ip4-output",
831     "ip6-output",
832     "mpls-output",
833     "ethernet-output",
834   };
835   u8 a;
836
837   for (a = 0; a < ARRAY_LEN (arcs); a++)
838     {
839       u8 arc = vnet_get_feature_arc_index (arcs[a]);
840       vnet_feature_modify_end_node (arc, sw_if_index, l3_node->index);
841     }
842 }
843
844 /* Register an interface instance. */
845 u32
846 vnet_register_interface (vnet_main_t * vnm,
847                          u32 dev_class_index,
848                          u32 dev_instance,
849                          u32 hw_class_index, u32 hw_instance)
850 {
851   vnet_interface_main_t *im = &vnm->interface_main;
852   vnet_hw_interface_t *hw;
853   vnet_device_class_t *dev_class =
854     vnet_get_device_class (vnm, dev_class_index);
855   vnet_hw_interface_class_t *hw_class =
856     vnet_get_hw_interface_class (vnm, hw_class_index);
857   vlib_main_t *vm = vnm->vlib_main;
858   vnet_feature_config_main_t *fcm;
859   vnet_config_main_t *cm;
860   u32 hw_index, i;
861   char *tx_node_name = NULL, *output_node_name = NULL;
862   vlib_node_t *if_out_node =
863     vlib_get_node (vm, vnet_interface_output_node.index);
864
865   pool_get (im->hw_interfaces, hw);
866   clib_memset (hw, 0, sizeof (*hw));
867   hw->trace_classify_table_index = ~0;
868
869   hw_index = hw - im->hw_interfaces;
870   hw->hw_if_index = hw_index;
871   hw->default_rx_mode = VNET_HW_IF_RX_MODE_POLLING;
872
873   if (hw_class->tx_hash_fn_type == VNET_HASH_FN_TYPE_ETHERNET ||
874       hw_class->tx_hash_fn_type == VNET_HASH_FN_TYPE_IP)
875     hw->hf = vnet_hash_default_function (hw_class->tx_hash_fn_type);
876
877   if (dev_class->format_device_name)
878     hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
879   else if (hw_class->format_interface_name)
880     hw->name = format (0, "%U", hw_class->format_interface_name,
881                        dev_instance);
882   else
883     hw->name = format (0, "%s%x", hw_class->name, dev_instance);
884
885   if (!im->hw_interface_by_name)
886     im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
887                                                 sizeof (hw->name[0]),
888                                                 sizeof (uword));
889
890   hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
891
892   /* Make hardware interface point to software interface. */
893   {
894     vnet_sw_interface_t sw = {
895       .type = VNET_SW_INTERFACE_TYPE_HARDWARE,
896       .flood_class = VNET_FLOOD_CLASS_NORMAL,
897       .hw_if_index = hw_index
898     };
899     hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw);
900   }
901
902   hw->dev_class_index = dev_class_index;
903   hw->dev_instance = dev_instance;
904   hw->hw_class_index = hw_class_index;
905   hw->hw_instance = hw_instance;
906
907   hw->max_rate_bits_per_sec = 0;
908   hw->min_packet_bytes = 0;
909   vnet_sw_interface_set_mtu (vnm, hw->sw_if_index, 0);
910
911   if (dev_class->tx_function == 0 && dev_class->tx_fn_registrations == 0)
912     goto no_output_nodes;       /* No output/tx nodes to create */
913
914   tx_node_name = (char *) format (0, "%v-tx", hw->name);
915   output_node_name = (char *) format (0, "%v-output", hw->name);
916
917   /* If we have previously deleted interface nodes, re-use them. */
918   if (vec_len (im->deleted_hw_interface_nodes) > 0)
919     {
920       vnet_hw_interface_nodes_t *hn;
921       vlib_node_t *node;
922       vlib_node_runtime_t *nrt;
923
924       hn = vec_end (im->deleted_hw_interface_nodes) - 1;
925
926       hw->tx_node_index = hn->tx_node_index;
927       hw->output_node_index = hn->output_node_index;
928
929       vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name);
930       vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name);
931
932       foreach_vlib_main ()
933         {
934           vnet_interface_output_runtime_t *rt;
935
936           rt =
937             vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
938           ASSERT (rt->is_deleted == 1);
939           rt->is_deleted = 0;
940           rt->hw_if_index = hw_index;
941           rt->sw_if_index = hw->sw_if_index;
942           rt->dev_instance = hw->dev_instance;
943
944           rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index);
945           rt->hw_if_index = hw_index;
946           rt->sw_if_index = hw->sw_if_index;
947           rt->dev_instance = hw->dev_instance;
948         }
949
950       /* The new class may differ from the old one.
951        * Functions have to be updated. */
952       node = vlib_get_node (vm, hw->output_node_index);
953       node->format_trace = format_vnet_interface_output_trace;
954       node->node_fn_registrations = if_out_node->node_fn_registrations;
955       node->function = if_out_node->function;
956
957       foreach_vlib_main ()
958         {
959           nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index);
960           nrt->function = node->function;
961           vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
962                                           VLIB_NODE_RUNTIME_PERF_RESET);
963         }
964
965       node = vlib_get_node (vm, hw->tx_node_index);
966       if (dev_class->tx_fn_registrations)
967         {
968           node->node_fn_registrations = dev_class->tx_fn_registrations;
969           node->function = vlib_node_get_preferred_node_fn_variant (
970             vm, dev_class->tx_fn_registrations);
971         }
972       else
973         node->function = dev_class->tx_function;
974       node->format_trace = dev_class->format_tx_trace;
975
976       foreach_vlib_main ()
977         {
978           nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index);
979           nrt->function = node->function;
980           vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
981                                           VLIB_NODE_RUNTIME_PERF_RESET);
982         }
983
984       _vec_len (im->deleted_hw_interface_nodes) -= 1;
985     }
986   else
987     {
988       vlib_node_registration_t r;
989       vnet_interface_output_runtime_t rt = {
990         .hw_if_index = hw_index,
991         .sw_if_index = hw->sw_if_index,
992         .dev_instance = hw->dev_instance,
993         .is_deleted = 0,
994       };
995
996       clib_memset (&r, 0, sizeof (r));
997       r.type = VLIB_NODE_TYPE_INTERNAL;
998       r.runtime_data = &rt;
999       r.runtime_data_bytes = sizeof (rt);
1000       r.scalar_size = sizeof (vnet_hw_if_tx_frame_t);
1001       r.vector_size = sizeof (u32);
1002
1003       r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
1004       r.name = tx_node_name;
1005       if (dev_class->tx_fn_registrations)
1006         {
1007           r.function = 0;
1008           r.node_fn_registrations = dev_class->tx_fn_registrations;
1009         }
1010       else
1011         r.function = dev_class->tx_function;
1012
1013       hw->tx_node_index = vlib_register_node (vm, &r);
1014
1015       vlib_node_add_named_next_with_slot (vm, hw->tx_node_index,
1016                                           "error-drop",
1017                                           VNET_INTERFACE_TX_NEXT_DROP);
1018
1019       r.flags = 0;
1020       r.name = output_node_name;
1021       r.format_trace = format_vnet_interface_output_trace;
1022       if (if_out_node->node_fn_registrations)
1023         {
1024           r.function = 0;
1025           r.node_fn_registrations = if_out_node->node_fn_registrations;
1026         }
1027       else
1028         r.function = if_out_node->function;
1029
1030       {
1031         static char *e[] = {
1032           "interface is down",
1033           "interface is deleted",
1034           "no tx queue available",
1035         };
1036
1037         r.n_errors = ARRAY_LEN (e);
1038         r.error_strings = e;
1039       }
1040       hw->output_node_index = vlib_register_node (vm, &r);
1041
1042       vlib_node_add_named_next_with_slot (vm, hw->output_node_index,
1043                                           "error-drop",
1044                                           VNET_INTERFACE_OUTPUT_NEXT_DROP);
1045       vlib_node_add_next_with_slot (vm, hw->output_node_index,
1046                                     hw->tx_node_index,
1047                                     VNET_INTERFACE_OUTPUT_NEXT_TX);
1048       /* add interface to the list of "output-interface" feature arc start nodes
1049          and clone nexts from 1st interface if it exists */
1050       fcm = vnet_feature_get_config_main (im->output_feature_arc_index);
1051       cm = &fcm->config_main;
1052       i = vec_len (cm->start_node_indices);
1053       vec_validate (cm->start_node_indices, i);
1054       cm->start_node_indices[i] = hw->output_node_index;
1055       if (hw_index)
1056         {
1057           /* copy nexts from 1st interface */
1058           vnet_hw_interface_t *first_hw;
1059           vlib_node_t *first_node;
1060
1061           first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0);
1062           first_node = vlib_get_node (vm, first_hw->output_node_index);
1063
1064           /* 1st 2 nexts are already added above */
1065           for (i = 2; i < vec_len (first_node->next_nodes); i++)
1066             vlib_node_add_next_with_slot (vm, hw->output_node_index,
1067                                           first_node->next_nodes[i], i);
1068         }
1069     }
1070
1071   hw->if_out_arc_end_node_next_index = vlib_node_add_next (
1072     vm, vnet_interface_output_arc_end_node.index, hw->tx_node_index);
1073   vnet_if_update_lookup_tables (vnm, hw->sw_if_index);
1074   setup_output_node (vm, hw->output_node_index, hw_class);
1075   setup_tx_node (vm, hw->tx_node_index, dev_class);
1076
1077 no_output_nodes:
1078   /* Call all up/down callbacks with zero flags when interface is created. */
1079   vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
1080                                       VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
1081   vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
1082                                       VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
1083   vec_free (tx_node_name);
1084   vec_free (output_node_name);
1085
1086   return hw_index;
1087 }
1088
1089 void
1090 vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
1091 {
1092   vnet_interface_main_t *im = &vnm->interface_main;
1093   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1094   vlib_main_t *vm = vnm->vlib_main;
1095   vnet_device_class_t *dev_class = vnet_get_device_class (vnm,
1096                                                           hw->dev_class_index);
1097   /* If it is up, mark it down. */
1098   if (hw->flags != 0)
1099     vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
1100
1101   /* Call delete callbacks. */
1102   call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
1103
1104   /* delete rx & tx queues */
1105   vnet_hw_if_unregister_all_rx_queues (vnm, hw_if_index);
1106   vnet_hw_if_unregister_all_tx_queues (vnm, hw_if_index);
1107   vnet_hw_if_update_runtime_data (vnm, hw_if_index);
1108
1109   /* Delete any sub-interfaces. */
1110   {
1111     u32 id, sw_if_index;
1112     /* *INDENT-OFF* */
1113     hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id,
1114     ({
1115       vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1116       u64 sup_and_sub_key =
1117         ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
1118       hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1119       vnet_delete_sw_interface (vnm, sw_if_index);
1120     }));
1121     hash_free (hw->sub_interface_sw_if_index_by_id);
1122     /* *INDENT-ON* */
1123   }
1124
1125   /* Delete software interface corresponding to hardware interface. */
1126   vnet_delete_sw_interface (vnm, hw->sw_if_index);
1127
1128   if (dev_class->tx_function)
1129     {
1130       /* Put output/tx nodes into recycle pool */
1131       vnet_hw_interface_nodes_t *dn;
1132
1133       foreach_vlib_main ()
1134         {
1135           vnet_interface_output_runtime_t *rt =
1136             vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
1137
1138           /* Mark node runtime as deleted so output node (if called)
1139            * will drop packets. */
1140           rt->is_deleted = 1;
1141         }
1142
1143       vlib_node_rename (vm, hw->output_node_index,
1144                         "interface-%d-output-deleted", hw_if_index);
1145       vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
1146                         hw_if_index);
1147       vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
1148       dn->tx_node_index = hw->tx_node_index;
1149       dn->output_node_index = hw->output_node_index;
1150     }
1151   hash_unset_mem (im->hw_interface_by_name, hw->name);
1152   vec_free (hw->name);
1153   vec_free (hw->hw_address);
1154   vec_free (hw->output_node_thread_runtimes);
1155   pool_put (im->hw_interfaces, hw);
1156 }
1157
1158 void
1159 vnet_hw_interface_walk_sw (vnet_main_t * vnm,
1160                            u32 hw_if_index,
1161                            vnet_hw_sw_interface_walk_t fn, void *ctx)
1162 {
1163   vnet_hw_interface_t *hi;
1164   u32 id, sw_if_index;
1165
1166   hi = vnet_get_hw_interface (vnm, hw_if_index);
1167   /* the super first, then the sub interfaces */
1168   if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx))
1169     return;
1170
1171   /* *INDENT-OFF* */
1172   hash_foreach (id, sw_if_index,
1173                 hi->sub_interface_sw_if_index_by_id,
1174   ({
1175     if (WALK_STOP == fn (vnm, sw_if_index, ctx))
1176       break;
1177   }));
1178   /* *INDENT-ON* */
1179 }
1180
1181 void
1182 vnet_hw_interface_walk (vnet_main_t * vnm,
1183                         vnet_hw_interface_walk_t fn, void *ctx)
1184 {
1185   vnet_interface_main_t *im;
1186   vnet_hw_interface_t *hi;
1187
1188   im = &vnm->interface_main;
1189
1190   /* *INDENT-OFF* */
1191   pool_foreach (hi, im->hw_interfaces)
1192    {
1193     if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx))
1194       break;
1195   }
1196   /* *INDENT-ON* */
1197 }
1198
1199 void
1200 vnet_sw_interface_walk (vnet_main_t * vnm,
1201                         vnet_sw_interface_walk_t fn, void *ctx)
1202 {
1203   vnet_interface_main_t *im;
1204   vnet_sw_interface_t *si;
1205
1206   im = &vnm->interface_main;
1207
1208   /* *INDENT-OFF* */
1209   pool_foreach (si, im->sw_interfaces)
1210   {
1211     if (WALK_STOP == fn (vnm, si, ctx))
1212       break;
1213   }
1214   /* *INDENT-ON* */
1215 }
1216
1217 void
1218 vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
1219                                   u32 hw_class_index, u32 hw_instance)
1220 {
1221   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1222   vnet_hw_interface_class_t *hc =
1223     vnet_get_hw_interface_class (vnm, hw_class_index);
1224
1225   hi->hw_class_index = hw_class_index;
1226   hi->hw_instance = hw_instance;
1227   setup_output_node (vnm->vlib_main, hi->output_node_index, hc);
1228 }
1229
1230 static clib_error_t *
1231 vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index,
1232                                     u32 hw_class_index, u32 redistribute)
1233 {
1234   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1235   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index);
1236   vnet_hw_interface_class_t *old_class =
1237     vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1238   vnet_hw_interface_class_t *new_class =
1239     vnet_get_hw_interface_class (vnm, hw_class_index);
1240   vnet_device_class_t *dev_class =
1241     vnet_get_device_class (vnm, hi->dev_class_index);
1242   clib_error_t *error = 0;
1243
1244   /* New class equals old class?  Nothing to do. */
1245   if (hi->hw_class_index == hw_class_index)
1246     return 0;
1247
1248   /* No need (and incorrect since admin up flag may be set) to do error checking when
1249      receiving unserialize message. */
1250   if (redistribute)
1251     {
1252       if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1253         return clib_error_return (0,
1254                                   "%v must be admin down to change class from %s to %s",
1255                                   hi->name, old_class->name, new_class->name);
1256
1257       /* Make sure interface supports given class. */
1258       if ((new_class->is_valid_class_for_interface
1259            && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
1260                                                         hw_class_index))
1261           || (dev_class->is_valid_class_for_interface
1262               && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
1263                                                            hw_class_index)))
1264         return clib_error_return (0,
1265                                   "%v class cannot be changed from %s to %s",
1266                                   hi->name, old_class->name, new_class->name);
1267
1268     }
1269
1270   if (old_class->hw_class_change)
1271     old_class->hw_class_change (vnm, hw_if_index, old_class->index,
1272                                 new_class->index);
1273
1274   vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
1275                                     /* instance */ ~0);
1276
1277   if (new_class->hw_class_change)
1278     new_class->hw_class_change (vnm, hw_if_index, old_class->index,
1279                                 new_class->index);
1280
1281   if (dev_class->hw_class_change)
1282     dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
1283
1284   return error;
1285 }
1286
1287 clib_error_t *
1288 vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
1289                              u32 hw_class_index)
1290 {
1291   return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
1292                                              /* redistribute */ 1);
1293 }
1294
1295 static int
1296 vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm,
1297                                               u32 hw_if_index,
1298                                               u32 node_index,
1299                                               u32 redistribute)
1300 {
1301   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1302   vnet_device_class_t *dev_class = vnet_get_device_class
1303     (vnm, hi->dev_class_index);
1304
1305   if (dev_class->rx_redirect_to_node)
1306     {
1307       dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1308       return 0;
1309     }
1310
1311   return VNET_API_ERROR_UNIMPLEMENTED;
1312 }
1313
1314 int
1315 vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
1316                                        u32 node_index)
1317 {
1318   return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1319                                                        node_index,
1320                                                        1 /* redistribute */ );
1321 }
1322
1323 word
1324 vnet_sw_interface_compare (vnet_main_t * vnm,
1325                            uword sw_if_index0, uword sw_if_index1)
1326 {
1327   vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1328   vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1329   vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index);
1330   vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index);
1331
1332   if (h0 != h1)
1333     return vec_cmp (h0->name, h1->name);
1334   return (word) h0->hw_instance - (word) h1->hw_instance;
1335 }
1336
1337 word
1338 vnet_hw_interface_compare (vnet_main_t * vnm,
1339                            uword hw_if_index0, uword hw_if_index1)
1340 {
1341   vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1342   vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
1343
1344   if (h0 != h1)
1345     return vec_cmp (h0->name, h1->name);
1346   return (word) h0->hw_instance - (word) h1->hw_instance;
1347 }
1348
1349 int
1350 vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
1351 {
1352   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1353   if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
1354       (si->type == VNET_SW_INTERFACE_TYPE_PIPE))
1355     return 1;
1356
1357   vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1358   vnet_hw_interface_class_t *hc =
1359     vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1360
1361   return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1362 }
1363
1364 int
1365 vnet_sw_interface_is_nbma (vnet_main_t * vnm, u32 sw_if_index)
1366 {
1367   vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1368   vnet_hw_interface_class_t *hc =
1369     vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1370
1371   return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_NBMA);
1372 }
1373
1374 clib_error_t *
1375 vnet_sw_interface_supports_addressing (vnet_main_t *vnm, u32 sw_if_index)
1376 {
1377   if (sw_if_index == 0)
1378     {
1379       return clib_error_create (
1380         "local0 interface doesn't support IP addressing");
1381     }
1382
1383   if (vnet_sw_interface_is_sub (vnm, sw_if_index))
1384     {
1385       vnet_sw_interface_t *si;
1386       si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
1387       if (si && si->type == VNET_SW_INTERFACE_TYPE_SUB &&
1388           si->sub.eth.flags.exact_match == 0)
1389         {
1390           return clib_error_create (
1391             "sub-interface without exact-match doesn't support IP addressing");
1392         }
1393     }
1394   return NULL;
1395 }
1396
1397 clib_error_t *
1398 vnet_interface_init (vlib_main_t * vm)
1399 {
1400   vnet_main_t *vnm = vnet_get_main ();
1401   vnet_interface_main_t *im = &vnm->interface_main;
1402   vlib_buffer_t *b = 0;
1403   vnet_buffer_opaque_t *o = 0;
1404   clib_error_t *error;
1405
1406   /*
1407    * Keep people from shooting themselves in the foot.
1408    */
1409   if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
1410     {
1411 #define _(a) if (sizeof(o->a) > sizeof (o->unused))                     \
1412       clib_warning                                                      \
1413         ("FATAL: size of opaque union subtype %s is %d (max %d)",       \
1414          #a, sizeof(o->a), sizeof (o->unused));
1415       foreach_buffer_opaque_union_subtype;
1416 #undef _
1417
1418       return clib_error_return
1419         (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1420          sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
1421     }
1422
1423   clib_spinlock_init (&im->sw_if_counter_lock);
1424   clib_spinlock_lock (&im->sw_if_counter_lock); /* should be no need */
1425
1426   vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1);
1427 #define _(E,n,p)                                                        \
1428   im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n;             \
1429   im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1430   foreach_simple_interface_counter_name
1431 #undef _
1432     vec_validate (im->combined_sw_if_counters,
1433                   VNET_N_COMBINED_INTERFACE_COUNTER - 1);
1434 #define _(E,n,p)                                                        \
1435   im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n;    \
1436   im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1437   foreach_combined_interface_counter_name
1438 #undef _
1439     clib_spinlock_unlock (&im->sw_if_counter_lock);
1440
1441   im->device_class_by_name = hash_create_string ( /* size */ 0,
1442                                                  sizeof (uword));
1443   {
1444     vnet_device_class_t *c;
1445
1446     c = vnm->device_class_registrations;
1447
1448     while (c)
1449       {
1450         c->index = vec_len (im->device_classes);
1451         hash_set_mem (im->device_class_by_name, c->name, c->index);
1452
1453         /* to avoid confusion, please remove ".tx_function" statement
1454           from VNET_DEVICE_CLASS() if using function candidates */
1455         ASSERT (c->tx_fn_registrations == 0 || c->tx_function == 0);
1456
1457         if (c->tx_fn_registrations)
1458           c->tx_function = vlib_node_get_preferred_node_fn_variant (
1459             vm, c->tx_fn_registrations);
1460
1461         vec_add1 (im->device_classes, c[0]);
1462         c = c->next_class_registration;
1463       }
1464   }
1465
1466   im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
1467                                                        sizeof (uword));
1468
1469   im->rxq_index_by_hw_if_index_and_queue_id =
1470     hash_create_mem (0, sizeof (u64), sizeof (u32));
1471   im->txq_index_by_hw_if_index_and_queue_id =
1472     hash_create_mem (0, sizeof (u64), sizeof (u32));
1473   im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1474                                                     sizeof (uword));
1475   {
1476     vnet_hw_interface_class_t *c;
1477
1478     c = vnm->hw_interface_class_registrations;
1479
1480     while (c)
1481       {
1482         c->index = vec_len (im->hw_interface_classes);
1483         hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
1484
1485         if (NULL == c->build_rewrite)
1486           c->build_rewrite = default_build_rewrite;
1487         if (NULL == c->update_adjacency)
1488           c->update_adjacency = default_update_adjacency;
1489
1490         vec_add1 (im->hw_interface_classes, c[0]);
1491         c = c->next_class_registration;
1492       }
1493   }
1494
1495   /* init per-thread data */
1496   vec_validate_aligned (im->per_thread_data, vlib_num_workers (),
1497                         CLIB_CACHE_LINE_BYTES);
1498
1499   if ((error = vlib_call_init_function (vm, vnet_interface_cli_init)))
1500     return error;
1501
1502   vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword));
1503
1504   return 0;
1505 }
1506
1507 VLIB_INIT_FUNCTION (vnet_interface_init);
1508
1509 /* Kludge to renumber interface names [only!] */
1510 int
1511 vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance)
1512 {
1513   int rv;
1514   vnet_main_t *vnm = vnet_get_main ();
1515   vnet_interface_main_t *im = &vnm->interface_main;
1516   vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1517
1518   vnet_device_class_t *dev_class = vnet_get_device_class
1519     (vnm, hi->dev_class_index);
1520
1521   if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
1522     return VNET_API_ERROR_UNIMPLEMENTED;
1523
1524   rv = dev_class->name_renumber (hi, new_show_dev_instance);
1525
1526   if (rv)
1527     return rv;
1528
1529   hash_unset_mem (im->hw_interface_by_name, hi->name);
1530   vec_free (hi->name);
1531   /* Use the mapping we set up to call it Ishmael */
1532   hi->name = format (0, "%U", dev_class->format_device_name,
1533                      hi->dev_instance);
1534
1535   hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index);
1536   return rv;
1537 }
1538
1539 clib_error_t *
1540 vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
1541 {
1542   vnet_interface_main_t *im = &vnm->interface_main;
1543   vlib_main_t *vm = vnm->vlib_main;
1544   vnet_hw_interface_t *hw;
1545   u8 *old_name;
1546   clib_error_t *error = 0;
1547
1548   hw = vnet_get_hw_interface (vnm, hw_if_index);
1549   if (!hw)
1550     {
1551       return clib_error_return (0,
1552                                 "unable to find hw interface for index %u",
1553                                 hw_if_index);
1554     }
1555
1556   old_name = hw->name;
1557
1558   /* set new hw->name */
1559   hw->name = format (0, "%s", new_name);
1560
1561   /* remove the old name to hw_if_index mapping and install the new one */
1562   hash_unset_mem (im->hw_interface_by_name, old_name);
1563   hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1564
1565   /* rename tx/output nodes */
1566   vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1567   vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1568
1569   /* free the old name vector */
1570   vec_free (old_name);
1571
1572   return error;
1573 }
1574
1575 clib_error_t *
1576 vnet_hw_interface_add_del_mac_address (vnet_main_t * vnm,
1577                                        u32 hw_if_index,
1578                                        const u8 * mac_address, u8 is_add)
1579 {
1580   clib_error_t *error = 0;
1581   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1582
1583   vnet_device_class_t *dev_class =
1584     vnet_get_device_class (vnm, hi->dev_class_index);
1585
1586   if (!hi->hw_address)
1587     {
1588       error =
1589         clib_error_return
1590         (0, "Secondary MAC Addresses not supported for interface index %u",
1591          hw_if_index);
1592       goto done;
1593     }
1594
1595   if (dev_class->mac_addr_add_del_function)
1596     error = dev_class->mac_addr_add_del_function (hi, mac_address, is_add);
1597
1598   if (!error)
1599     {
1600       vnet_hw_interface_class_t *hw_class;
1601
1602       hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1603
1604       if (NULL != hw_class->mac_addr_add_del_function)
1605         error = hw_class->mac_addr_add_del_function (hi, mac_address, is_add);
1606     }
1607
1608   /* If no errors, add to the list of secondary MACs on the ethernet intf */
1609   if (!error)
1610     ethernet_interface_add_del_address (&ethernet_main, hw_if_index,
1611                                         mac_address, is_add);
1612
1613 done:
1614   if (error)
1615     log_err ("hw_add_del_mac_address: %U", format_clib_error, error);
1616   return error;
1617 }
1618
1619 static clib_error_t *
1620 vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm,
1621                                              u32 hw_if_index,
1622                                              const u8 * mac_address)
1623 {
1624   clib_error_t *error = 0;
1625   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1626
1627   if (hi->hw_address)
1628     {
1629       u8 *old_address = vec_dup (hi->hw_address);
1630       vnet_device_class_t *dev_class =
1631         vnet_get_device_class (vnm, hi->dev_class_index);
1632       if (dev_class->mac_addr_change_function)
1633         {
1634           error =
1635             dev_class->mac_addr_change_function (hi, old_address,
1636                                                  mac_address);
1637         }
1638       if (!error)
1639         {
1640           vnet_hw_interface_class_t *hw_class;
1641
1642           hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1643
1644           if (NULL != hw_class->mac_addr_change_function)
1645             hw_class->mac_addr_change_function (hi, old_address, mac_address);
1646         }
1647       else
1648         {
1649           error =
1650             clib_error_return (0,
1651                                "MAC Address Change is not supported on this interface");
1652         }
1653       vec_free (old_address);
1654     }
1655   else
1656     {
1657       error =
1658         clib_error_return (0,
1659                            "mac address change is not supported for interface index %u",
1660                            hw_if_index);
1661     }
1662   return error;
1663 }
1664
1665 clib_error_t *
1666 vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index,
1667                                       const u8 * mac_address)
1668 {
1669   return vnet_hw_interface_change_mac_address_helper
1670     (vnm, hw_if_index, mac_address);
1671 }
1672
1673 static int
1674 vnet_sw_interface_check_table_same (u32 unnumbered_sw_if_index,
1675                                     u32 ip_sw_if_index)
1676 {
1677   if (ip4_main.fib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1678       ip4_main.fib_index_by_sw_if_index[ip_sw_if_index])
1679     return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1680
1681   if (ip4_main.mfib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1682       ip4_main.mfib_index_by_sw_if_index[ip_sw_if_index])
1683     return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1684
1685   if (ip6_main.fib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1686       ip6_main.fib_index_by_sw_if_index[ip_sw_if_index])
1687     return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1688
1689   if (ip6_main.mfib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1690       ip6_main.mfib_index_by_sw_if_index[ip_sw_if_index])
1691     return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1692
1693   return 0;
1694 }
1695
1696 /* update the unnumbered state of an interface*/
1697 int
1698 vnet_sw_interface_update_unnumbered (u32 unnumbered_sw_if_index,
1699                                      u32 ip_sw_if_index, u8 enable)
1700 {
1701   vnet_main_t *vnm = vnet_get_main ();
1702   vnet_sw_interface_t *si;
1703   u32 was_unnum;
1704   int rv = 0;
1705
1706   si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
1707   was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1708
1709   if (enable)
1710     {
1711       rv = vnet_sw_interface_check_table_same (unnumbered_sw_if_index,
1712                                                ip_sw_if_index);
1713       if (rv != 0)
1714         return rv;
1715       si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
1716       si->unnumbered_sw_if_index = ip_sw_if_index;
1717
1718       ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1719         [unnumbered_sw_if_index] =
1720         ip4_main.
1721         lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1722       ip6_main.
1723         lookup_main.if_address_pool_index_by_sw_if_index
1724         [unnumbered_sw_if_index] =
1725         ip6_main.
1726         lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1727     }
1728   else
1729     {
1730       /*
1731        * Unless the interface is actually unnumbered, don't
1732        * smash e.g. if_address_pool_index_by_sw_if_index
1733        */
1734       if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
1735         {
1736           si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1737           si->unnumbered_sw_if_index = (u32) ~0;
1738
1739           ip4_main.lookup_main
1740             .if_address_pool_index_by_sw_if_index[unnumbered_sw_if_index] = ~0;
1741           ip6_main.lookup_main
1742             .if_address_pool_index_by_sw_if_index[unnumbered_sw_if_index] = ~0;
1743         }
1744     }
1745
1746   if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1747     {
1748       ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1749       ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1750     }
1751
1752   return 0;
1753 }
1754
1755 vnet_l3_packet_type_t
1756 vnet_link_to_l3_proto (vnet_link_t link)
1757 {
1758   switch (link)
1759     {
1760     case VNET_LINK_IP4:
1761       return (VNET_L3_PACKET_TYPE_IP4);
1762     case VNET_LINK_IP6:
1763       return (VNET_L3_PACKET_TYPE_IP6);
1764     case VNET_LINK_MPLS:
1765       return (VNET_L3_PACKET_TYPE_MPLS);
1766     case VNET_LINK_ARP:
1767       return (VNET_L3_PACKET_TYPE_ARP);
1768     case VNET_LINK_ETHERNET:
1769     case VNET_LINK_NSH:
1770       ASSERT (0);
1771       break;
1772     }
1773   ASSERT (0);
1774   return (0);
1775 }
1776
1777 vnet_mtu_t
1778 vnet_link_to_mtu (vnet_link_t link)
1779 {
1780   switch (link)
1781     {
1782     case VNET_LINK_IP4:
1783       return (VNET_MTU_IP4);
1784     case VNET_LINK_IP6:
1785       return (VNET_MTU_IP6);
1786     case VNET_LINK_MPLS:
1787       return (VNET_MTU_MPLS);
1788     default:
1789       return (VNET_MTU_L3);
1790     }
1791 }
1792
1793 u8 *
1794 default_build_rewrite (vnet_main_t * vnm,
1795                        u32 sw_if_index,
1796                        vnet_link_t link_type, const void *dst_address)
1797 {
1798   return (NULL);
1799 }
1800
1801 void
1802 default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
1803 {
1804   ip_adjacency_t *adj;
1805
1806   adj = adj_get (ai);
1807
1808   switch (adj->lookup_next_index)
1809     {
1810     case IP_LOOKUP_NEXT_GLEAN:
1811       adj_glean_update_rewrite (ai);
1812       break;
1813     case IP_LOOKUP_NEXT_ARP:
1814     case IP_LOOKUP_NEXT_BCAST:
1815       /*
1816        * default rewrite in neighbour adj
1817        */
1818       adj_nbr_update_rewrite
1819         (ai,
1820          ADJ_NBR_REWRITE_FLAG_COMPLETE,
1821          vnet_build_rewrite_for_sw_interface (vnm,
1822                                               sw_if_index,
1823                                               adj_get_link_type (ai), NULL));
1824       break;
1825     case IP_LOOKUP_NEXT_MCAST:
1826       /*
1827        * mcast traffic also uses default rewrite string with no mcast
1828        * switch time updates.
1829        */
1830       adj_mcast_update_rewrite
1831         (ai,
1832          vnet_build_rewrite_for_sw_interface (vnm,
1833                                               sw_if_index,
1834                                               adj_get_link_type (ai),
1835                                               NULL), 0);
1836       break;
1837     case IP_LOOKUP_NEXT_DROP:
1838     case IP_LOOKUP_NEXT_PUNT:
1839     case IP_LOOKUP_NEXT_LOCAL:
1840     case IP_LOOKUP_NEXT_REWRITE:
1841     case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
1842     case IP_LOOKUP_NEXT_MIDCHAIN:
1843     case IP_LOOKUP_NEXT_ICMP_ERROR:
1844     case IP_LOOKUP_N_NEXT:
1845       ASSERT (0);
1846       break;
1847     }
1848 }
1849
1850 clib_error_t *
1851 vnet_hw_interface_set_rss_queues (vnet_main_t * vnm,
1852                                   vnet_hw_interface_t * hi,
1853                                   clib_bitmap_t * bitmap)
1854 {
1855   clib_error_t *error = 0;
1856   vnet_device_class_t *dev_class =
1857     vnet_get_device_class (vnm, hi->dev_class_index);
1858
1859   if (dev_class->set_rss_queues_function)
1860     {
1861       if (clib_bitmap_count_set_bits (bitmap) == 0)
1862         {
1863           error = clib_error_return (0,
1864                                      "must assign at least one valid rss queue");
1865           goto done;
1866         }
1867
1868       error = dev_class->set_rss_queues_function (vnm, hi, bitmap);
1869     }
1870   else
1871     {
1872       error = clib_error_return (0,
1873                                  "setting rss queues is not supported on this interface");
1874     }
1875
1876   if (!error)
1877     {
1878       clib_bitmap_free (hi->rss_queues);
1879       hi->rss_queues = clib_bitmap_dup (bitmap);
1880     }
1881
1882 done:
1883   if (error)
1884     log_err ("hw_set_rss_queues: %U", format_clib_error, error);
1885   return error;
1886 }
1887
1888 int collect_detailed_interface_stats_flag = 0;
1889
1890 void
1891 collect_detailed_interface_stats_flag_set (void)
1892 {
1893   collect_detailed_interface_stats_flag = 1;
1894 }
1895
1896 void
1897 collect_detailed_interface_stats_flag_clear (void)
1898 {
1899   collect_detailed_interface_stats_flag = 0;
1900 }
1901
1902 static clib_error_t *
1903 collect_detailed_interface_stats_cli (vlib_main_t * vm,
1904                                       unformat_input_t * input,
1905                                       vlib_cli_command_t * cmd)
1906 {
1907   unformat_input_t _line_input, *line_input = &_line_input;
1908   clib_error_t *error = NULL;
1909
1910   /* Get a line of input. */
1911   if (!unformat_user (input, unformat_line_input, line_input))
1912     return clib_error_return (0, "expected enable | disable");
1913
1914   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1915     {
1916       if (unformat (line_input, "enable") || unformat (line_input, "on"))
1917         collect_detailed_interface_stats_flag_set ();
1918       else if (unformat (line_input, "disable")
1919                || unformat (line_input, "off"))
1920         collect_detailed_interface_stats_flag_clear ();
1921       else
1922         {
1923           error = clib_error_return (0, "unknown input `%U'",
1924                                      format_unformat_error, line_input);
1925           goto done;
1926         }
1927     }
1928
1929 done:
1930   unformat_free (line_input);
1931   return error;
1932 }
1933
1934 /* *INDENT-OFF* */
1935 VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = {
1936   .path = "interface collect detailed-stats",
1937   .short_help = "interface collect detailed-stats <enable|disable>",
1938   .function = collect_detailed_interface_stats_cli,
1939 };
1940 /* *INDENT-ON* */
1941
1942 /*
1943  * fd.io coding-style-patch-verification: ON
1944  *
1945  * Local Variables:
1946  * eval: (c-set-style "gnu")
1947  * End:
1948  */