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