VPP-492: Fix ability to change mac address of the interface
[vpp.git] / vnet / 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/fib/ip6_fib.h>
43 #include <vnet/adj/adj.h>
44
45 #define VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE (1 << 0)
46 #define VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE (1 << 1)
47
48 static clib_error_t *vnet_hw_interface_set_flags_helper (vnet_main_t * vnm,
49                                                          u32 hw_if_index,
50                                                          u32 flags,
51                                                          u32 helper_flags);
52
53 static clib_error_t *vnet_sw_interface_set_flags_helper (vnet_main_t * vnm,
54                                                          u32 sw_if_index,
55                                                          u32 flags,
56                                                          u32 helper_flags);
57
58 static clib_error_t *vnet_hw_interface_set_class_helper (vnet_main_t * vnm,
59                                                          u32 hw_if_index,
60                                                          u32 hw_class_index,
61                                                          u32 redistribute);
62
63 typedef struct
64 {
65   /* Either sw or hw interface index. */
66   u32 sw_hw_if_index;
67
68   /* Flags. */
69   u32 flags;
70 } vnet_sw_hw_interface_state_t;
71
72 static void
73 serialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, va_list * va)
74 {
75   vnet_sw_hw_interface_state_t *s =
76     va_arg (*va, vnet_sw_hw_interface_state_t *);
77   u32 n = va_arg (*va, u32);
78   u32 i;
79   for (i = 0; i < n; i++)
80     {
81       serialize_integer (m, s[i].sw_hw_if_index,
82                          sizeof (s[i].sw_hw_if_index));
83       serialize_integer (m, s[i].flags, sizeof (s[i].flags));
84     }
85 }
86
87 static void
88 unserialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m,
89                                             va_list * va)
90 {
91   vnet_sw_hw_interface_state_t *s =
92     va_arg (*va, vnet_sw_hw_interface_state_t *);
93   u32 n = va_arg (*va, u32);
94   u32 i;
95   for (i = 0; i < n; i++)
96     {
97       unserialize_integer (m, &s[i].sw_hw_if_index,
98                            sizeof (s[i].sw_hw_if_index));
99       unserialize_integer (m, &s[i].flags, sizeof (s[i].flags));
100     }
101 }
102
103 static void
104 serialize_vnet_sw_hw_interface_set_flags (serialize_main_t * m, va_list * va)
105 {
106   vnet_sw_hw_interface_state_t *s =
107     va_arg (*va, vnet_sw_hw_interface_state_t *);
108   serialize (m, serialize_vec_vnet_sw_hw_interface_state, s, 1);
109 }
110
111 static void
112 unserialize_vnet_sw_interface_set_flags (serialize_main_t * m, va_list * va)
113 {
114   CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
115   vnet_sw_hw_interface_state_t s;
116
117   unserialize (m, unserialize_vec_vnet_sw_hw_interface_state, &s, 1);
118
119   vnet_sw_interface_set_flags_helper
120     (vnet_get_main (), s.sw_hw_if_index, s.flags,
121      /* helper_flags no redistribution */ 0);
122 }
123
124 static void
125 unserialize_vnet_hw_interface_set_flags (serialize_main_t * m, va_list * va)
126 {
127   CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
128   vnet_sw_hw_interface_state_t s;
129
130   unserialize (m, unserialize_vec_vnet_sw_hw_interface_state, &s, 1);
131
132   vnet_hw_interface_set_flags_helper
133     (vnet_get_main (), s.sw_hw_if_index, s.flags,
134      /* helper_flags no redistribution */ 0);
135 }
136
137 MC_SERIALIZE_MSG (vnet_sw_interface_set_flags_msg, static) =
138 {
139 .name = "vnet_sw_interface_set_flags",.serialize =
140     serialize_vnet_sw_hw_interface_set_flags,.unserialize =
141     unserialize_vnet_sw_interface_set_flags,};
142
143 MC_SERIALIZE_MSG (vnet_hw_interface_set_flags_msg, static) =
144 {
145 .name = "vnet_hw_interface_set_flags",.serialize =
146     serialize_vnet_sw_hw_interface_set_flags,.unserialize =
147     unserialize_vnet_hw_interface_set_flags,};
148
149 void
150 serialize_vnet_interface_state (serialize_main_t * m, va_list * va)
151 {
152   vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
153   vnet_sw_hw_interface_state_t *sts = 0, *st;
154   vnet_sw_interface_t *sif;
155   vnet_hw_interface_t *hif;
156   vnet_interface_main_t *im = &vnm->interface_main;
157
158   /* Serialize hardware interface classes since they may have changed.
159      Must do this before sending up/down flags. */
160   /* *INDENT-OFF* */
161   pool_foreach (hif, im->hw_interfaces, ({
162     vnet_hw_interface_class_t * hw_class = vnet_get_hw_interface_class (vnm, hif->hw_class_index);
163     serialize_cstring (m, hw_class->name);
164   }));
165   /* *INDENT-ON* */
166
167   /* Send sw/hw interface state when non-zero. */
168   /* *INDENT-OFF* */
169   pool_foreach (sif, im->sw_interfaces, ({
170     if (sif->flags != 0)
171       {
172         vec_add2 (sts, st, 1);
173         st->sw_hw_if_index = sif->sw_if_index;
174         st->flags = sif->flags;
175       }
176   }));
177   /* *INDENT-ON* */
178
179   vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
180
181   if (sts)
182     _vec_len (sts) = 0;
183
184   /* *INDENT-OFF* */
185   pool_foreach (hif, im->hw_interfaces, ({
186     if (hif->flags != 0)
187       {
188         vec_add2 (sts, st, 1);
189         st->sw_hw_if_index = hif->hw_if_index;
190         st->flags = hif->flags;
191       }
192   }));
193   /* *INDENT-ON* */
194
195   vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
196
197   vec_free (sts);
198 }
199
200 void
201 unserialize_vnet_interface_state (serialize_main_t * m, va_list * va)
202 {
203   vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
204   vnet_sw_hw_interface_state_t *sts = 0, *st;
205
206   /* First set interface hardware class. */
207   {
208     vnet_interface_main_t *im = &vnm->interface_main;
209     vnet_hw_interface_t *hif;
210     char *class_name;
211     uword *p;
212     clib_error_t *error;
213
214     /* *INDENT-OFF* */
215     pool_foreach (hif, im->hw_interfaces, ({
216       unserialize_cstring (m, &class_name);
217       p = hash_get_mem (im->hw_interface_class_by_name, class_name);
218       ASSERT (p != 0);
219       error = vnet_hw_interface_set_class_helper (vnm, hif->hw_if_index, p[0], /* redistribute */ 0);
220       if (error)
221         clib_error_report (error);
222       vec_free (class_name);
223     }));
224     /* *INDENT-ON* */
225   }
226
227   vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
228   vec_foreach (st, sts)
229     vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
230                                         /* no distribute */ 0);
231   vec_free (sts);
232
233   vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
234   vec_foreach (st, sts)
235     vnet_hw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
236                                         /* no distribute */ 0);
237   vec_free (sts);
238 }
239
240 static clib_error_t *
241 call_elf_section_interface_callbacks (vnet_main_t * vnm, u32 if_index,
242                                       u32 flags,
243                                       _vnet_interface_function_list_elt_t *
244                                       elt)
245 {
246   clib_error_t *error = 0;
247
248   while (elt)
249     {
250       error = elt->fp (vnm, if_index, flags);
251       if (error)
252         return error;
253       elt = elt->next_interface_function;
254     }
255   return error;
256 }
257
258 static clib_error_t *
259 call_hw_interface_add_del_callbacks (vnet_main_t * vnm, u32 hw_if_index,
260                                      u32 is_create)
261 {
262   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
263   vnet_hw_interface_class_t *hw_class =
264     vnet_get_hw_interface_class (vnm, hi->hw_class_index);
265   vnet_device_class_t *dev_class =
266     vnet_get_device_class (vnm, hi->dev_class_index);
267   clib_error_t *error = 0;
268
269   if (hw_class->interface_add_del_function
270       && (error =
271           hw_class->interface_add_del_function (vnm, hw_if_index, is_create)))
272     return error;
273
274   if (dev_class->interface_add_del_function
275       && (error =
276           dev_class->interface_add_del_function (vnm, hw_if_index,
277                                                  is_create)))
278     return error;
279
280   error = call_elf_section_interface_callbacks
281     (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions);
282
283   return error;
284 }
285
286 static clib_error_t *
287 call_sw_interface_add_del_callbacks (vnet_main_t * vnm, u32 sw_if_index,
288                                      u32 is_create)
289 {
290   return call_elf_section_interface_callbacks
291     (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions);
292 }
293
294 #define VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE (1 << 0)
295 #define VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE (1 << 1)
296
297 static clib_error_t *
298 vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, u32 hw_if_index,
299                                     u32 flags, u32 helper_flags)
300 {
301   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
302   vnet_hw_interface_class_t *hw_class =
303     vnet_get_hw_interface_class (vnm, hi->hw_class_index);
304   vnet_device_class_t *dev_class =
305     vnet_get_device_class (vnm, hi->dev_class_index);
306   vlib_main_t *vm = vnm->vlib_main;
307   u32 mask;
308   clib_error_t *error = 0;
309   u32 is_create =
310     (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
311
312   mask =
313     (VNET_HW_INTERFACE_FLAG_LINK_UP | VNET_HW_INTERFACE_FLAG_DUPLEX_MASK |
314      VNET_HW_INTERFACE_FLAG_SPEED_MASK);
315   flags &= mask;
316
317   /* Call hardware interface add/del callbacks. */
318   if (is_create)
319     call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create);
320
321   /* Already in the desired state? */
322   if (!is_create && (hi->flags & mask) == flags)
323     goto done;
324
325   /* Some interface classes do not redistribute (e.g. are local). */
326   if (!dev_class->redistribute)
327     helper_flags &= ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
328
329   if (vm->mc_main
330       && (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE))
331     {
332       vnet_sw_hw_interface_state_t s;
333       s.sw_hw_if_index = hw_if_index;
334       s.flags = flags;
335       mc_serialize (vm->mc_main, &vnet_hw_interface_set_flags_msg, &s);
336     }
337
338   if ((hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) !=
339       (flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
340     {
341       /* Do hardware class (e.g. ethernet). */
342       if (hw_class->link_up_down_function
343           && (error = hw_class->link_up_down_function (vnm, hw_if_index,
344                                                        flags)))
345         goto done;
346
347       error = call_elf_section_interface_callbacks
348         (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions);
349
350       if (error)
351         goto done;
352     }
353
354   hi->flags &= ~mask;
355   hi->flags |= flags;
356
357 done:
358   return error;
359 }
360
361 static clib_error_t *
362 vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, u32 sw_if_index,
363                                     u32 flags, u32 helper_flags)
364 {
365   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
366   vlib_main_t *vm = vnm->vlib_main;
367   u32 mask;
368   clib_error_t *error = 0;
369   u32 is_create =
370     (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
371   u32 old_flags;
372
373   mask = VNET_SW_INTERFACE_FLAG_ADMIN_UP | VNET_SW_INTERFACE_FLAG_PUNT;
374   flags &= mask;
375
376   if (is_create)
377     {
378       error =
379         call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create);
380       if (error)
381         goto done;
382
383       if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
384         {
385           /* Notify everyone when the interface is created as admin up */
386           error = call_elf_section_interface_callbacks (vnm, sw_if_index,
387                                                         flags,
388                                                         vnm->
389                                                         sw_interface_admin_up_down_functions);
390           if (error)
391             goto done;
392         }
393     }
394   else
395     {
396       vnet_sw_interface_t *si_sup = si;
397
398       /* Check that super interface is in correct state. */
399       if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
400         {
401           si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index);
402
403           /* Check to see if we're bringing down the soft interface and if it's parent is up */
404           if ((flags != (si_sup->flags & mask)) &&
405               (!((flags == 0)
406                  && ((si_sup->flags & mask) ==
407                      VNET_SW_INTERFACE_FLAG_ADMIN_UP))))
408             {
409               error = clib_error_return (0, "super-interface %U must be %U",
410                                          format_vnet_sw_interface_name, vnm,
411                                          si_sup,
412                                          format_vnet_sw_interface_flags,
413                                          flags);
414               goto done;
415             }
416         }
417
418       /* Donot change state for slave link of bonded interfaces */
419       if (si->flags & VNET_SW_INTERFACE_FLAG_BOND_SLAVE)
420         {
421           error = clib_error_return
422             (0, "not allowed as %U belong to a BondEthernet interface",
423              format_vnet_sw_interface_name, vnm, si);
424           goto done;
425         }
426
427       /* Already in the desired state? */
428       if ((si->flags & mask) == flags)
429         goto done;
430
431       /* Sub-interfaces of hardware interfaces that do no redistribute,
432          do not redistribute themselves. */
433       if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
434         {
435           vnet_hw_interface_t *hi =
436             vnet_get_hw_interface (vnm, si_sup->hw_if_index);
437           vnet_device_class_t *dev_class =
438             vnet_get_device_class (vnm, hi->dev_class_index);
439           if (!dev_class->redistribute)
440             helper_flags &=
441               ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
442         }
443
444       if (vm->mc_main
445           && (helper_flags &
446               VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE))
447         {
448           vnet_sw_hw_interface_state_t s;
449           s.sw_hw_if_index = sw_if_index;
450           s.flags = flags;
451           mc_serialize (vm->mc_main, &vnet_sw_interface_set_flags_msg, &s);
452         }
453
454       /* set the flags now before invoking the registered clients
455        * so that the state they query is consistent with the state here notified */
456       old_flags = si->flags;
457       si->flags &= ~mask;
458       si->flags |= flags;
459       if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
460         error = call_elf_section_interface_callbacks
461           (vnm, sw_if_index, flags,
462            vnm->sw_interface_admin_up_down_functions);
463       si->flags = old_flags;
464
465       if (error)
466         goto done;
467
468       if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
469         {
470           vnet_hw_interface_t *hi =
471             vnet_get_hw_interface (vnm, si->hw_if_index);
472           vnet_hw_interface_class_t *hw_class =
473             vnet_get_hw_interface_class (vnm, hi->hw_class_index);
474           vnet_device_class_t *dev_class =
475             vnet_get_device_class (vnm, hi->dev_class_index);
476
477           /* save the si admin up flag */
478           old_flags = si->flags;
479
480           /* update si admin up flag in advance if we are going admin down */
481           if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
482             si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
483
484           if (dev_class->admin_up_down_function
485               && (error = dev_class->admin_up_down_function (vnm,
486                                                              si->hw_if_index,
487                                                              flags)))
488             {
489               /* restore si admin up flag to it's original state on errors */
490               si->flags = old_flags;
491               goto done;
492             }
493
494           if (hw_class->admin_up_down_function
495               && (error = hw_class->admin_up_down_function (vnm,
496                                                             si->hw_if_index,
497                                                             flags)))
498             {
499               /* restore si admin up flag to it's original state on errors */
500               si->flags = old_flags;
501               goto done;
502             }
503
504           /* Admin down implies link down. */
505           if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
506               && (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
507             vnet_hw_interface_set_flags_helper (vnm, si->hw_if_index,
508                                                 hi->flags &
509                                                 ~VNET_HW_INTERFACE_FLAG_LINK_UP,
510                                                 helper_flags);
511         }
512     }
513
514   si->flags &= ~mask;
515   si->flags |= flags;
516
517 done:
518   return error;
519 }
520
521 clib_error_t *
522 vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
523 {
524   return vnet_hw_interface_set_flags_helper
525     (vnm, hw_if_index, flags,
526      VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
527 }
528
529 clib_error_t *
530 vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
531 {
532   return vnet_sw_interface_set_flags_helper
533     (vnm, sw_if_index, flags,
534      VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
535 }
536
537 static u32
538 vnet_create_sw_interface_no_callbacks (vnet_main_t * vnm,
539                                        vnet_sw_interface_t * template)
540 {
541   vnet_interface_main_t *im = &vnm->interface_main;
542   vnet_sw_interface_t *sw;
543   u32 sw_if_index;
544
545   pool_get (im->sw_interfaces, sw);
546   sw_if_index = sw - im->sw_interfaces;
547
548   sw[0] = template[0];
549
550   sw->flags = 0;
551   sw->sw_if_index = sw_if_index;
552   if (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
553     sw->sup_sw_if_index = sw->sw_if_index;
554
555   /* Allocate counters for this interface. */
556   {
557     u32 i;
558
559     vnet_interface_counter_lock (im);
560
561     for (i = 0; i < vec_len (im->sw_if_counters); i++)
562       {
563         vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index);
564         vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index);
565       }
566
567     for (i = 0; i < vec_len (im->combined_sw_if_counters); i++)
568       {
569         vlib_validate_combined_counter (&im->combined_sw_if_counters[i],
570                                         sw_if_index);
571         vlib_zero_combined_counter (&im->combined_sw_if_counters[i],
572                                     sw_if_index);
573       }
574
575     vnet_interface_counter_unlock (im);
576   }
577
578   return sw_if_index;
579 }
580
581 clib_error_t *
582 vnet_create_sw_interface (vnet_main_t * vnm, vnet_sw_interface_t * template,
583                           u32 * sw_if_index)
584 {
585   clib_error_t *error;
586   vnet_hw_interface_t *hi;
587   vnet_device_class_t *dev_class;
588
589   hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index);
590   dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
591
592   if (template->type == VNET_SW_INTERFACE_TYPE_SUB &&
593       dev_class->subif_add_del_function)
594     {
595       error = dev_class->subif_add_del_function (vnm, hi->hw_if_index,
596                                                  (struct vnet_sw_interface_t
597                                                   *) template, 1);
598       if (error)
599         return error;
600     }
601
602   *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template);
603   error = vnet_sw_interface_set_flags_helper
604     (vnm, *sw_if_index, template->flags,
605      VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
606
607   if (error)
608     {
609       /* undo the work done by vnet_create_sw_interface_no_callbacks() */
610       vnet_interface_main_t *im = &vnm->interface_main;
611       vnet_sw_interface_t *sw =
612         pool_elt_at_index (im->sw_interfaces, *sw_if_index);
613       pool_put (im->sw_interfaces, sw);
614     }
615
616   return error;
617 }
618
619 void
620 vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
621 {
622   vnet_interface_main_t *im = &vnm->interface_main;
623   vnet_sw_interface_t *sw =
624     pool_elt_at_index (im->sw_interfaces, sw_if_index);
625
626   /* Bring down interface in case it is up. */
627   if (sw->flags != 0)
628     vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
629
630   call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
631
632   pool_put (im->sw_interfaces, sw);
633 }
634
635 static void
636 setup_tx_node (vlib_main_t * vm,
637                u32 node_index, vnet_device_class_t * dev_class)
638 {
639   vlib_node_t *n = vlib_get_node (vm, node_index);
640
641   n->function = dev_class->tx_function;
642   n->format_trace = dev_class->format_tx_trace;
643
644   vlib_register_errors (vm, node_index,
645                         dev_class->tx_function_n_errors,
646                         dev_class->tx_function_error_strings);
647 }
648
649 static void
650 setup_output_node (vlib_main_t * vm,
651                    u32 node_index, vnet_hw_interface_class_t * hw_class)
652 {
653   vlib_node_t *n = vlib_get_node (vm, node_index);
654   n->format_buffer = hw_class->format_header;
655   n->unformat_buffer = hw_class->unformat_header;
656 }
657
658 /* Register an interface instance. */
659 u32
660 vnet_register_interface (vnet_main_t * vnm,
661                          u32 dev_class_index,
662                          u32 dev_instance,
663                          u32 hw_class_index, u32 hw_instance)
664 {
665   vnet_interface_main_t *im = &vnm->interface_main;
666   vnet_hw_interface_t *hw;
667   vnet_device_class_t *dev_class =
668     vnet_get_device_class (vnm, dev_class_index);
669   vnet_hw_interface_class_t *hw_class =
670     vnet_get_hw_interface_class (vnm, hw_class_index);
671   vlib_main_t *vm = vnm->vlib_main;
672   u32 hw_index;
673   char *tx_node_name, *output_node_name;
674
675   pool_get (im->hw_interfaces, hw);
676
677   hw_index = hw - im->hw_interfaces;
678   hw->hw_if_index = hw_index;
679
680   if (dev_class->format_device_name)
681     hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
682   else if (hw_class->format_interface_name)
683     hw->name = format (0, "%U", hw_class->format_interface_name,
684                        dev_instance);
685   else
686     hw->name = format (0, "%s%x", hw_class->name, dev_instance);
687
688   if (!im->hw_interface_by_name)
689     im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
690                                                 sizeof (hw->name[0]),
691                                                 sizeof (uword));
692
693   hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
694
695   /* Make hardware interface point to software interface. */
696   {
697     vnet_sw_interface_t sw;
698
699     memset (&sw, 0, sizeof (sw));
700     sw.type = VNET_SW_INTERFACE_TYPE_HARDWARE;
701     sw.hw_if_index = hw_index;
702     hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw);
703   }
704
705   hw->dev_class_index = dev_class_index;
706   hw->dev_instance = dev_instance;
707   hw->hw_class_index = hw_class_index;
708   hw->hw_instance = hw_instance;
709
710   hw->max_rate_bits_per_sec = 0;
711   hw->min_packet_bytes = 0;
712   hw->per_packet_overhead_bytes = 0;
713   hw->max_l3_packet_bytes[VLIB_RX] = ~0;
714   hw->max_l3_packet_bytes[VLIB_TX] = ~0;
715
716   tx_node_name = (char *) format (0, "%v-tx", hw->name);
717   output_node_name = (char *) format (0, "%v-output", hw->name);
718
719   /* If we have previously deleted interface nodes, re-use them. */
720   if (vec_len (im->deleted_hw_interface_nodes) > 0)
721     {
722       vnet_hw_interface_nodes_t *hn;
723       vnet_interface_output_runtime_t *rt;
724
725       hn = vec_end (im->deleted_hw_interface_nodes) - 1;
726
727       hw->tx_node_index = hn->tx_node_index;
728       hw->output_node_index = hn->output_node_index;
729
730       vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name);
731       vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name);
732
733       rt = vlib_node_get_runtime_data (vm, hw->output_node_index);
734       ASSERT (rt->is_deleted == 1);
735       rt->is_deleted = 0;
736       rt->hw_if_index = hw_index;
737       rt->sw_if_index = hw->sw_if_index;
738       rt->dev_instance = hw->dev_instance;
739
740       rt = vlib_node_get_runtime_data (vm, hw->tx_node_index);
741       rt->hw_if_index = hw_index;
742       rt->sw_if_index = hw->sw_if_index;
743       rt->dev_instance = hw->dev_instance;
744
745       vlib_worker_thread_node_runtime_update ();
746       _vec_len (im->deleted_hw_interface_nodes) -= 1;
747     }
748   else
749     {
750       vlib_node_registration_t r;
751       vnet_interface_output_runtime_t rt = {
752         .hw_if_index = hw_index,
753         .sw_if_index = hw->sw_if_index,
754         .dev_instance = hw->dev_instance,
755         .is_deleted = 0,
756       };
757
758       memset (&r, 0, sizeof (r));
759       r.type = VLIB_NODE_TYPE_INTERNAL;
760       r.runtime_data = &rt;
761       r.runtime_data_bytes = sizeof (rt);
762       r.scalar_size = 0;
763       r.vector_size = sizeof (u32);
764
765       r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
766       r.name = tx_node_name;
767       r.function = dev_class->tx_function;
768
769       hw->tx_node_index = vlib_register_node (vm, &r);
770
771       vlib_node_add_named_next_with_slot (vm, hw->tx_node_index,
772                                           "error-drop",
773                                           VNET_INTERFACE_TX_NEXT_DROP);
774
775       r.flags = 0;
776       r.name = output_node_name;
777       r.function = dev_class->no_flatten_output_chains ?
778         vnet_interface_output_node_no_flatten_multiarch_select () :
779         vnet_interface_output_node_multiarch_select ();
780       r.format_trace = format_vnet_interface_output_trace;
781
782       {
783         static char *e[] = {
784           "interface is down",
785           "interface is deleted",
786         };
787
788         r.n_errors = ARRAY_LEN (e);
789         r.error_strings = e;
790       }
791       hw->output_node_index = vlib_register_node (vm, &r);
792
793 #define _(sym,str) vlib_node_add_named_next_with_slot (vm, \
794                      hw->output_node_index, str,           \
795                      VNET_INTERFACE_OUTPUT_NEXT_##sym);
796       foreach_intf_output_feat
797 #undef _
798         vlib_node_add_named_next_with_slot (vm, hw->output_node_index,
799                                             "error-drop",
800                                             VNET_INTERFACE_OUTPUT_NEXT_DROP);
801       vlib_node_add_next_with_slot (vm, hw->output_node_index,
802                                     hw->tx_node_index,
803                                     VNET_INTERFACE_OUTPUT_NEXT_TX);
804     }
805
806   setup_output_node (vm, hw->output_node_index, hw_class);
807   setup_tx_node (vm, hw->tx_node_index, dev_class);
808
809   /* Call all up/down callbacks with zero flags when interface is created. */
810   vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
811                                       VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
812   vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
813                                       VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
814
815   return hw_index;
816 }
817
818 void
819 vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
820 {
821   vnet_interface_main_t *im = &vnm->interface_main;
822   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
823   vlib_main_t *vm = vnm->vlib_main;
824
825   /* If it is up, mark it down. */
826   if (hw->flags != 0)
827     vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
828
829   /* Call delete callbacks. */
830   call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
831
832   /* Delete software interface corresponding to hardware interface. */
833   vnet_delete_sw_interface (vnm, hw->sw_if_index);
834
835   /* Delete any sub-interfaces. */
836   {
837     u32 id, sw_if_index;
838     /* *INDENT-OFF* */
839     hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id, ({
840       vnet_delete_sw_interface (vnm, sw_if_index);
841     }));
842     /* *INDENT-ON* */
843   }
844
845   {
846     vnet_hw_interface_nodes_t *dn;
847     vnet_interface_output_runtime_t *rt =
848       vlib_node_get_runtime_data (vm, hw->output_node_index);
849
850     /* Mark node runtime as deleted so output node (if called) will drop packets. */
851     rt->is_deleted = 1;
852
853     vlib_node_rename (vm, hw->output_node_index,
854                       "interface-%d-output-deleted", hw_if_index);
855     vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
856                       hw_if_index);
857     vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
858     dn->tx_node_index = hw->tx_node_index;
859     dn->output_node_index = hw->output_node_index;
860   }
861
862   hash_unset_mem (im->hw_interface_by_name, hw->name);
863   vec_free (hw->name);
864
865   pool_put (im->hw_interfaces, hw);
866 }
867
868 static void
869 serialize_vnet_hw_interface_set_class (serialize_main_t * m, va_list * va)
870 {
871   u32 hw_if_index = va_arg (*va, u32);
872   char *hw_class_name = va_arg (*va, char *);
873   serialize_integer (m, hw_if_index, sizeof (hw_if_index));
874   serialize_cstring (m, hw_class_name);
875 }
876
877 static void
878 unserialize_vnet_hw_interface_set_class (serialize_main_t * m, va_list * va)
879 {
880   CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
881   vnet_main_t *vnm = vnet_get_main ();
882   u32 hw_if_index;
883   char *hw_class_name;
884   uword *p;
885   clib_error_t *error;
886
887   unserialize_integer (m, &hw_if_index, sizeof (hw_if_index));
888   unserialize_cstring (m, &hw_class_name);
889   p =
890     hash_get (vnm->interface_main.hw_interface_class_by_name, hw_class_name);
891   ASSERT (p != 0);
892   error = vnet_hw_interface_set_class_helper (vnm, hw_if_index, p[0],
893                                               /* redistribute */ 0);
894   if (error)
895     clib_error_report (error);
896 }
897
898 MC_SERIALIZE_MSG (vnet_hw_interface_set_class_msg, static) =
899 {
900 .name = "vnet_hw_interface_set_class",.serialize =
901     serialize_vnet_hw_interface_set_class,.unserialize =
902     unserialize_vnet_hw_interface_set_class,};
903
904 void
905 vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
906                                   u32 hw_class_index, u32 hw_instance)
907 {
908   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
909   vnet_hw_interface_class_t *hc =
910     vnet_get_hw_interface_class (vnm, hw_class_index);
911
912   hi->hw_class_index = hw_class_index;
913   hi->hw_instance = hw_instance;
914   setup_output_node (vnm->vlib_main, hi->output_node_index, hc);
915 }
916
917 static clib_error_t *
918 vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index,
919                                     u32 hw_class_index, u32 redistribute)
920 {
921   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
922   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index);
923   vnet_hw_interface_class_t *old_class =
924     vnet_get_hw_interface_class (vnm, hi->hw_class_index);
925   vnet_hw_interface_class_t *new_class =
926     vnet_get_hw_interface_class (vnm, hw_class_index);
927   vnet_device_class_t *dev_class =
928     vnet_get_device_class (vnm, hi->dev_class_index);
929   clib_error_t *error = 0;
930
931   /* New class equals old class?  Nothing to do. */
932   if (hi->hw_class_index == hw_class_index)
933     return 0;
934
935   /* No need (and incorrect since admin up flag may be set) to do error checking when
936      receiving unserialize message. */
937   if (redistribute)
938     {
939       if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
940         return clib_error_return (0,
941                                   "%v must be admin down to change class from %s to %s",
942                                   hi->name, old_class->name, new_class->name);
943
944       /* Make sure interface supports given class. */
945       if ((new_class->is_valid_class_for_interface
946            && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
947                                                         hw_class_index))
948           || (dev_class->is_valid_class_for_interface
949               && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
950                                                            hw_class_index)))
951         return clib_error_return (0,
952                                   "%v class cannot be changed from %s to %s",
953                                   hi->name, old_class->name, new_class->name);
954
955       if (vnm->vlib_main->mc_main)
956         {
957           mc_serialize (vnm->vlib_main->mc_main,
958                         &vnet_hw_interface_set_class_msg, hw_if_index,
959                         new_class->name);
960           return 0;
961         }
962     }
963
964   if (old_class->hw_class_change)
965     old_class->hw_class_change (vnm, hw_if_index, old_class->index,
966                                 new_class->index);
967
968   vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
969                                     /* instance */ ~0);
970
971   if (new_class->hw_class_change)
972     new_class->hw_class_change (vnm, hw_if_index, old_class->index,
973                                 new_class->index);
974
975   if (dev_class->hw_class_change)
976     dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
977
978   return error;
979 }
980
981 clib_error_t *
982 vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
983                              u32 hw_class_index)
984 {
985   return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
986                                              /* redistribute */ 1);
987 }
988
989 static int
990 vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm,
991                                               u32 hw_if_index,
992                                               u32 node_index,
993                                               u32 redistribute)
994 {
995   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
996   vnet_device_class_t *dev_class = vnet_get_device_class
997     (vnm, hi->dev_class_index);
998
999   if (redistribute)
1000     {
1001       /* $$$$ fixme someday maybe */
1002       ASSERT (vnm->vlib_main->mc_main == 0);
1003     }
1004   if (dev_class->rx_redirect_to_node)
1005     {
1006       dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1007       return 0;
1008     }
1009
1010   return VNET_API_ERROR_UNIMPLEMENTED;
1011 }
1012
1013 int
1014 vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
1015                                        u32 node_index)
1016 {
1017   return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1018                                                        node_index,
1019                                                        1 /* redistribute */ );
1020 }
1021
1022 word
1023 vnet_sw_interface_compare (vnet_main_t * vnm,
1024                            uword sw_if_index0, uword sw_if_index1)
1025 {
1026   vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1027   vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1028   vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index);
1029   vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index);
1030
1031   if (h0 != h1)
1032     return vec_cmp (h0->name, h1->name);
1033   return (word) h0->hw_instance - (word) h1->hw_instance;
1034 }
1035
1036 word
1037 vnet_hw_interface_compare (vnet_main_t * vnm,
1038                            uword hw_if_index0, uword hw_if_index1)
1039 {
1040   vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1041   vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
1042
1043   if (h0 != h1)
1044     return vec_cmp (h0->name, h1->name);
1045   return (word) h0->hw_instance - (word) h1->hw_instance;
1046 }
1047
1048 int
1049 vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
1050 {
1051   vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1052   vnet_hw_interface_class_t *hc =
1053     vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1054
1055   return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1056 }
1057
1058 clib_error_t *
1059 vnet_interface_init (vlib_main_t * vm)
1060 {
1061   vnet_main_t *vnm = vnet_get_main ();
1062   vnet_interface_main_t *im = &vnm->interface_main;
1063   vlib_buffer_t *b = 0;
1064   vnet_buffer_opaque_t *o = 0;
1065
1066   /*
1067    * Keep people from shooting themselves in the foot.
1068    */
1069   if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
1070     {
1071 #define _(a) if (sizeof(o->a) > sizeof (o->unused))                     \
1072       clib_warning                                                      \
1073         ("FATAL: size of opaque union subtype %s is %d (max %d)",       \
1074          #a, sizeof(o->a), sizeof (o->unused));
1075       foreach_buffer_opaque_union_subtype;
1076 #undef _
1077
1078       return clib_error_return
1079         (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1080          sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
1081     }
1082
1083   im->sw_if_counter_lock = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
1084                                                    CLIB_CACHE_LINE_BYTES);
1085   im->sw_if_counter_lock[0] = 1;        /* should be no need */
1086
1087   vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1);
1088   im->sw_if_counters[VNET_INTERFACE_COUNTER_DROP].name = "drops";
1089   im->sw_if_counters[VNET_INTERFACE_COUNTER_PUNT].name = "punts";
1090   im->sw_if_counters[VNET_INTERFACE_COUNTER_IP4].name = "ip4";
1091   im->sw_if_counters[VNET_INTERFACE_COUNTER_IP6].name = "ip6";
1092   im->sw_if_counters[VNET_INTERFACE_COUNTER_RX_NO_BUF].name = "rx-no-buf";
1093   im->sw_if_counters[VNET_INTERFACE_COUNTER_RX_MISS].name = "rx-miss";
1094   im->sw_if_counters[VNET_INTERFACE_COUNTER_RX_ERROR].name = "rx-error";
1095   im->sw_if_counters[VNET_INTERFACE_COUNTER_TX_ERROR].name = "tx-error";
1096
1097   vec_validate (im->combined_sw_if_counters,
1098                 VNET_N_COMBINED_INTERFACE_COUNTER - 1);
1099   im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_RX].name = "rx";
1100   im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX].name = "tx";
1101
1102   im->sw_if_counter_lock[0] = 0;
1103
1104   im->device_class_by_name = hash_create_string ( /* size */ 0,
1105                                                  sizeof (uword));
1106   {
1107     vnet_device_class_t *c;
1108
1109     c = vnm->device_class_registrations;
1110
1111     while (c)
1112       {
1113         c->index = vec_len (im->device_classes);
1114         hash_set_mem (im->device_class_by_name, c->name, c->index);
1115         vec_add1 (im->device_classes, c[0]);
1116         c = c->next_class_registration;
1117       }
1118   }
1119
1120   im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
1121                                                        sizeof (uword));
1122
1123   im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1124                                                     sizeof (uword));
1125   {
1126     vnet_hw_interface_class_t *c;
1127
1128     c = vnm->hw_interface_class_registrations;
1129
1130     while (c)
1131       {
1132         c->index = vec_len (im->hw_interface_classes);
1133         hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
1134
1135         if (NULL == c->build_rewrite)
1136           c->build_rewrite = default_build_rewrite;
1137         if (NULL == c->update_adjacency)
1138           c->update_adjacency = default_update_adjacency;
1139
1140         vec_add1 (im->hw_interface_classes, c[0]);
1141         c = c->next_class_registration;
1142       }
1143   }
1144
1145   {
1146     clib_error_t *error;
1147
1148     if ((error = vlib_call_init_function (vm, vnet_interface_cli_init)))
1149       return error;
1150
1151     return error;
1152   }
1153 }
1154
1155 VLIB_INIT_FUNCTION (vnet_interface_init);
1156
1157 /* Kludge to renumber interface names [only!] */
1158 int
1159 vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance)
1160 {
1161   int rv;
1162   vnet_main_t *vnm = vnet_get_main ();
1163   vnet_interface_main_t *im = &vnm->interface_main;
1164   vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1165
1166   vnet_device_class_t *dev_class = vnet_get_device_class
1167     (vnm, hi->dev_class_index);
1168
1169   if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
1170     return VNET_API_ERROR_UNIMPLEMENTED;
1171
1172   rv = dev_class->name_renumber (hi, new_show_dev_instance);
1173
1174   if (rv)
1175     return rv;
1176
1177   hash_unset_mem (im->hw_interface_by_name, hi->name);
1178   vec_free (hi->name);
1179   /* Use the mapping we set up to call it Ishmael */
1180   hi->name = format (0, "%U", dev_class->format_device_name,
1181                      hi->dev_instance);
1182
1183   hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index);
1184   return rv;
1185 }
1186
1187 int
1188 vnet_interface_add_del_feature (vnet_main_t * vnm,
1189                                 vlib_main_t * vm,
1190                                 u32 sw_if_index,
1191                                 intf_output_feat_t feature, int is_add)
1192 {
1193   vnet_sw_interface_t *sw;
1194
1195   sw = vnet_get_sw_interface (vnm, sw_if_index);
1196
1197   if (is_add)
1198     {
1199
1200       sw->output_feature_bitmap |= (1 << feature);
1201       sw->output_feature_bitmap |= (1 << INTF_OUTPUT_FEAT_DONE);
1202
1203     }
1204   else
1205     {                           /* delete */
1206
1207       sw->output_feature_bitmap &= ~(1 << feature);
1208       if (sw->output_feature_bitmap == (1 << INTF_OUTPUT_FEAT_DONE))
1209         sw->output_feature_bitmap = 0;
1210
1211     }
1212   return 0;
1213 }
1214
1215 clib_error_t *
1216 vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
1217 {
1218   vnet_interface_main_t *im = &vnm->interface_main;
1219   vlib_main_t *vm = vnm->vlib_main;
1220   vnet_hw_interface_t *hw;
1221   u8 *old_name;
1222   clib_error_t *error = 0;
1223
1224   hw = vnet_get_hw_interface (vnm, hw_if_index);
1225   if (!hw)
1226     {
1227       return clib_error_return (0,
1228                                 "unable to find hw interface for index %u",
1229                                 hw_if_index);
1230     }
1231
1232   old_name = hw->name;
1233
1234   /* set new hw->name */
1235   hw->name = format (0, "%s", new_name);
1236
1237   /* remove the old name to hw_if_index mapping and install the new one */
1238   hash_unset_mem (im->hw_interface_by_name, old_name);
1239   hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1240
1241   /* rename tx/output nodes */
1242   vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1243   vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1244
1245   /* free the old name vector */
1246   vec_free (old_name);
1247
1248   return error;
1249 }
1250
1251 static clib_error_t *
1252 vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm,
1253                                              u32 hw_if_index, u64 mac_address)
1254 {
1255   clib_error_t *error = 0;
1256   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1257
1258   if (hi->hw_address)
1259     {
1260       vnet_device_class_t *dev_class =
1261         vnet_get_device_class (vnm, hi->dev_class_index);
1262       if (dev_class->mac_addr_change_function)
1263         {
1264           error =
1265             dev_class->mac_addr_change_function (vnet_get_hw_interface
1266                                                  (vnm, hw_if_index),
1267                                                  (char *) &mac_address);
1268         }
1269       if (!error)
1270         {
1271           ethernet_main_t *em = &ethernet_main;
1272           ethernet_interface_t *ei =
1273             pool_elt_at_index (em->interfaces, hi->hw_instance);
1274
1275           vec_validate (hi->hw_address,
1276                         STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1);
1277           clib_memcpy (hi->hw_address, &mac_address,
1278                        vec_len (hi->hw_address));
1279
1280           clib_memcpy (ei->address, (u8 *) & mac_address,
1281                        sizeof (ei->address));
1282           ethernet_arp_change_mac (vnm, hw_if_index);
1283           ethernet_ndp_change_mac (vnm->vlib_main, hw_if_index);
1284         }
1285       else
1286         {
1287           error =
1288             clib_error_return (0,
1289                                "MAC Address Change is not supported on this interface");
1290         }
1291     }
1292   else
1293     {
1294       error =
1295         clib_error_return (0,
1296                            "mac address change is not supported for interface index %u",
1297                            hw_if_index);
1298     }
1299   return error;
1300 }
1301
1302 clib_error_t *
1303 vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index,
1304                                       u64 mac_address)
1305 {
1306   return vnet_hw_interface_change_mac_address_helper
1307     (vnm, hw_if_index, mac_address);
1308 }
1309
1310 vnet_l3_packet_type_t
1311 vnet_link_to_l3_proto (vnet_link_t link)
1312 {
1313   switch (link)
1314     {
1315     case VNET_LINK_IP4:
1316       return (VNET_L3_PACKET_TYPE_IP4);
1317     case VNET_LINK_IP6:
1318       return (VNET_L3_PACKET_TYPE_IP6);
1319     case VNET_LINK_MPLS:
1320       return (VNET_L3_PACKET_TYPE_MPLS_UNICAST);
1321     case VNET_LINK_ARP:
1322       return (VNET_L3_PACKET_TYPE_ARP);
1323     case VNET_LINK_ETHERNET:
1324       ASSERT (0);
1325       break;
1326     }
1327   ASSERT (0);
1328   return (0);
1329 }
1330
1331 u8 *
1332 default_build_rewrite (vnet_main_t * vnm,
1333                        u32 sw_if_index,
1334                        vnet_link_t link_type, const void *dst_address)
1335 {
1336   return (NULL);
1337 }
1338
1339 void
1340 default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
1341 {
1342   u8 *rewrite;
1343
1344   rewrite = vnet_build_rewrite_for_sw_interface (vnm, sw_if_index,
1345                                                  adj_get_link_type (ai),
1346                                                  NULL);
1347
1348   adj_nbr_update_rewrite (ai, ADJ_NBR_REWRITE_FLAG_COMPLETE, rewrite);
1349 }
1350
1351
1352 /*
1353  * fd.io coding-style-patch-verification: ON
1354  *
1355  * Local Variables:
1356  * eval: (c-set-style "gnu")
1357  * End:
1358  */