blob: 1c1f4353983233c4856eb0891c01cd5baee9c391 [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 Rannsb80c5362016-10-08 13:03:40 +010054/**
55 * @brief build a rewrite string to use for sending packets of type 'link_type'
56 * to 'dst_address'
57 */
58u8 *
59ethernet_build_rewrite (vnet_main_t * vnm,
60 u32 sw_if_index,
61 vnet_link_t link_type, const void *dst_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -070062{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070063 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;
Neale Rannsb80c5362016-10-08 13:03:40 +010068 ethernet_header_t *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -070069 ethernet_type_t type;
70 uword n_bytes = sizeof (h[0]);
Neale Rannsb80c5362016-10-08 13:03:40 +010071 u8 *rewrite = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070073 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 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
Neale Rannsb80c5362016-10-08 13:03:40 +010093 switch (link_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070094 {
Neale Rannsb80c5362016-10-08 13:03:40 +010095#define _(a,b) case VNET_LINK_##a: type = ETHERNET_TYPE_##b; break
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070096 _(IP4, IP4);
97 _(IP6, IP6);
Neale Rannsb80c5362016-10-08 13:03:40 +010098 _(MPLS, MPLS_UNICAST);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070099 _(ARP, ARP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700101 default:
Neale Rannsb80c5362016-10-08 13:03:40 +0100102 return NULL;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700103 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
Neale Rannsb80c5362016-10-08 13:03:40 +0100105 vec_validate (rewrite, n_bytes - 1);
106 h = (ethernet_header_t *) rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 ei = pool_elt_at_index (em->interfaces, hw->hw_instance);
Damjan Marionf1213b82016-03-13 02:22:06 +0100108 clib_memcpy (h->src_address, ei->address, sizeof (h->src_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 if (dst_address)
Damjan Marionf1213b82016-03-13 02:22:06 +0100110 clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700112 memset (h->dst_address, ~0, sizeof (h->dst_address)); /* broadcast */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700114 if (sub_sw->sub.eth.flags.one_tag)
115 {
116 ethernet_vlan_header_t *outer = (void *) (h + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700118 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);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700125 }
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);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700131 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);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700141 }
142 else
143 {
144 h->type = clib_host_to_net_u16 (type);
145 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
Neale Rannsb80c5362016-10-08 13:03:40 +0100147 return (rewrite);
148}
149
150void
151ethernet_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 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169}
170
Neale Ranns3be6b282016-12-20 14:24:01 +0000171static clib_error_t *
172ethernet_mac_change (vnet_hw_interface_t * hi, char *mac_address)
173{
174 ethernet_interface_t *ei;
175 ethernet_main_t *em;
176
177 em = &ethernet_main;
178 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
179
180 vec_validate (hi->hw_address,
181 STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1);
182 clib_memcpy (hi->hw_address, mac_address, vec_len (hi->hw_address));
183
184 clib_memcpy (ei->address, (u8 *) mac_address, sizeof (ei->address));
185 ethernet_arp_change_mac (hi->sw_if_index);
186 ethernet_ndp_change_mac (hi->sw_if_index);
187
188 return (NULL);
189}
190
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700191/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
193 .name = "Ethernet",
194 .format_address = format_ethernet_address,
195 .format_header = format_ethernet_header_with_length,
196 .unformat_hw_address = unformat_ethernet_address,
197 .unformat_header = unformat_ethernet_header,
Neale Rannsb80c5362016-10-08 13:03:40 +0100198 .build_rewrite = ethernet_build_rewrite,
199 .update_adjacency = ethernet_update_adjacency,
Neale Ranns3be6b282016-12-20 14:24:01 +0000200 .mac_addr_change_function = ethernet_mac_change,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700202/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700204uword
205unformat_ethernet_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700207 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
208 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700210 ethernet_main_t *em = &ethernet_main;
211 ethernet_interface_t *eif;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700213 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 return 0;
215
216 eif = ethernet_get_interface (em, hw_if_index);
217 if (eif)
218 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700219 *result = hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 return 1;
221 }
222 return 0;
223}
224
225clib_error_t *
226ethernet_register_interface (vnet_main_t * vnm,
227 u32 dev_class_index,
228 u32 dev_instance,
229 u8 * address,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700230 u32 * hw_if_index_return,
231 ethernet_flag_change_function_t flag_change)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700233 ethernet_main_t *em = &ethernet_main;
234 ethernet_interface_t *ei;
235 vnet_hw_interface_t *hi;
236 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 u32 hw_if_index;
238
239 pool_get (em->interfaces, ei);
240 ei->flag_change = flag_change;
241
242 hw_if_index = vnet_register_interface
243 (vnm,
244 dev_class_index, dev_instance,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700245 ethernet_hw_interface_class.index, ei - em->interfaces);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 *hw_if_index_return = hw_if_index;
247
248 hi = vnet_get_hw_interface (vnm, hw_if_index);
249
250 ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
251
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700252 hi->min_packet_bytes = hi->min_supported_packet_bytes =
253 ETHERNET_MIN_PACKET_BYTES;
254 hi->max_packet_bytes = hi->max_supported_packet_bytes =
255 ETHERNET_MAX_PACKET_BYTES;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 hi->per_packet_overhead_bytes =
257 /* preamble */ 8 + /* inter frame gap */ 12;
258
259 /* Standard default ethernet MTU. */
John Lo73f7ef82016-03-03 12:13:11 -0500260 hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
Damjan Marionf1213b82016-03-13 02:22:06 +0100262 clib_memcpy (ei->address, address, sizeof (ei->address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 vec_free (hi->hw_address);
264 vec_add (hi->hw_address, address, sizeof (ei->address));
265
266 if (error)
267 {
268 pool_put (em->interfaces, ei);
269 return error;
270 }
271 return error;
272}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700273
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274void
275ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
276{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700277 ethernet_main_t *em = &ethernet_main;
278 ethernet_interface_t *ei;
279 vnet_hw_interface_t *hi;
280 main_intf_t *main_intf;
281 vlan_table_t *vlan_table;
282 u32 idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
284 hi = vnet_get_hw_interface (vnm, hw_if_index);
285 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
286
287 /* Delete vlan mapping table for dot1q and dot1ad. */
288 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700289 if (main_intf->dot1q_vlans)
290 {
291 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
292 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
293 {
294 if (vlan_table->vlans[idx].qinqs)
295 {
296 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
297 }
298 }
299 pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700301 if (main_intf->dot1ad_vlans)
302 {
303 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
304 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
305 {
306 if (vlan_table->vlans[idx].qinqs)
307 {
308 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
309 }
310 }
311 pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700313
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 vnet_delete_hw_interface (vnm, hw_if_index);
315 pool_put (em->interfaces, ei);
316}
317
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700318u32
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
320{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700321 ethernet_main_t *em = &ethernet_main;
322 vnet_hw_interface_t *hi;
323 ethernet_interface_t *ei;
324
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 hi = vnet_get_hw_interface (vnm, hw_if_index);
326
327 ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
328
329 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
330 if (ei->flag_change)
331 return ei->flag_change (vnm, hi, flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700332 return (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333}
334
John Lo405e41b2016-04-23 15:14:12 -0400335/* Echo packets back to ethernet/l2-input. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336static uword
337simulated_ethernet_interface_tx (vlib_main_t * vm,
338 vlib_node_runtime_t * node,
339 vlib_frame_t * frame)
340{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700341 u32 n_left_from, n_left_to_next, n_copy, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 u32 next_index = VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT;
John Lo405e41b2016-04-23 15:14:12 -0400343 u32 i, next_node_index, bvi_flag, sw_if_index;
344 u32 n_pkts = 0, n_bytes = 0;
345 u32 cpu_index = vm->cpu_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700346 vnet_main_t *vnm = vnet_get_main ();
347 vnet_interface_main_t *im = &vnm->interface_main;
348 vlib_node_main_t *nm = &vm->node_main;
John Lo405e41b2016-04-23 15:14:12 -0400349 vlib_node_t *loop_node;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700350 vlib_buffer_t *b;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
John Lo405e41b2016-04-23 15:14:12 -0400352 // check tx node index, it is ethernet-input on loopback create
Damjan Marion607de1a2016-08-16 22:53:54 +0200353 // but can be changed to l2-input if loopback is configured as
John Lo405e41b2016-04-23 15:14:12 -0400354 // BVI of a BD (Bridge Domain).
355 loop_node = vec_elt (nm->nodes, node->node_index);
356 next_node_index = loop_node->next_nodes[next_index];
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700357 bvi_flag = (next_node_index == l2input_node.index) ? 1 : 0;
John Lo405e41b2016-04-23 15:14:12 -0400358
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 n_left_from = frame->n_vectors;
360 from = vlib_frame_args (frame);
361
362 while (n_left_from > 0)
363 {
364 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
365
366 n_copy = clib_min (n_left_from, n_left_to_next);
367
Damjan Marionf1213b82016-03-13 02:22:06 +0100368 clib_memcpy (to_next, from, n_copy * sizeof (from[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 n_left_to_next -= n_copy;
370 n_left_from -= n_copy;
John Lo405e41b2016-04-23 15:14:12 -0400371 i = 0;
372 b = vlib_get_buffer (vm, from[i]);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700373 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
John Lo405e41b2016-04-23 15:14:12 -0400374 while (1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 {
John Lo405e41b2016-04-23 15:14:12 -0400376 // Set up RX and TX indices as if received from a real driver
Damjan Marion607de1a2016-08-16 22:53:54 +0200377 // unless loopback is used as a BVI. For BVI case, leave TX index
John Lo405e41b2016-04-23 15:14:12 -0400378 // and update l2_len in packet as required for l2 forwarding path
379 vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700380 if (bvi_flag)
John Lo20e55512016-09-22 18:24:13 -0400381 {
382 vnet_update_l2_len (b);
383 vnet_buffer (b)->sw_if_index[VLIB_TX] = L2INPUT_BVI;
384 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700385 else
386 vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0;
John Lo405e41b2016-04-23 15:14:12 -0400387
388 i++;
389 n_pkts++;
390 n_bytes += vlib_buffer_length_in_chain (vm, b);
391
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700392 if (i < n_copy)
393 b = vlib_get_buffer (vm, from[i]);
394 else
395 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 }
David Hotham83486fb2016-09-30 16:32:18 +0100397 from += n_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398
399 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
John Lo405e41b2016-04-23 15:14:12 -0400400
401 /* increment TX interface stat */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700402 vlib_increment_combined_counter (im->combined_sw_if_counters +
403 VNET_INTERFACE_COUNTER_TX, cpu_index,
404 sw_if_index, n_pkts, n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 }
406
407 return n_left_from;
408}
409
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700410static u8 *
411format_simulated_ethernet_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412{
413 u32 dev_instance = va_arg (*args, u32);
414 return format (s, "loop%d", dev_instance);
415}
416
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000417static clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700418simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
419 u32 flags)
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000420{
421 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700422 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000423 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
424 return 0;
425}
426
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700427/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
429 .name = "Loopback",
430 .format_device_name = format_simulated_ethernet_name,
431 .tx_function = simulated_ethernet_interface_tx,
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000432 .admin_up_down_function = simulated_ethernet_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700434/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700436int
437vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700439 vnet_main_t *vnm = vnet_get_main ();
440 vlib_main_t *vm = vlib_get_main ();
441 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442 static u32 instance;
443 u8 address[6];
444 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700445 vnet_hw_interface_t *hw_if;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 u32 slot;
447 int rv = 0;
448
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700449 ASSERT (sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700451 *sw_if_indexp = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452
453 memset (address, 0, sizeof (address));
454
455 /*
456 * Default MAC address (dead:0000:0000 + instance) is allocated
457 * if zero mac_address is configured. Otherwise, user-configurable MAC
458 * address is programmed on the loopback interface.
459 */
460 if (memcmp (address, mac_address, sizeof (address)))
Damjan Marionf1213b82016-03-13 02:22:06 +0100461 clib_memcpy (address, mac_address, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 else
463 {
464 address[0] = 0xde;
465 address[1] = 0xad;
466 address[5] = instance;
467 }
468
469 error = ethernet_register_interface
470 (vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700471 ethernet_simulated_device_class.index, instance++, address, &hw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 /* flag change */ 0);
473
474 if (error)
475 {
476 rv = VNET_API_ERROR_INVALID_REGISTRATION;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700477 clib_error_report (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478 return rv;
479 }
480
481 hw_if = vnet_get_hw_interface (vnm, hw_if_index);
482 slot = vlib_node_add_named_next_with_slot
483 (vm, hw_if->tx_node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700484 "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
486
487 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700488 vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 *sw_if_indexp = si->sw_if_index;
490 }
491
492 return 0;
493}
494
495static clib_error_t *
496create_simulated_ethernet_interfaces (vlib_main_t * vm,
497 unformat_input_t * input,
498 vlib_cli_command_t * cmd)
499{
500 int rv;
501 u32 sw_if_index;
502 u8 mac_address[6];
503
504 memset (mac_address, 0, sizeof (mac_address));
505
506 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
507 {
508 if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700509 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700511 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 }
513
514 rv = vnet_create_loopback_interface (&sw_if_index, mac_address);
515
516 if (rv)
517 return clib_error_return (0, "vnet_create_loopback_interface failed");
518
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700519 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
520 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 return 0;
522}
523
Billy McFall2d085d92016-09-13 21:47:55 -0400524/*?
525 * Create a loopback interface. Optionally, a MAC Address can be
526 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
527 *
528 * @cliexpar
529 * The following two command syntaxes are equivalent:
530 * @cliexcmd{loopback create-interface [mac <mac-addr>]}
531 * @cliexcmd{create loopback interface [mac <mac-addr>]}
532 * Example of how to create a loopback interface:
533 * @cliexcmd{loopback create-interface}
534?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700535/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = {
537 .path = "loopback create-interface",
Billy McFall2d085d92016-09-13 21:47:55 -0400538 .short_help = "loopback create-interface [mac <mac-addr>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 .function = create_simulated_ethernet_interfaces,
540};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700541/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Billy McFall2d085d92016-09-13 21:47:55 -0400543/*?
544 * Create a loopback interface. Optionally, a MAC Address can be
545 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
546 *
547 * @cliexpar
548 * The following two command syntaxes are equivalent:
549 * @cliexcmd{loopback create-interface [mac <mac-addr>]}
550 * @cliexcmd{create loopback interface [mac <mac-addr>]}
551 * Example of how to create a loopback interface:
552 * @cliexcmd{create loopback interface}
553?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700554/* *INDENT-OFF* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700555VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
556 .path = "create loopback interface",
557 .short_help = "create loopback interface [mac <mac-addr>]",
558 .function = create_simulated_ethernet_interfaces,
559};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700560/* *INDENT-ON* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700561
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562ethernet_interface_t *
563ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
564{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700565 vnet_hw_interface_t *i =
566 vnet_get_hw_interface (vnet_get_main (), hw_if_index);
567 return (i->hw_class_index ==
568 ethernet_hw_interface_class.
569 index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570}
571
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700572int
573vnet_delete_loopback_interface (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700575 vnet_main_t *vnm = vnet_get_main ();
576 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700578 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
580
581 si = vnet_get_sw_interface (vnm, sw_if_index);
582 ethernet_delete_interface (vnm, si->hw_if_index);
583
584 return 0;
585}
586
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200587int
588vnet_delete_sub_interface (u32 sw_if_index)
589{
590 vnet_main_t *vnm = vnet_get_main ();
591 int rv = 0;
592
593 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
594 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
595
596
597 vnet_interface_main_t *im = &vnm->interface_main;
598 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
599
600 if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
601 {
602 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
603 u64 sup_and_sub_key =
604 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
605
606 hash_unset_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
607 vnet_delete_sw_interface (vnm, sw_if_index);
608 }
609 else
610 {
611 rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
612 }
613 return rv;
614}
615
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616static clib_error_t *
617delete_simulated_ethernet_interfaces (vlib_main_t * vm,
618 unformat_input_t * input,
619 vlib_cli_command_t * cmd)
620{
621 int rv;
622 u32 sw_if_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700623 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624
625 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
626 {
627 if (unformat (input, "intfc %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700628 unformat_vnet_sw_interface, vnm, &sw_if_index))
629 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700631 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 }
633
634 if (sw_if_index == ~0)
635 return clib_error_return (0, "interface not specified");
636
637 rv = vnet_delete_loopback_interface (sw_if_index);
638
639 if (rv)
640 return clib_error_return (0, "vnet_delete_loopback_interface failed");
641
642 return 0;
643}
644
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200645static clib_error_t *
646delete_sub_interface (vlib_main_t * vm,
647 unformat_input_t * input, vlib_cli_command_t * cmd)
648{
649 int rv = 0;
650 u32 sw_if_index = ~0;
651 vnet_main_t *vnm = vnet_get_main ();
652
653 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
654 {
655 if (unformat
656 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
657 ;
658 else
659 break;
660 }
661 if (sw_if_index == ~0)
662 return clib_error_return (0, "interface doesn't exist");
663
664 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
665 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
666 else
667 rv = vnet_delete_sub_interface (sw_if_index);
668 if (rv)
669 return clib_error_return (0, "delete_subinterface_interface failed");
670 return 0;
671}
672
Billy McFall2d085d92016-09-13 21:47:55 -0400673/*?
674 * Delete a loopback interface.
675 *
676 * @cliexpar
677 * The following two command syntaxes are equivalent:
678 * @cliexcmd{loopback delete-interface intfc <interface>}
679 * @cliexcmd{delete loopback interface intfc <interface>}
680 * Example of how to delete a loopback interface:
681 * @cliexcmd{loopback delete-interface intfc loop0}
682?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700683/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
685 .path = "loopback delete-interface",
Billy McFall2d085d92016-09-13 21:47:55 -0400686 .short_help = "loopback delete-interface intfc <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 .function = delete_simulated_ethernet_interfaces,
688};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700689/* *INDENT-ON* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -0700690
Billy McFall2d085d92016-09-13 21:47:55 -0400691/*?
692 * Delete a loopback interface.
693 *
694 * @cliexpar
695 * The following two command syntaxes are equivalent:
696 * @cliexcmd{loopback delete-interface intfc <interface>}
697 * @cliexcmd{delete loopback interface intfc <interface>}
698 * Example of how to delete a loopback interface:
699 * @cliexcmd{delete loopback interface intfc loop0}
700?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700701/* *INDENT-OFF* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -0700702VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
703 .path = "delete loopback interface",
704 .short_help = "delete loopback interface intfc <interface>",
705 .function = delete_simulated_ethernet_interfaces,
706};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700707/* *INDENT-ON* */
708
Billy McFall2d085d92016-09-13 21:47:55 -0400709/*?
710 * Delete a sub-interface.
711 *
712 * @cliexpar
713 * Example of how to delete a sub-interface:
714 * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
715?*/
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200716/* *INDENT-OFF* */
717VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
718 .path = "delete sub-interface",
719 .short_help = "delete sub-interface <interface>",
720 .function = delete_sub_interface,
721};
722/* *INDENT-ON* */
723
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700724/*
725 * fd.io coding-style-patch-verification: ON
726 *
727 * Local Variables:
728 * eval: (c-set-style "gnu")
729 * End:
730 */