Revert "MTU: Setting of MTU on software interface (instead of hardware interface)"
[vpp.git] / src / vnet / ethernet / 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  * ethernet_interface.c: ethernet 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/ip/ip.h>
42 #include <vnet/pg/pg.h>
43 #include <vnet/ethernet/ethernet.h>
44 #include <vnet/l2/l2_input.h>
45 #include <vnet/adj/adj.h>
46
47 /**
48  * @file
49  * @brief Loopback Interfaces.
50  *
51  * This file contains code to manage loopback interfaces.
52  */
53
54 const u8 *
55 ethernet_ip4_mcast_dst_addr (void)
56 {
57   const static u8 ethernet_mcast_dst_mac[] = {
58     0x1, 0x0, 0x5e, 0x0, 0x0, 0x0,
59   };
60
61   return (ethernet_mcast_dst_mac);
62 }
63
64 const u8 *
65 ethernet_ip6_mcast_dst_addr (void)
66 {
67   const static u8 ethernet_mcast_dst_mac[] = {
68     0x33, 0x33, 0x00, 0x0, 0x0, 0x0,
69   };
70
71   return (ethernet_mcast_dst_mac);
72 }
73
74 /**
75  * @brief build a rewrite string to use for sending packets of type 'link_type'
76  * to 'dst_address'
77  */
78 u8 *
79 ethernet_build_rewrite (vnet_main_t * vnm,
80                         u32 sw_if_index,
81                         vnet_link_t link_type, const void *dst_address)
82 {
83   vnet_sw_interface_t *sub_sw = vnet_get_sw_interface (vnm, sw_if_index);
84   vnet_sw_interface_t *sup_sw = vnet_get_sup_sw_interface (vnm, sw_if_index);
85   vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
86   ethernet_main_t *em = &ethernet_main;
87   ethernet_interface_t *ei;
88   ethernet_header_t *h;
89   ethernet_type_t type;
90   uword n_bytes = sizeof (h[0]);
91   u8 *rewrite = NULL;
92   u8 is_p2p = 0;
93
94   if (sub_sw->type == VNET_SW_INTERFACE_TYPE_P2P)
95     is_p2p = 1;
96   if (sub_sw != sup_sw)
97     {
98       if (sub_sw->sub.eth.flags.one_tag)
99         {
100           n_bytes += sizeof (ethernet_vlan_header_t);
101         }
102       else if (sub_sw->sub.eth.flags.two_tags)
103         {
104           n_bytes += 2 * (sizeof (ethernet_vlan_header_t));
105         }
106       else if (PREDICT_FALSE (is_p2p))
107         {
108           n_bytes = sizeof (ethernet_header_t);
109         }
110       if (PREDICT_FALSE (!is_p2p))
111         {
112           // Check for encaps that are not supported for L3 interfaces
113           if (!(sub_sw->sub.eth.flags.exact_match) ||
114               (sub_sw->sub.eth.flags.default_sub) ||
115               (sub_sw->sub.eth.flags.outer_vlan_id_any) ||
116               (sub_sw->sub.eth.flags.inner_vlan_id_any))
117             {
118               return 0;
119             }
120         }
121       else
122         {
123           n_bytes = sizeof (ethernet_header_t);
124         }
125     }
126
127   switch (link_type)
128     {
129 #define _(a,b) case VNET_LINK_##a: type = ETHERNET_TYPE_##b; break
130       _(IP4, IP4);
131       _(IP6, IP6);
132       _(MPLS, MPLS);
133       _(ARP, ARP);
134 #undef _
135     default:
136       return NULL;
137     }
138
139   vec_validate (rewrite, n_bytes - 1);
140   h = (ethernet_header_t *) rewrite;
141   ei = pool_elt_at_index (em->interfaces, hw->hw_instance);
142   clib_memcpy (h->src_address, ei->address, sizeof (h->src_address));
143   if (is_p2p)
144     {
145       clib_memcpy (h->dst_address, sub_sw->p2p.client_mac,
146                    sizeof (h->dst_address));
147     }
148   else
149     {
150       if (dst_address)
151         clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address));
152       else
153         memset (h->dst_address, ~0, sizeof (h->dst_address));   /* broadcast */
154     }
155
156   if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.one_tag)
157     {
158       ethernet_vlan_header_t *outer = (void *) (h + 1);
159
160       h->type = sub_sw->sub.eth.flags.dot1ad ?
161         clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
162         clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
163       outer->priority_cfi_and_id =
164         clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
165       outer->type = clib_host_to_net_u16 (type);
166
167     }
168   else if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.two_tags)
169     {
170       ethernet_vlan_header_t *outer = (void *) (h + 1);
171       ethernet_vlan_header_t *inner = (void *) (outer + 1);
172
173       h->type = sub_sw->sub.eth.flags.dot1ad ?
174         clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
175         clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
176       outer->priority_cfi_and_id =
177         clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
178       outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
179       inner->priority_cfi_and_id =
180         clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id);
181       inner->type = clib_host_to_net_u16 (type);
182
183     }
184   else
185     {
186       h->type = clib_host_to_net_u16 (type);
187     }
188
189   return (rewrite);
190 }
191
192 void
193 ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
194 {
195   ip_adjacency_t *adj;
196
197   adj = adj_get (ai);
198
199   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
200   if (si->type == VNET_SW_INTERFACE_TYPE_P2P)
201     {
202       default_update_adjacency (vnm, sw_if_index, ai);
203     }
204   else if (FIB_PROTOCOL_IP4 == adj->ia_nh_proto)
205     {
206       arp_update_adjacency (vnm, sw_if_index, ai);
207     }
208   else if (FIB_PROTOCOL_IP6 == adj->ia_nh_proto)
209     {
210       ip6_ethernet_update_adjacency (vnm, sw_if_index, ai);
211     }
212   else
213     {
214       ASSERT (0);
215     }
216 }
217
218 static clib_error_t *
219 ethernet_mac_change (vnet_hw_interface_t * hi, char *mac_address)
220 {
221   ethernet_interface_t *ei;
222   ethernet_main_t *em;
223
224   em = &ethernet_main;
225   ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
226
227   vec_validate (hi->hw_address,
228                 STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1);
229   clib_memcpy (hi->hw_address, mac_address, vec_len (hi->hw_address));
230
231   clib_memcpy (ei->address, (u8 *) mac_address, sizeof (ei->address));
232   ethernet_arp_change_mac (hi->sw_if_index);
233   ethernet_ndp_change_mac (hi->sw_if_index);
234
235   return (NULL);
236 }
237
238 /* *INDENT-OFF* */
239 VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
240   .name = "Ethernet",
241   .format_address = format_ethernet_address,
242   .format_header = format_ethernet_header_with_length,
243   .unformat_hw_address = unformat_ethernet_address,
244   .unformat_header = unformat_ethernet_header,
245   .build_rewrite = ethernet_build_rewrite,
246   .update_adjacency = ethernet_update_adjacency,
247   .mac_addr_change_function = ethernet_mac_change,
248 };
249 /* *INDENT-ON* */
250
251 uword
252 unformat_ethernet_interface (unformat_input_t * input, va_list * args)
253 {
254   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
255   u32 *result = va_arg (*args, u32 *);
256   u32 hw_if_index;
257   ethernet_main_t *em = &ethernet_main;
258   ethernet_interface_t *eif;
259
260   if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
261     return 0;
262
263   eif = ethernet_get_interface (em, hw_if_index);
264   if (eif)
265     {
266       *result = hw_if_index;
267       return 1;
268     }
269   return 0;
270 }
271
272 clib_error_t *
273 ethernet_register_interface (vnet_main_t * vnm,
274                              u32 dev_class_index,
275                              u32 dev_instance,
276                              u8 * address,
277                              u32 * hw_if_index_return,
278                              ethernet_flag_change_function_t flag_change)
279 {
280   ethernet_main_t *em = &ethernet_main;
281   ethernet_interface_t *ei;
282   vnet_hw_interface_t *hi;
283   clib_error_t *error = 0;
284   u32 hw_if_index;
285
286   pool_get (em->interfaces, ei);
287   ei->flag_change = flag_change;
288
289   hw_if_index = vnet_register_interface
290     (vnm,
291      dev_class_index, dev_instance,
292      ethernet_hw_interface_class.index, ei - em->interfaces);
293   *hw_if_index_return = hw_if_index;
294
295   hi = vnet_get_hw_interface (vnm, hw_if_index);
296
297   ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
298
299   hi->min_packet_bytes = hi->min_supported_packet_bytes =
300     ETHERNET_MIN_PACKET_BYTES;
301   hi->max_packet_bytes = hi->max_supported_packet_bytes =
302     ETHERNET_MAX_PACKET_BYTES;
303   hi->per_packet_overhead_bytes =
304     /* preamble */ 8 + /* inter frame gap */ 12;
305
306   /* Standard default ethernet MTU. */
307   hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
308
309   clib_memcpy (ei->address, address, sizeof (ei->address));
310   vec_free (hi->hw_address);
311   vec_add (hi->hw_address, address, sizeof (ei->address));
312
313   if (error)
314     {
315       pool_put (em->interfaces, ei);
316       return error;
317     }
318   return error;
319 }
320
321 void
322 ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
323 {
324   ethernet_main_t *em = &ethernet_main;
325   ethernet_interface_t *ei;
326   vnet_hw_interface_t *hi;
327   main_intf_t *main_intf;
328   vlan_table_t *vlan_table;
329   u32 idx;
330
331   hi = vnet_get_hw_interface (vnm, hw_if_index);
332   ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
333
334   /* Delete vlan mapping table for dot1q and dot1ad. */
335   main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
336   if (main_intf->dot1q_vlans)
337     {
338       vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
339       for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
340         {
341           if (vlan_table->vlans[idx].qinqs)
342             {
343               pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
344             }
345         }
346       pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
347       main_intf->dot1q_vlans = 0;
348     }
349   if (main_intf->dot1ad_vlans)
350     {
351       vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
352       for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
353         {
354           if (vlan_table->vlans[idx].qinqs)
355             {
356               pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
357             }
358         }
359       pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
360       main_intf->dot1ad_vlans = 0;
361     }
362
363   vnet_delete_hw_interface (vnm, hw_if_index);
364   pool_put (em->interfaces, ei);
365 }
366
367 u32
368 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
369 {
370   ethernet_main_t *em = &ethernet_main;
371   vnet_hw_interface_t *hi;
372   ethernet_interface_t *ei;
373
374   hi = vnet_get_hw_interface (vnm, hw_if_index);
375
376   ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
377
378   ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
379   if (ei->flag_change)
380     return ei->flag_change (vnm, hi, flags);
381   return (u32) ~ 0;
382 }
383
384 /* Echo packets back to ethernet/l2-input. */
385 static uword
386 simulated_ethernet_interface_tx (vlib_main_t * vm,
387                                  vlib_node_runtime_t * node,
388                                  vlib_frame_t * frame)
389 {
390   u32 n_left_from, n_left_to_next, n_copy, *from, *to_next;
391   u32 next_index = VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT;
392   u32 i, next_node_index, bvi_flag, sw_if_index;
393   u32 n_pkts = 0, n_bytes = 0;
394   u32 thread_index = vm->thread_index;
395   vnet_main_t *vnm = vnet_get_main ();
396   vnet_interface_main_t *im = &vnm->interface_main;
397   vlib_node_main_t *nm = &vm->node_main;
398   vlib_node_t *loop_node;
399   vlib_buffer_t *b;
400
401   // check tx node index, it is ethernet-input on loopback create
402   // but can be changed to l2-input if loopback is configured as
403   // BVI of a BD (Bridge Domain).
404   loop_node = vec_elt (nm->nodes, node->node_index);
405   next_node_index = loop_node->next_nodes[next_index];
406   bvi_flag = (next_node_index == l2input_node.index) ? 1 : 0;
407
408   n_left_from = frame->n_vectors;
409   from = vlib_frame_args (frame);
410
411   while (n_left_from > 0)
412     {
413       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
414
415       n_copy = clib_min (n_left_from, n_left_to_next);
416
417       clib_memcpy (to_next, from, n_copy * sizeof (from[0]));
418       n_left_to_next -= n_copy;
419       n_left_from -= n_copy;
420       i = 0;
421       b = vlib_get_buffer (vm, from[i]);
422       sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
423       while (1)
424         {
425           // Set up RX and TX indices as if received from a real driver
426           // unless loopback is used as a BVI. For BVI case, leave TX index
427           // and update l2_len in packet as required for l2 forwarding path
428           vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index;
429           if (bvi_flag)
430             {
431               vnet_update_l2_len (b);
432               vnet_buffer (b)->sw_if_index[VLIB_TX] = L2INPUT_BVI;
433             }
434           else
435             vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0;
436
437           i++;
438           n_pkts++;
439           n_bytes += vlib_buffer_length_in_chain (vm, b);
440
441           if (i < n_copy)
442             b = vlib_get_buffer (vm, from[i]);
443           else
444             break;
445         }
446       from += n_copy;
447
448       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
449
450       /* increment TX interface stat */
451       vlib_increment_combined_counter (im->combined_sw_if_counters +
452                                        VNET_INTERFACE_COUNTER_TX,
453                                        thread_index, sw_if_index, n_pkts,
454                                        n_bytes);
455     }
456
457   return n_left_from;
458 }
459
460 static u8 *
461 format_simulated_ethernet_name (u8 * s, va_list * args)
462 {
463   u32 dev_instance = va_arg (*args, u32);
464   return format (s, "loop%d", dev_instance);
465 }
466
467 static clib_error_t *
468 simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
469                                   u32 flags)
470 {
471   u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
472     VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
473   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
474   return 0;
475 }
476
477 /* *INDENT-OFF* */
478 VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
479   .name = "Loopback",
480   .format_device_name = format_simulated_ethernet_name,
481   .tx_function = simulated_ethernet_interface_tx,
482   .admin_up_down_function = simulated_ethernet_admin_up_down,
483 };
484 /* *INDENT-ON* */
485
486
487 /*
488  * Maintain a bitmap of allocated loopback instance numbers.
489  */
490 #define LOOPBACK_MAX_INSTANCE           (16 * 1024)
491
492 static u32
493 loopback_instance_alloc (u8 is_specified, u32 want)
494 {
495   ethernet_main_t *em = &ethernet_main;
496
497   /*
498    * Check for dynamically allocaetd instance number.
499    */
500   if (!is_specified)
501     {
502       u32 bit;
503
504       bit = clib_bitmap_first_clear (em->bm_loopback_instances);
505       if (bit >= LOOPBACK_MAX_INSTANCE)
506         {
507           return ~0;
508         }
509       em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
510                                                    bit, 1);
511       return bit;
512     }
513
514   /*
515    * In range?
516    */
517   if (want >= LOOPBACK_MAX_INSTANCE)
518     {
519       return ~0;
520     }
521
522   /*
523    * Already in use?
524    */
525   if (clib_bitmap_get (em->bm_loopback_instances, want))
526     {
527       return ~0;
528     }
529
530   /*
531    * Grant allocation request.
532    */
533   em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
534                                                want, 1);
535
536   return want;
537 }
538
539 static int
540 loopback_instance_free (u32 instance)
541 {
542   ethernet_main_t *em = &ethernet_main;
543
544   if (instance >= LOOPBACK_MAX_INSTANCE)
545     {
546       return -1;
547     }
548
549   if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0)
550     {
551       return -1;
552     }
553
554   em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
555                                                instance, 0);
556   return 0;
557 }
558
559 int
560 vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
561                                 u8 is_specified, u32 user_instance)
562 {
563   vnet_main_t *vnm = vnet_get_main ();
564   vlib_main_t *vm = vlib_get_main ();
565   clib_error_t *error;
566   u32 instance;
567   u8 address[6];
568   u32 hw_if_index;
569   vnet_hw_interface_t *hw_if;
570   u32 slot;
571   int rv = 0;
572
573   ASSERT (sw_if_indexp);
574
575   *sw_if_indexp = (u32) ~ 0;
576
577   memset (address, 0, sizeof (address));
578
579   /*
580    * Allocate a loopback instance.  Either select on dynamically
581    * or try to use the desired user_instance number.
582    */
583   instance = loopback_instance_alloc (is_specified, user_instance);
584   if (instance == ~0)
585     {
586       return VNET_API_ERROR_INVALID_REGISTRATION;
587     }
588
589   /*
590    * Default MAC address (dead:0000:0000 + instance) is allocated
591    * if zero mac_address is configured. Otherwise, user-configurable MAC
592    * address is programmed on the loopback interface.
593    */
594   if (memcmp (address, mac_address, sizeof (address)))
595     clib_memcpy (address, mac_address, sizeof (address));
596   else
597     {
598       address[0] = 0xde;
599       address[1] = 0xad;
600       address[5] = instance;
601     }
602
603   error = ethernet_register_interface
604     (vnm,
605      ethernet_simulated_device_class.index, instance, address, &hw_if_index,
606      /* flag change */ 0);
607
608   if (error)
609     {
610       rv = VNET_API_ERROR_INVALID_REGISTRATION;
611       clib_error_report (error);
612       return rv;
613     }
614
615   hw_if = vnet_get_hw_interface (vnm, hw_if_index);
616   slot = vlib_node_add_named_next_with_slot
617     (vm, hw_if->tx_node_index,
618      "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
619   ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
620
621   {
622     vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
623     *sw_if_indexp = si->sw_if_index;
624
625     /* By default don't flood to loopbacks, as packets just keep
626      * coming back ... If this loopback becomes a BVI, we'll change it */
627     si->flood_class = VNET_FLOOD_CLASS_NO_FLOOD;
628   }
629
630   return 0;
631 }
632
633 static clib_error_t *
634 create_simulated_ethernet_interfaces (vlib_main_t * vm,
635                                       unformat_input_t * input,
636                                       vlib_cli_command_t * cmd)
637 {
638   int rv;
639   u32 sw_if_index;
640   u8 mac_address[6];
641   u8 is_specified = 0;
642   u32 user_instance = 0;
643
644   memset (mac_address, 0, sizeof (mac_address));
645
646   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
647     {
648       if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
649         ;
650       if (unformat (input, "instance %d", &user_instance))
651         is_specified = 1;
652       else
653         break;
654     }
655
656   rv = vnet_create_loopback_interface (&sw_if_index, mac_address,
657                                        is_specified, user_instance);
658
659   if (rv)
660     return clib_error_return (0, "vnet_create_loopback_interface failed");
661
662   vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
663                    sw_if_index);
664   return 0;
665 }
666
667 /*?
668  * Create a loopback interface. Optionally, a MAC Address can be
669  * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
670  *
671  * @cliexpar
672  * The following two command syntaxes are equivalent:
673  * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
674  * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
675  * Example of how to create a loopback interface:
676  * @cliexcmd{loopback create-interface}
677 ?*/
678 /* *INDENT-OFF* */
679 VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = {
680   .path = "loopback create-interface",
681   .short_help = "loopback create-interface [mac <mac-addr>] [instance <instance>]",
682   .function = create_simulated_ethernet_interfaces,
683 };
684 /* *INDENT-ON* */
685
686 /*?
687  * Create a loopback interface. Optionally, a MAC Address can be
688  * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
689  *
690  * @cliexpar
691  * The following two command syntaxes are equivalent:
692  * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
693  * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
694  * Example of how to create a loopback interface:
695  * @cliexcmd{create loopback interface}
696 ?*/
697 /* *INDENT-OFF* */
698 VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
699   .path = "create loopback interface",
700   .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]",
701   .function = create_simulated_ethernet_interfaces,
702 };
703 /* *INDENT-ON* */
704
705 ethernet_interface_t *
706 ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
707 {
708   vnet_hw_interface_t *i =
709     vnet_get_hw_interface (vnet_get_main (), hw_if_index);
710   return (i->hw_class_index ==
711           ethernet_hw_interface_class.
712           index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
713 }
714
715 int
716 vnet_delete_loopback_interface (u32 sw_if_index)
717 {
718   vnet_main_t *vnm = vnet_get_main ();
719   vnet_sw_interface_t *si;
720   u32 hw_if_index;
721   vnet_hw_interface_t *hw;
722   u32 instance;
723
724   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
725     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
726
727   si = vnet_get_sw_interface (vnm, sw_if_index);
728   hw_if_index = si->hw_if_index;
729   hw = vnet_get_hw_interface (vnm, hw_if_index);
730   instance = hw->dev_instance;
731
732   if (loopback_instance_free (instance) < 0)
733     {
734       return VNET_API_ERROR_INVALID_SW_IF_INDEX;
735     }
736
737   ethernet_delete_interface (vnm, hw_if_index);
738
739   return 0;
740 }
741
742 int
743 vnet_delete_sub_interface (u32 sw_if_index)
744 {
745   vnet_main_t *vnm = vnet_get_main ();
746   vnet_sw_interface_t *si;
747   int rv = 0;
748
749   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
750     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
751
752   si = vnet_get_sw_interface (vnm, sw_if_index);
753   if (si->type == VNET_SW_INTERFACE_TYPE_SUB ||
754       si->type == VNET_SW_INTERFACE_TYPE_P2P)
755     {
756       vnet_interface_main_t *im = &vnm->interface_main;
757       vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
758       u64 sup_and_sub_key =
759         ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
760       hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
761       hash_unset (hi->sub_interface_sw_if_index_by_id, si->sub.id);
762       vnet_delete_sw_interface (vnm, sw_if_index);
763     }
764   else
765     rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
766
767   return rv;
768 }
769
770 static clib_error_t *
771 delete_simulated_ethernet_interfaces (vlib_main_t * vm,
772                                       unformat_input_t * input,
773                                       vlib_cli_command_t * cmd)
774 {
775   int rv;
776   u32 sw_if_index = ~0;
777   vnet_main_t *vnm = vnet_get_main ();
778
779   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
780     {
781       if (unformat (input, "intfc %U",
782                     unformat_vnet_sw_interface, vnm, &sw_if_index))
783         ;
784       else
785         break;
786     }
787
788   if (sw_if_index == ~0)
789     return clib_error_return (0, "interface not specified");
790
791   rv = vnet_delete_loopback_interface (sw_if_index);
792
793   if (rv)
794     return clib_error_return (0, "vnet_delete_loopback_interface failed");
795
796   return 0;
797 }
798
799 static clib_error_t *
800 delete_sub_interface (vlib_main_t * vm,
801                       unformat_input_t * input, vlib_cli_command_t * cmd)
802 {
803   int rv = 0;
804   u32 sw_if_index = ~0;
805   vnet_main_t *vnm = vnet_get_main ();
806
807   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
808     {
809       if (unformat
810           (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
811         ;
812       else
813         break;
814     }
815   if (sw_if_index == ~0)
816     return clib_error_return (0, "interface doesn't exist");
817
818   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
819     rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
820   else
821     rv = vnet_delete_sub_interface (sw_if_index);
822   if (rv)
823     return clib_error_return (0, "delete_subinterface_interface failed");
824   return 0;
825 }
826
827 /*?
828  * Delete a loopback interface.
829  *
830  * @cliexpar
831  * The following two command syntaxes are equivalent:
832  * @cliexcmd{loopback delete-interface intfc <interface>}
833  * @cliexcmd{delete loopback interface intfc <interface>}
834  * Example of how to delete a loopback interface:
835  * @cliexcmd{loopback delete-interface intfc loop0}
836 ?*/
837 /* *INDENT-OFF* */
838 VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
839   .path = "loopback delete-interface",
840   .short_help = "loopback delete-interface intfc <interface>",
841   .function = delete_simulated_ethernet_interfaces,
842 };
843 /* *INDENT-ON* */
844
845 /*?
846  * Delete a loopback interface.
847  *
848  * @cliexpar
849  * The following two command syntaxes are equivalent:
850  * @cliexcmd{loopback delete-interface intfc <interface>}
851  * @cliexcmd{delete loopback interface intfc <interface>}
852  * Example of how to delete a loopback interface:
853  * @cliexcmd{delete loopback interface intfc loop0}
854 ?*/
855 /* *INDENT-OFF* */
856 VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
857   .path = "delete loopback interface",
858   .short_help = "delete loopback interface intfc <interface>",
859   .function = delete_simulated_ethernet_interfaces,
860 };
861 /* *INDENT-ON* */
862
863 /*?
864  * Delete a sub-interface.
865  *
866  * @cliexpar
867  * Example of how to delete a sub-interface:
868  * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
869 ?*/
870 /* *INDENT-OFF* */
871 VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
872   .path = "delete sub-interface",
873   .short_help = "delete sub-interface <interface>",
874   .function = delete_sub_interface,
875 };
876 /* *INDENT-ON* */
877
878 /*
879  * fd.io coding-style-patch-verification: ON
880  *
881  * Local Variables:
882  * eval: (c-set-style "gnu")
883  * End:
884  */