A Protocol Independent Hierarchical FIB (VPP-352)
[vpp.git] / vnet / 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/srp/srp.h>
46 #include <vnet/lisp-gpe/lisp_gpe.h>
47 #include <vnet/devices/af_packet/af_packet.h>
48
49 int
50 vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
51 {
52   // FIXME - use flags on the HW itf
53   vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
54   return (!(hw->hw_class_index == ethernet_hw_interface_class.index ||
55             hw->hw_class_index == af_packet_device_class.index ||
56             hw->hw_class_index == lisp_gpe_hw_class.index ||
57             hw->hw_class_index == srp_hw_interface_class.index));
58 }
59
60 /**
61  * @file
62  * @brief Loopback Interfaces.
63  *
64  * This file contains code to manage loopback interfaces.
65  */
66
67 static uword
68 ethernet_set_rewrite (vnet_main_t * vnm,
69                       u32 sw_if_index,
70                       u32 l3_type,
71                       void *dst_address,
72                       void *rewrite, uword max_rewrite_bytes)
73 {
74   vnet_sw_interface_t *sub_sw = vnet_get_sw_interface (vnm, sw_if_index);
75   vnet_sw_interface_t *sup_sw = vnet_get_sup_sw_interface (vnm, sw_if_index);
76   vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
77   ethernet_main_t *em = &ethernet_main;
78   ethernet_interface_t *ei;
79   ethernet_header_t *h = rewrite;
80   ethernet_type_t type;
81   uword n_bytes = sizeof (h[0]);
82
83   if (sub_sw != sup_sw)
84     {
85       if (sub_sw->sub.eth.flags.one_tag)
86         {
87           n_bytes += sizeof (ethernet_vlan_header_t);
88         }
89       else if (sub_sw->sub.eth.flags.two_tags)
90         {
91           n_bytes += 2 * (sizeof (ethernet_vlan_header_t));
92         }
93       // Check for encaps that are not supported for L3 interfaces
94       if (!(sub_sw->sub.eth.flags.exact_match) ||
95           (sub_sw->sub.eth.flags.default_sub) ||
96           (sub_sw->sub.eth.flags.outer_vlan_id_any) ||
97           (sub_sw->sub.eth.flags.inner_vlan_id_any))
98         {
99           return 0;
100         }
101     }
102
103   if (n_bytes > max_rewrite_bytes)
104     return 0;
105
106   switch (l3_type)
107     {
108 #define _(a,b) case VNET_L3_PACKET_TYPE_##a: type = ETHERNET_TYPE_##b; break
109       _(IP4, IP4);
110       _(IP6, IP6);
111       _(MPLS_UNICAST, MPLS_UNICAST);
112       _(MPLS_MULTICAST, MPLS_MULTICAST);
113       _(ARP, ARP);
114 #undef _
115     default:
116       return 0;
117     }
118
119   ei = pool_elt_at_index (em->interfaces, hw->hw_instance);
120   clib_memcpy (h->src_address, ei->address, sizeof (h->src_address));
121   if (dst_address)
122     clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address));
123   else
124     memset (h->dst_address, ~0, sizeof (h->dst_address));       /* broadcast */
125
126   if (sub_sw->sub.eth.flags.one_tag)
127     {
128       ethernet_vlan_header_t *outer = (void *) (h + 1);
129
130       h->type = sub_sw->sub.eth.flags.dot1ad ?
131         clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
132         clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
133       outer->priority_cfi_and_id =
134         clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
135       outer->type = clib_host_to_net_u16 (type);
136
137     }
138   else if (sub_sw->sub.eth.flags.two_tags)
139     {
140       ethernet_vlan_header_t *outer = (void *) (h + 1);
141       ethernet_vlan_header_t *inner = (void *) (outer + 1);
142
143       h->type = sub_sw->sub.eth.flags.dot1ad ?
144         clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
145         clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
146       outer->priority_cfi_and_id =
147         clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
148       outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
149       inner->priority_cfi_and_id =
150         clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id);
151       inner->type = clib_host_to_net_u16 (type);
152
153     }
154   else
155     {
156       h->type = clib_host_to_net_u16 (type);
157     }
158
159   return n_bytes;
160 }
161
162 /* *INDENT-OFF* */
163 VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
164   .name = "Ethernet",
165   .format_address = format_ethernet_address,
166   .format_header = format_ethernet_header_with_length,
167   .unformat_hw_address = unformat_ethernet_address,
168   .unformat_header = unformat_ethernet_header,
169   .set_rewrite = ethernet_set_rewrite,
170 };
171 /* *INDENT-ON* */
172
173 uword
174 unformat_ethernet_interface (unformat_input_t * input, va_list * args)
175 {
176   vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
177   u32 *result = va_arg (*args, u32 *);
178   u32 hw_if_index;
179   ethernet_main_t *em = &ethernet_main;
180   ethernet_interface_t *eif;
181
182   if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
183     return 0;
184
185   eif = ethernet_get_interface (em, hw_if_index);
186   if (eif)
187     {
188       *result = hw_if_index;
189       return 1;
190     }
191   return 0;
192 }
193
194 clib_error_t *
195 ethernet_register_interface (vnet_main_t * vnm,
196                              u32 dev_class_index,
197                              u32 dev_instance,
198                              u8 * address,
199                              u32 * hw_if_index_return,
200                              ethernet_flag_change_function_t flag_change)
201 {
202   ethernet_main_t *em = &ethernet_main;
203   ethernet_interface_t *ei;
204   vnet_hw_interface_t *hi;
205   clib_error_t *error = 0;
206   u32 hw_if_index;
207
208   pool_get (em->interfaces, ei);
209   ei->flag_change = flag_change;
210
211   hw_if_index = vnet_register_interface
212     (vnm,
213      dev_class_index, dev_instance,
214      ethernet_hw_interface_class.index, ei - em->interfaces);
215   *hw_if_index_return = hw_if_index;
216
217   hi = vnet_get_hw_interface (vnm, hw_if_index);
218
219   ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
220
221   hi->min_packet_bytes = hi->min_supported_packet_bytes =
222     ETHERNET_MIN_PACKET_BYTES;
223   hi->max_packet_bytes = hi->max_supported_packet_bytes =
224     ETHERNET_MAX_PACKET_BYTES;
225   hi->per_packet_overhead_bytes =
226     /* preamble */ 8 + /* inter frame gap */ 12;
227
228   /* Standard default ethernet MTU. */
229   hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
230
231   clib_memcpy (ei->address, address, sizeof (ei->address));
232   vec_free (hi->hw_address);
233   vec_add (hi->hw_address, address, sizeof (ei->address));
234
235   if (error)
236     {
237       pool_put (em->interfaces, ei);
238       return error;
239     }
240   return error;
241 }
242
243 void
244 ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
245 {
246   ethernet_main_t *em = &ethernet_main;
247   ethernet_interface_t *ei;
248   vnet_hw_interface_t *hi;
249   main_intf_t *main_intf;
250   vlan_table_t *vlan_table;
251   u32 idx;
252
253   hi = vnet_get_hw_interface (vnm, hw_if_index);
254   ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
255
256   /* Delete vlan mapping table for dot1q and dot1ad. */
257   main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
258   if (main_intf->dot1q_vlans)
259     {
260       vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
261       for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
262         {
263           if (vlan_table->vlans[idx].qinqs)
264             {
265               pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
266             }
267         }
268       pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
269     }
270   if (main_intf->dot1ad_vlans)
271     {
272       vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
273       for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
274         {
275           if (vlan_table->vlans[idx].qinqs)
276             {
277               pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
278             }
279         }
280       pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
281     }
282
283   vnet_delete_hw_interface (vnm, hw_if_index);
284   pool_put (em->interfaces, ei);
285 }
286
287 u32
288 ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
289 {
290   ethernet_main_t *em = &ethernet_main;
291   vnet_hw_interface_t *hi;
292   ethernet_interface_t *ei;
293
294   hi = vnet_get_hw_interface (vnm, hw_if_index);
295
296   ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
297
298   ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
299   if (ei->flag_change)
300     return ei->flag_change (vnm, hi, flags);
301   return (u32) ~ 0;
302 }
303
304 /* Echo packets back to ethernet/l2-input. */
305 static uword
306 simulated_ethernet_interface_tx (vlib_main_t * vm,
307                                  vlib_node_runtime_t * node,
308                                  vlib_frame_t * frame)
309 {
310   u32 n_left_from, n_left_to_next, n_copy, *from, *to_next;
311   u32 next_index = VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT;
312   u32 i, next_node_index, bvi_flag, sw_if_index;
313   u32 n_pkts = 0, n_bytes = 0;
314   u32 cpu_index = vm->cpu_index;
315   vnet_main_t *vnm = vnet_get_main ();
316   vnet_interface_main_t *im = &vnm->interface_main;
317   vlib_node_main_t *nm = &vm->node_main;
318   vlib_node_t *loop_node;
319   vlib_buffer_t *b;
320
321   // check tx node index, it is ethernet-input on loopback create
322   // but can be changed to l2-input if loopback is configured as
323   // BVI of a BD (Bridge Domain).
324   loop_node = vec_elt (nm->nodes, node->node_index);
325   next_node_index = loop_node->next_nodes[next_index];
326   bvi_flag = (next_node_index == l2input_node.index) ? 1 : 0;
327
328   n_left_from = frame->n_vectors;
329   from = vlib_frame_args (frame);
330
331   while (n_left_from > 0)
332     {
333       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
334
335       n_copy = clib_min (n_left_from, n_left_to_next);
336
337       clib_memcpy (to_next, from, n_copy * sizeof (from[0]));
338       n_left_to_next -= n_copy;
339       n_left_from -= n_copy;
340       i = 0;
341       b = vlib_get_buffer (vm, from[i]);
342       sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
343       while (1)
344         {
345           // Set up RX and TX indices as if received from a real driver
346           // unless loopback is used as a BVI. For BVI case, leave TX index
347           // and update l2_len in packet as required for l2 forwarding path
348           vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index;
349           if (bvi_flag)
350             vnet_update_l2_len (b);
351           else
352             vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0;
353
354           i++;
355           n_pkts++;
356           n_bytes += vlib_buffer_length_in_chain (vm, b);
357
358           if (i < n_copy)
359             b = vlib_get_buffer (vm, from[i]);
360           else
361             break;
362         }
363
364       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
365
366       /* increment TX interface stat */
367       vlib_increment_combined_counter (im->combined_sw_if_counters +
368                                        VNET_INTERFACE_COUNTER_TX, cpu_index,
369                                        sw_if_index, n_pkts, n_bytes);
370     }
371
372   return n_left_from;
373 }
374
375 static u8 *
376 format_simulated_ethernet_name (u8 * s, va_list * args)
377 {
378   u32 dev_instance = va_arg (*args, u32);
379   return format (s, "loop%d", dev_instance);
380 }
381
382 static clib_error_t *
383 simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
384                                   u32 flags)
385 {
386   u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
387     VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
388   vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
389   return 0;
390 }
391
392 /* *INDENT-OFF* */
393 VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
394   .name = "Loopback",
395   .format_device_name = format_simulated_ethernet_name,
396   .tx_function = simulated_ethernet_interface_tx,
397   .admin_up_down_function = simulated_ethernet_admin_up_down,
398   .no_flatten_output_chains = 1,
399 };
400 /* *INDENT-ON* */
401
402 int
403 vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address)
404 {
405   vnet_main_t *vnm = vnet_get_main ();
406   vlib_main_t *vm = vlib_get_main ();
407   clib_error_t *error;
408   static u32 instance;
409   u8 address[6];
410   u32 hw_if_index;
411   vnet_hw_interface_t *hw_if;
412   u32 slot;
413   int rv = 0;
414
415   ASSERT (sw_if_indexp);
416
417   *sw_if_indexp = (u32) ~ 0;
418
419   memset (address, 0, sizeof (address));
420
421   /*
422    * Default MAC address (dead:0000:0000 + instance) is allocated
423    * if zero mac_address is configured. Otherwise, user-configurable MAC
424    * address is programmed on the loopback interface.
425    */
426   if (memcmp (address, mac_address, sizeof (address)))
427     clib_memcpy (address, mac_address, sizeof (address));
428   else
429     {
430       address[0] = 0xde;
431       address[1] = 0xad;
432       address[5] = instance;
433     }
434
435   error = ethernet_register_interface
436     (vnm,
437      ethernet_simulated_device_class.index, instance++, address, &hw_if_index,
438      /* flag change */ 0);
439
440   if (error)
441     {
442       rv = VNET_API_ERROR_INVALID_REGISTRATION;
443       clib_error_report (error);
444       return rv;
445     }
446
447   hw_if = vnet_get_hw_interface (vnm, hw_if_index);
448   slot = vlib_node_add_named_next_with_slot
449     (vm, hw_if->tx_node_index,
450      "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
451   ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
452
453   {
454     vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
455     *sw_if_indexp = si->sw_if_index;
456   }
457
458   return 0;
459 }
460
461 static clib_error_t *
462 create_simulated_ethernet_interfaces (vlib_main_t * vm,
463                                       unformat_input_t * input,
464                                       vlib_cli_command_t * cmd)
465 {
466   int rv;
467   u32 sw_if_index;
468   u8 mac_address[6];
469
470   memset (mac_address, 0, sizeof (mac_address));
471
472   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
473     {
474       if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
475         ;
476       else
477         break;
478     }
479
480   rv = vnet_create_loopback_interface (&sw_if_index, mac_address);
481
482   if (rv)
483     return clib_error_return (0, "vnet_create_loopback_interface failed");
484
485   vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
486                    sw_if_index);
487   return 0;
488 }
489
490 /*?
491  * Create a loopback interface. Optionally, a MAC Address can be
492  * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
493  *
494  * @cliexpar
495  * The following two command syntaxes are equivalent:
496  * @cliexcmd{loopback create-interface [mac <mac-addr>]}
497  * @cliexcmd{create loopback interface [mac <mac-addr>]}
498  * Example of how to create a loopback interface:
499  * @cliexcmd{loopback create-interface}
500 ?*/
501 /* *INDENT-OFF* */
502 VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = {
503   .path = "loopback create-interface",
504   .short_help = "loopback create-interface [mac <mac-addr>]",
505   .function = create_simulated_ethernet_interfaces,
506 };
507 /* *INDENT-ON* */
508
509 /*?
510  * Create a loopback interface. Optionally, a MAC Address can be
511  * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
512  *
513  * @cliexpar
514  * The following two command syntaxes are equivalent:
515  * @cliexcmd{loopback create-interface [mac <mac-addr>]}
516  * @cliexcmd{create loopback interface [mac <mac-addr>]}
517  * Example of how to create a loopback interface:
518  * @cliexcmd{create loopback interface}
519 ?*/
520 /* *INDENT-OFF* */
521 VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
522   .path = "create loopback interface",
523   .short_help = "create loopback interface [mac <mac-addr>]",
524   .function = create_simulated_ethernet_interfaces,
525 };
526 /* *INDENT-ON* */
527
528 ethernet_interface_t *
529 ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
530 {
531   vnet_hw_interface_t *i =
532     vnet_get_hw_interface (vnet_get_main (), hw_if_index);
533   return (i->hw_class_index ==
534           ethernet_hw_interface_class.
535           index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
536 }
537
538 int
539 vnet_delete_loopback_interface (u32 sw_if_index)
540 {
541   vnet_main_t *vnm = vnet_get_main ();
542   vnet_sw_interface_t *si;
543
544   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
545     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
546
547   si = vnet_get_sw_interface (vnm, sw_if_index);
548   ethernet_delete_interface (vnm, si->hw_if_index);
549
550   return 0;
551 }
552
553 int
554 vnet_delete_sub_interface (u32 sw_if_index)
555 {
556   vnet_main_t *vnm = vnet_get_main ();
557   int rv = 0;
558
559   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
560     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
561
562
563   vnet_interface_main_t *im = &vnm->interface_main;
564   vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
565
566   if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
567     {
568       vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
569       u64 sup_and_sub_key =
570         ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
571
572       hash_unset_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
573       vnet_delete_sw_interface (vnm, sw_if_index);
574     }
575   else
576     {
577       rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
578     }
579   return rv;
580 }
581
582 static clib_error_t *
583 delete_simulated_ethernet_interfaces (vlib_main_t * vm,
584                                       unformat_input_t * input,
585                                       vlib_cli_command_t * cmd)
586 {
587   int rv;
588   u32 sw_if_index = ~0;
589   vnet_main_t *vnm = vnet_get_main ();
590
591   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
592     {
593       if (unformat (input, "intfc %U",
594                     unformat_vnet_sw_interface, vnm, &sw_if_index))
595         ;
596       else
597         break;
598     }
599
600   if (sw_if_index == ~0)
601     return clib_error_return (0, "interface not specified");
602
603   rv = vnet_delete_loopback_interface (sw_if_index);
604
605   if (rv)
606     return clib_error_return (0, "vnet_delete_loopback_interface failed");
607
608   return 0;
609 }
610
611 static clib_error_t *
612 delete_sub_interface (vlib_main_t * vm,
613                       unformat_input_t * input, vlib_cli_command_t * cmd)
614 {
615   int rv = 0;
616   u32 sw_if_index = ~0;
617   vnet_main_t *vnm = vnet_get_main ();
618
619   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
620     {
621       if (unformat
622           (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
623         ;
624       else
625         break;
626     }
627   if (sw_if_index == ~0)
628     return clib_error_return (0, "interface doesn't exist");
629
630   if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
631     rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
632   else
633     rv = vnet_delete_sub_interface (sw_if_index);
634   if (rv)
635     return clib_error_return (0, "delete_subinterface_interface failed");
636   return 0;
637 }
638
639 /*?
640  * Delete a loopback interface.
641  *
642  * @cliexpar
643  * The following two command syntaxes are equivalent:
644  * @cliexcmd{loopback delete-interface intfc <interface>}
645  * @cliexcmd{delete loopback interface intfc <interface>}
646  * Example of how to delete a loopback interface:
647  * @cliexcmd{loopback delete-interface intfc loop0}
648 ?*/
649 /* *INDENT-OFF* */
650 VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
651   .path = "loopback delete-interface",
652   .short_help = "loopback delete-interface intfc <interface>",
653   .function = delete_simulated_ethernet_interfaces,
654 };
655 /* *INDENT-ON* */
656
657 /*?
658  * Delete a loopback interface.
659  *
660  * @cliexpar
661  * The following two command syntaxes are equivalent:
662  * @cliexcmd{loopback delete-interface intfc <interface>}
663  * @cliexcmd{delete loopback interface intfc <interface>}
664  * Example of how to delete a loopback interface:
665  * @cliexcmd{delete loopback interface intfc loop0}
666 ?*/
667 /* *INDENT-OFF* */
668 VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
669   .path = "delete loopback interface",
670   .short_help = "delete loopback interface intfc <interface>",
671   .function = delete_simulated_ethernet_interfaces,
672 };
673 /* *INDENT-ON* */
674
675 /*?
676  * Delete a sub-interface.
677  *
678  * @cliexpar
679  * Example of how to delete a sub-interface:
680  * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
681 ?*/
682 /* *INDENT-OFF* */
683 VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
684   .path = "delete sub-interface",
685   .short_help = "delete sub-interface <interface>",
686   .function = delete_sub_interface,
687 };
688 /* *INDENT-ON* */
689
690 /*
691  * fd.io coding-style-patch-verification: ON
692  *
693  * Local Variables:
694  * eval: (c-set-style "gnu")
695  * End:
696  */