blob: 335e3f9f270b28f76f649fb715db37a6c0db52d1 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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>
John Lo405e41b2016-04-23 15:14:12 -040044#include <vnet/l2/l2_input.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010045#include <vnet/adj/adj.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010046
Neale Ranns5e575b12016-10-03 09:40:25 +010047/**
48 * @file
49 * @brief Loopback Interfaces.
50 *
51 * This file contains code to manage loopback interfaces.
52 */
53
Neale Ranns32e1c012016-11-22 17:07:28 +000054const u8 *
55ethernet_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
64const u8 *
65ethernet_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
Neale Rannsb80c5362016-10-08 13:03:40 +010074/**
75 * @brief build a rewrite string to use for sending packets of type 'link_type'
76 * to 'dst_address'
77 */
78u8 *
79ethernet_build_rewrite (vnet_main_t * vnm,
80 u32 sw_if_index,
81 vnet_link_t link_type, const void *dst_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -070082{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070083 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;
Neale Rannsb80c5362016-10-08 13:03:40 +010088 ethernet_header_t *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 ethernet_type_t type;
90 uword n_bytes = sizeof (h[0]);
Neale Rannsb80c5362016-10-08 13:03:40 +010091 u8 *rewrite = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070093 if (sub_sw != sup_sw)
94 {
95 if (sub_sw->sub.eth.flags.one_tag)
96 {
97 n_bytes += sizeof (ethernet_vlan_header_t);
98 }
99 else if (sub_sw->sub.eth.flags.two_tags)
100 {
101 n_bytes += 2 * (sizeof (ethernet_vlan_header_t));
102 }
103 // Check for encaps that are not supported for L3 interfaces
104 if (!(sub_sw->sub.eth.flags.exact_match) ||
105 (sub_sw->sub.eth.flags.default_sub) ||
106 (sub_sw->sub.eth.flags.outer_vlan_id_any) ||
107 (sub_sw->sub.eth.flags.inner_vlan_id_any))
108 {
109 return 0;
110 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
Neale Rannsb80c5362016-10-08 13:03:40 +0100113 switch (link_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700114 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100115#define _(a,b) case VNET_LINK_##a: type = ETHERNET_TYPE_##b; break
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700116 _(IP4, IP4);
117 _(IP6, IP6);
Neale Rannsb80c5362016-10-08 13:03:40 +0100118 _(MPLS, MPLS_UNICAST);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700119 _(ARP, ARP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700121 default:
Neale Rannsb80c5362016-10-08 13:03:40 +0100122 return NULL;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700123 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Neale Rannsb80c5362016-10-08 13:03:40 +0100125 vec_validate (rewrite, n_bytes - 1);
126 h = (ethernet_header_t *) rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 ei = pool_elt_at_index (em->interfaces, hw->hw_instance);
Damjan Marionf1213b82016-03-13 02:22:06 +0100128 clib_memcpy (h->src_address, ei->address, sizeof (h->src_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 if (dst_address)
Damjan Marionf1213b82016-03-13 02:22:06 +0100130 clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700132 memset (h->dst_address, ~0, sizeof (h->dst_address)); /* broadcast */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700134 if (sub_sw->sub.eth.flags.one_tag)
135 {
136 ethernet_vlan_header_t *outer = (void *) (h + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700138 h->type = sub_sw->sub.eth.flags.dot1ad ?
139 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
140 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
141 outer->priority_cfi_and_id =
142 clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
143 outer->type = clib_host_to_net_u16 (type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700145 }
146 else if (sub_sw->sub.eth.flags.two_tags)
147 {
148 ethernet_vlan_header_t *outer = (void *) (h + 1);
149 ethernet_vlan_header_t *inner = (void *) (outer + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700151 h->type = sub_sw->sub.eth.flags.dot1ad ?
152 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
153 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
154 outer->priority_cfi_and_id =
155 clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
156 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
157 inner->priority_cfi_and_id =
158 clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id);
159 inner->type = clib_host_to_net_u16 (type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700161 }
162 else
163 {
164 h->type = clib_host_to_net_u16 (type);
165 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Neale Rannsb80c5362016-10-08 13:03:40 +0100167 return (rewrite);
168}
169
170void
171ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
172{
173 ip_adjacency_t *adj;
174
175 adj = adj_get (ai);
176
177 if (FIB_PROTOCOL_IP4 == adj->ia_nh_proto)
178 {
179 arp_update_adjacency (vnm, sw_if_index, ai);
180 }
181 else if (FIB_PROTOCOL_IP6 == adj->ia_nh_proto)
182 {
183 ip6_ethernet_update_adjacency (vnm, sw_if_index, ai);
184 }
185 else
186 {
187 ASSERT (0);
188 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189}
190
Neale Ranns3be6b282016-12-20 14:24:01 +0000191static clib_error_t *
192ethernet_mac_change (vnet_hw_interface_t * hi, char *mac_address)
193{
194 ethernet_interface_t *ei;
195 ethernet_main_t *em;
196
197 em = &ethernet_main;
198 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
199
200 vec_validate (hi->hw_address,
201 STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1);
202 clib_memcpy (hi->hw_address, mac_address, vec_len (hi->hw_address));
203
204 clib_memcpy (ei->address, (u8 *) mac_address, sizeof (ei->address));
205 ethernet_arp_change_mac (hi->sw_if_index);
206 ethernet_ndp_change_mac (hi->sw_if_index);
207
208 return (NULL);
209}
210
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700211/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
213 .name = "Ethernet",
214 .format_address = format_ethernet_address,
215 .format_header = format_ethernet_header_with_length,
216 .unformat_hw_address = unformat_ethernet_address,
217 .unformat_header = unformat_ethernet_header,
Neale Rannsb80c5362016-10-08 13:03:40 +0100218 .build_rewrite = ethernet_build_rewrite,
219 .update_adjacency = ethernet_update_adjacency,
Neale Ranns3be6b282016-12-20 14:24:01 +0000220 .mac_addr_change_function = ethernet_mac_change,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700222/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700224uword
225unformat_ethernet_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700227 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
228 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700230 ethernet_main_t *em = &ethernet_main;
231 ethernet_interface_t *eif;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700233 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 return 0;
235
236 eif = ethernet_get_interface (em, hw_if_index);
237 if (eif)
238 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700239 *result = hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 return 1;
241 }
242 return 0;
243}
244
245clib_error_t *
246ethernet_register_interface (vnet_main_t * vnm,
247 u32 dev_class_index,
248 u32 dev_instance,
249 u8 * address,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700250 u32 * hw_if_index_return,
251 ethernet_flag_change_function_t flag_change)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700253 ethernet_main_t *em = &ethernet_main;
254 ethernet_interface_t *ei;
255 vnet_hw_interface_t *hi;
256 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 u32 hw_if_index;
258
259 pool_get (em->interfaces, ei);
260 ei->flag_change = flag_change;
261
262 hw_if_index = vnet_register_interface
263 (vnm,
264 dev_class_index, dev_instance,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700265 ethernet_hw_interface_class.index, ei - em->interfaces);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 *hw_if_index_return = hw_if_index;
267
268 hi = vnet_get_hw_interface (vnm, hw_if_index);
269
270 ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
271
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700272 hi->min_packet_bytes = hi->min_supported_packet_bytes =
273 ETHERNET_MIN_PACKET_BYTES;
274 hi->max_packet_bytes = hi->max_supported_packet_bytes =
275 ETHERNET_MAX_PACKET_BYTES;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 hi->per_packet_overhead_bytes =
277 /* preamble */ 8 + /* inter frame gap */ 12;
278
279 /* Standard default ethernet MTU. */
John Lo73f7ef82016-03-03 12:13:11 -0500280 hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
Damjan Marionf1213b82016-03-13 02:22:06 +0100282 clib_memcpy (ei->address, address, sizeof (ei->address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 vec_free (hi->hw_address);
284 vec_add (hi->hw_address, address, sizeof (ei->address));
285
286 if (error)
287 {
288 pool_put (em->interfaces, ei);
289 return error;
290 }
291 return error;
292}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700293
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294void
295ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
296{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700297 ethernet_main_t *em = &ethernet_main;
298 ethernet_interface_t *ei;
299 vnet_hw_interface_t *hi;
300 main_intf_t *main_intf;
301 vlan_table_t *vlan_table;
302 u32 idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304 hi = vnet_get_hw_interface (vnm, hw_if_index);
305 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
306
307 /* Delete vlan mapping table for dot1q and dot1ad. */
308 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700309 if (main_intf->dot1q_vlans)
310 {
311 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
312 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
313 {
314 if (vlan_table->vlans[idx].qinqs)
315 {
316 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
317 }
318 }
319 pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700321 if (main_intf->dot1ad_vlans)
322 {
323 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
324 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
325 {
326 if (vlan_table->vlans[idx].qinqs)
327 {
328 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
329 }
330 }
331 pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700333
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 vnet_delete_hw_interface (vnm, hw_if_index);
335 pool_put (em->interfaces, ei);
336}
337
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700338u32
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
340{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700341 ethernet_main_t *em = &ethernet_main;
342 vnet_hw_interface_t *hi;
343 ethernet_interface_t *ei;
344
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 hi = vnet_get_hw_interface (vnm, hw_if_index);
346
347 ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
348
349 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
350 if (ei->flag_change)
351 return ei->flag_change (vnm, hi, flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700352 return (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353}
354
John Lo405e41b2016-04-23 15:14:12 -0400355/* Echo packets back to ethernet/l2-input. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356static uword
357simulated_ethernet_interface_tx (vlib_main_t * vm,
358 vlib_node_runtime_t * node,
359 vlib_frame_t * frame)
360{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700361 u32 n_left_from, n_left_to_next, n_copy, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 u32 next_index = VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT;
John Lo405e41b2016-04-23 15:14:12 -0400363 u32 i, next_node_index, bvi_flag, sw_if_index;
364 u32 n_pkts = 0, n_bytes = 0;
Damjan Marion586afd72017-04-05 19:18:20 +0200365 u32 thread_index = vm->thread_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700366 vnet_main_t *vnm = vnet_get_main ();
367 vnet_interface_main_t *im = &vnm->interface_main;
368 vlib_node_main_t *nm = &vm->node_main;
John Lo405e41b2016-04-23 15:14:12 -0400369 vlib_node_t *loop_node;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700370 vlib_buffer_t *b;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
John Lo405e41b2016-04-23 15:14:12 -0400372 // check tx node index, it is ethernet-input on loopback create
Damjan Marion607de1a2016-08-16 22:53:54 +0200373 // but can be changed to l2-input if loopback is configured as
John Lo405e41b2016-04-23 15:14:12 -0400374 // BVI of a BD (Bridge Domain).
375 loop_node = vec_elt (nm->nodes, node->node_index);
376 next_node_index = loop_node->next_nodes[next_index];
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700377 bvi_flag = (next_node_index == l2input_node.index) ? 1 : 0;
John Lo405e41b2016-04-23 15:14:12 -0400378
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 n_left_from = frame->n_vectors;
380 from = vlib_frame_args (frame);
381
382 while (n_left_from > 0)
383 {
384 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
385
386 n_copy = clib_min (n_left_from, n_left_to_next);
387
Damjan Marionf1213b82016-03-13 02:22:06 +0100388 clib_memcpy (to_next, from, n_copy * sizeof (from[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 n_left_to_next -= n_copy;
390 n_left_from -= n_copy;
John Lo405e41b2016-04-23 15:14:12 -0400391 i = 0;
392 b = vlib_get_buffer (vm, from[i]);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700393 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
John Lo405e41b2016-04-23 15:14:12 -0400394 while (1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 {
John Lo405e41b2016-04-23 15:14:12 -0400396 // Set up RX and TX indices as if received from a real driver
Damjan Marion607de1a2016-08-16 22:53:54 +0200397 // unless loopback is used as a BVI. For BVI case, leave TX index
John Lo405e41b2016-04-23 15:14:12 -0400398 // and update l2_len in packet as required for l2 forwarding path
399 vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700400 if (bvi_flag)
John Lo20e55512016-09-22 18:24:13 -0400401 {
402 vnet_update_l2_len (b);
403 vnet_buffer (b)->sw_if_index[VLIB_TX] = L2INPUT_BVI;
404 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700405 else
406 vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0;
John Lo405e41b2016-04-23 15:14:12 -0400407
408 i++;
409 n_pkts++;
410 n_bytes += vlib_buffer_length_in_chain (vm, b);
411
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700412 if (i < n_copy)
413 b = vlib_get_buffer (vm, from[i]);
414 else
415 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 }
David Hotham83486fb2016-09-30 16:32:18 +0100417 from += n_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
419 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
John Lo405e41b2016-04-23 15:14:12 -0400420
421 /* increment TX interface stat */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700422 vlib_increment_combined_counter (im->combined_sw_if_counters +
Damjan Marion586afd72017-04-05 19:18:20 +0200423 VNET_INTERFACE_COUNTER_TX,
424 thread_index, sw_if_index, n_pkts,
425 n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 }
427
428 return n_left_from;
429}
430
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700431static u8 *
432format_simulated_ethernet_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433{
434 u32 dev_instance = va_arg (*args, u32);
435 return format (s, "loop%d", dev_instance);
436}
437
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000438static clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700439simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
440 u32 flags)
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000441{
442 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700443 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000444 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
445 return 0;
446}
447
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700448/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
450 .name = "Loopback",
451 .format_device_name = format_simulated_ethernet_name,
452 .tx_function = simulated_ethernet_interface_tx,
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000453 .admin_up_down_function = simulated_ethernet_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700455/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600457
458/*
459 * Maintain a bitmap of allocated loopback instance numbers.
460 */
461#define LOOPBACK_MAX_INSTANCE (16 * 1024)
462
463static u32
464loopback_instance_alloc (u8 is_specified, u32 want)
465{
466 ethernet_main_t *em = &ethernet_main;
467
468 /*
469 * Check for dynamically allocaetd instance number.
470 */
471 if (!is_specified)
472 {
473 u32 bit;
474
475 bit = clib_bitmap_first_clear (em->bm_loopback_instances);
476 if (bit >= LOOPBACK_MAX_INSTANCE)
477 {
478 return ~0;
479 }
480 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
481 bit, 1);
482 return bit;
483 }
484
485 /*
486 * In range?
487 */
488 if (want >= LOOPBACK_MAX_INSTANCE)
489 {
490 return ~0;
491 }
492
493 /*
494 * Already in use?
495 */
496 if (clib_bitmap_get (em->bm_loopback_instances, want))
497 {
498 return ~0;
499 }
500
501 /*
502 * Grant allocation request.
503 */
504 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
505 want, 1);
506
507 return want;
508}
509
510static int
511loopback_instance_free (u32 instance)
512{
513 ethernet_main_t *em = &ethernet_main;
514
515 if (instance >= LOOPBACK_MAX_INSTANCE)
516 {
517 return -1;
518 }
519
520 if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0)
521 {
522 return -1;
523 }
524
525 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
526 instance, 0);
527 return 0;
528}
529
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700530int
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600531vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
532 u8 is_specified, u32 user_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700534 vnet_main_t *vnm = vnet_get_main ();
535 vlib_main_t *vm = vlib_get_main ();
536 clib_error_t *error;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600537 u32 instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538 u8 address[6];
539 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700540 vnet_hw_interface_t *hw_if;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541 u32 slot;
542 int rv = 0;
543
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700544 ASSERT (sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700546 *sw_if_indexp = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
548 memset (address, 0, sizeof (address));
549
550 /*
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600551 * Allocate a loopback instance. Either select on dynamically
552 * or try to use the desired user_instance number.
553 */
554 instance = loopback_instance_alloc (is_specified, user_instance);
555 if (instance == ~0)
556 {
557 return VNET_API_ERROR_INVALID_REGISTRATION;
558 }
559
560 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 * Default MAC address (dead:0000:0000 + instance) is allocated
562 * if zero mac_address is configured. Otherwise, user-configurable MAC
563 * address is programmed on the loopback interface.
564 */
565 if (memcmp (address, mac_address, sizeof (address)))
Damjan Marionf1213b82016-03-13 02:22:06 +0100566 clib_memcpy (address, mac_address, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 else
568 {
569 address[0] = 0xde;
570 address[1] = 0xad;
571 address[5] = instance;
572 }
573
574 error = ethernet_register_interface
575 (vnm,
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600576 ethernet_simulated_device_class.index, instance, address, &hw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 /* flag change */ 0);
578
579 if (error)
580 {
581 rv = VNET_API_ERROR_INVALID_REGISTRATION;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700582 clib_error_report (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583 return rv;
584 }
585
586 hw_if = vnet_get_hw_interface (vnm, hw_if_index);
587 slot = vlib_node_add_named_next_with_slot
588 (vm, hw_if->tx_node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700589 "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
591
592 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700593 vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 *sw_if_indexp = si->sw_if_index;
595 }
596
597 return 0;
598}
599
600static clib_error_t *
601create_simulated_ethernet_interfaces (vlib_main_t * vm,
602 unformat_input_t * input,
603 vlib_cli_command_t * cmd)
604{
605 int rv;
606 u32 sw_if_index;
607 u8 mac_address[6];
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600608 u8 is_specified = 0;
609 u32 user_instance = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610
611 memset (mac_address, 0, sizeof (mac_address));
612
613 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
614 {
615 if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700616 ;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600617 if (unformat (input, "instance %d", &user_instance))
618 is_specified = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700620 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 }
622
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600623 rv = vnet_create_loopback_interface (&sw_if_index, mac_address,
624 is_specified, user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625
626 if (rv)
627 return clib_error_return (0, "vnet_create_loopback_interface failed");
628
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700629 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
630 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 return 0;
632}
633
Billy McFall2d085d92016-09-13 21:47:55 -0400634/*?
635 * Create a loopback interface. Optionally, a MAC Address can be
636 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
637 *
638 * @cliexpar
639 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600640 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
641 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400642 * Example of how to create a loopback interface:
643 * @cliexcmd{loopback create-interface}
644?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700645/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = {
647 .path = "loopback create-interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600648 .short_help = "loopback create-interface [mac <mac-addr>] [instance <instance>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 .function = create_simulated_ethernet_interfaces,
650};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700651/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652
Billy McFall2d085d92016-09-13 21:47:55 -0400653/*?
654 * Create a loopback interface. Optionally, a MAC Address can be
655 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
656 *
657 * @cliexpar
658 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600659 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
660 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400661 * Example of how to create a loopback interface:
662 * @cliexcmd{create loopback interface}
663?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700664/* *INDENT-OFF* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700665VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
666 .path = "create loopback interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600667 .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]",
Alpesh Patel370a24e2016-04-08 07:27:37 -0700668 .function = create_simulated_ethernet_interfaces,
669};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700670/* *INDENT-ON* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700671
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672ethernet_interface_t *
673ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
674{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700675 vnet_hw_interface_t *i =
676 vnet_get_hw_interface (vnet_get_main (), hw_if_index);
677 return (i->hw_class_index ==
678 ethernet_hw_interface_class.
679 index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680}
681
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700682int
683vnet_delete_loopback_interface (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700685 vnet_main_t *vnm = vnet_get_main ();
686 vnet_sw_interface_t *si;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600687 u32 hw_if_index;
688 vnet_hw_interface_t *hw;
689 u32 instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700691 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
693
694 si = vnet_get_sw_interface (vnm, sw_if_index);
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600695 hw_if_index = si->hw_if_index;
696 hw = vnet_get_hw_interface (vnm, hw_if_index);
697 instance = hw->dev_instance;
698
699 if (loopback_instance_free (instance) < 0)
700 {
701 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
702 }
703
704 ethernet_delete_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705
706 return 0;
707}
708
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200709int
710vnet_delete_sub_interface (u32 sw_if_index)
711{
712 vnet_main_t *vnm = vnet_get_main ();
713 int rv = 0;
714
715 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
716 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
717
718
719 vnet_interface_main_t *im = &vnm->interface_main;
720 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
721
722 if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
723 {
724 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
725 u64 sup_and_sub_key =
726 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
727
728 hash_unset_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
729 vnet_delete_sw_interface (vnm, sw_if_index);
730 }
731 else
732 {
733 rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
734 }
735 return rv;
736}
737
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738static clib_error_t *
739delete_simulated_ethernet_interfaces (vlib_main_t * vm,
740 unformat_input_t * input,
741 vlib_cli_command_t * cmd)
742{
743 int rv;
744 u32 sw_if_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700745 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746
747 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
748 {
749 if (unformat (input, "intfc %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700750 unformat_vnet_sw_interface, vnm, &sw_if_index))
751 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700753 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754 }
755
756 if (sw_if_index == ~0)
757 return clib_error_return (0, "interface not specified");
758
759 rv = vnet_delete_loopback_interface (sw_if_index);
760
761 if (rv)
762 return clib_error_return (0, "vnet_delete_loopback_interface failed");
763
764 return 0;
765}
766
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200767static clib_error_t *
768delete_sub_interface (vlib_main_t * vm,
769 unformat_input_t * input, vlib_cli_command_t * cmd)
770{
771 int rv = 0;
772 u32 sw_if_index = ~0;
773 vnet_main_t *vnm = vnet_get_main ();
774
775 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
776 {
777 if (unformat
778 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
779 ;
780 else
781 break;
782 }
783 if (sw_if_index == ~0)
784 return clib_error_return (0, "interface doesn't exist");
785
786 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
787 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
788 else
789 rv = vnet_delete_sub_interface (sw_if_index);
790 if (rv)
791 return clib_error_return (0, "delete_subinterface_interface failed");
792 return 0;
793}
794
Billy McFall2d085d92016-09-13 21:47:55 -0400795/*?
796 * Delete a loopback interface.
797 *
798 * @cliexpar
799 * The following two command syntaxes are equivalent:
800 * @cliexcmd{loopback delete-interface intfc <interface>}
801 * @cliexcmd{delete loopback interface intfc <interface>}
802 * Example of how to delete a loopback interface:
803 * @cliexcmd{loopback delete-interface intfc loop0}
804?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700805/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
807 .path = "loopback delete-interface",
Billy McFall2d085d92016-09-13 21:47:55 -0400808 .short_help = "loopback delete-interface intfc <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809 .function = delete_simulated_ethernet_interfaces,
810};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700811/* *INDENT-ON* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -0700812
Billy McFall2d085d92016-09-13 21:47:55 -0400813/*?
814 * Delete a loopback interface.
815 *
816 * @cliexpar
817 * The following two command syntaxes are equivalent:
818 * @cliexcmd{loopback delete-interface intfc <interface>}
819 * @cliexcmd{delete loopback interface intfc <interface>}
820 * Example of how to delete a loopback interface:
821 * @cliexcmd{delete loopback interface intfc loop0}
822?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700823/* *INDENT-OFF* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -0700824VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
825 .path = "delete loopback interface",
826 .short_help = "delete loopback interface intfc <interface>",
827 .function = delete_simulated_ethernet_interfaces,
828};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700829/* *INDENT-ON* */
830
Billy McFall2d085d92016-09-13 21:47:55 -0400831/*?
832 * Delete a sub-interface.
833 *
834 * @cliexpar
835 * Example of how to delete a sub-interface:
836 * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
837?*/
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200838/* *INDENT-OFF* */
839VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
840 .path = "delete sub-interface",
841 .short_help = "delete sub-interface <interface>",
842 .function = delete_sub_interface,
843};
844/* *INDENT-ON* */
845
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700846/*
847 * fd.io coding-style-patch-verification: ON
848 *
849 * Local Variables:
850 * eval: (c-set-style "gnu")
851 * End:
852 */