blob: 3e78a49d62b1d5a125af0e1a5951793545fed5e6 [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;
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020092 u8 is_p2p = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020094 if (sub_sw->type == VNET_SW_INTERFACE_TYPE_P2P)
95 is_p2p = 1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070096 if (sub_sw != sup_sw)
97 {
98 if (sub_sw->sub.eth.flags.one_tag)
99 {
100 n_bytes += sizeof (ethernet_vlan_header_t);
101 }
102 else if (sub_sw->sub.eth.flags.two_tags)
103 {
104 n_bytes += 2 * (sizeof (ethernet_vlan_header_t));
105 }
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200106 else if (PREDICT_FALSE (is_p2p))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700107 {
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200108 n_bytes = sizeof (ethernet_header_t);
109 }
110 if (PREDICT_FALSE (!is_p2p))
111 {
112 // Check for encaps that are not supported for L3 interfaces
113 if (!(sub_sw->sub.eth.flags.exact_match) ||
114 (sub_sw->sub.eth.flags.default_sub) ||
115 (sub_sw->sub.eth.flags.outer_vlan_id_any) ||
116 (sub_sw->sub.eth.flags.inner_vlan_id_any))
117 {
118 return 0;
119 }
120 }
121 else
122 {
123 n_bytes = sizeof (ethernet_header_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700124 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Neale Rannsb80c5362016-10-08 13:03:40 +0100127 switch (link_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700128 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100129#define _(a,b) case VNET_LINK_##a: type = ETHERNET_TYPE_##b; break
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700130 _(IP4, IP4);
131 _(IP6, IP6);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800132 _(MPLS, MPLS);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700133 _(ARP, ARP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700135 default:
Neale Rannsb80c5362016-10-08 13:03:40 +0100136 return NULL;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700137 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
Neale Rannsb80c5362016-10-08 13:03:40 +0100139 vec_validate (rewrite, n_bytes - 1);
140 h = (ethernet_header_t *) rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 ei = pool_elt_at_index (em->interfaces, hw->hw_instance);
Damjan Marionf1213b82016-03-13 02:22:06 +0100142 clib_memcpy (h->src_address, ei->address, sizeof (h->src_address));
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200143 if (is_p2p)
144 {
145 clib_memcpy (h->dst_address, sub_sw->p2p.client_mac,
146 sizeof (h->dst_address));
147 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 else
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200149 {
150 if (dst_address)
151 clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address));
152 else
153 memset (h->dst_address, ~0, sizeof (h->dst_address)); /* broadcast */
154 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200156 if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.one_tag)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700157 {
158 ethernet_vlan_header_t *outer = (void *) (h + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700160 h->type = sub_sw->sub.eth.flags.dot1ad ?
161 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
162 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
163 outer->priority_cfi_and_id =
164 clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
165 outer->type = clib_host_to_net_u16 (type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700167 }
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200168 else if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.two_tags)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700169 {
170 ethernet_vlan_header_t *outer = (void *) (h + 1);
171 ethernet_vlan_header_t *inner = (void *) (outer + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700173 h->type = sub_sw->sub.eth.flags.dot1ad ?
174 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
175 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
176 outer->priority_cfi_and_id =
177 clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
178 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
179 inner->priority_cfi_and_id =
180 clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id);
181 inner->type = clib_host_to_net_u16 (type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700183 }
184 else
185 {
186 h->type = clib_host_to_net_u16 (type);
187 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
Neale Rannsb80c5362016-10-08 13:03:40 +0100189 return (rewrite);
190}
191
192void
193ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
194{
195 ip_adjacency_t *adj;
196
197 adj = adj_get (ai);
198
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200199 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
200 if (si->type == VNET_SW_INTERFACE_TYPE_P2P)
201 {
202 default_update_adjacency (vnm, sw_if_index, ai);
203 }
204 else if (FIB_PROTOCOL_IP4 == adj->ia_nh_proto)
Neale Rannsb80c5362016-10-08 13:03:40 +0100205 {
206 arp_update_adjacency (vnm, sw_if_index, ai);
207 }
208 else if (FIB_PROTOCOL_IP6 == adj->ia_nh_proto)
209 {
210 ip6_ethernet_update_adjacency (vnm, sw_if_index, ai);
211 }
212 else
213 {
214 ASSERT (0);
215 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216}
217
Neale Ranns3be6b282016-12-20 14:24:01 +0000218static clib_error_t *
219ethernet_mac_change (vnet_hw_interface_t * hi, char *mac_address)
220{
221 ethernet_interface_t *ei;
222 ethernet_main_t *em;
223
224 em = &ethernet_main;
225 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
226
227 vec_validate (hi->hw_address,
228 STRUCT_SIZE_OF (ethernet_header_t, src_address) - 1);
229 clib_memcpy (hi->hw_address, mac_address, vec_len (hi->hw_address));
230
231 clib_memcpy (ei->address, (u8 *) mac_address, sizeof (ei->address));
232 ethernet_arp_change_mac (hi->sw_if_index);
233 ethernet_ndp_change_mac (hi->sw_if_index);
234
235 return (NULL);
236}
237
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700238/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
240 .name = "Ethernet",
241 .format_address = format_ethernet_address,
242 .format_header = format_ethernet_header_with_length,
243 .unformat_hw_address = unformat_ethernet_address,
244 .unformat_header = unformat_ethernet_header,
Neale Rannsb80c5362016-10-08 13:03:40 +0100245 .build_rewrite = ethernet_build_rewrite,
246 .update_adjacency = ethernet_update_adjacency,
Neale Ranns3be6b282016-12-20 14:24:01 +0000247 .mac_addr_change_function = ethernet_mac_change,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700249/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700251uword
252unformat_ethernet_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700254 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
255 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700257 ethernet_main_t *em = &ethernet_main;
258 ethernet_interface_t *eif;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700260 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 return 0;
262
263 eif = ethernet_get_interface (em, hw_if_index);
264 if (eif)
265 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700266 *result = hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267 return 1;
268 }
269 return 0;
270}
271
272clib_error_t *
273ethernet_register_interface (vnet_main_t * vnm,
274 u32 dev_class_index,
275 u32 dev_instance,
276 u8 * address,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700277 u32 * hw_if_index_return,
278 ethernet_flag_change_function_t flag_change)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700280 ethernet_main_t *em = &ethernet_main;
281 ethernet_interface_t *ei;
282 vnet_hw_interface_t *hi;
283 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 u32 hw_if_index;
285
286 pool_get (em->interfaces, ei);
287 ei->flag_change = flag_change;
288
289 hw_if_index = vnet_register_interface
290 (vnm,
291 dev_class_index, dev_instance,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700292 ethernet_hw_interface_class.index, ei - em->interfaces);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 *hw_if_index_return = hw_if_index;
294
295 hi = vnet_get_hw_interface (vnm, hw_if_index);
296
297 ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
298
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700299 hi->min_packet_bytes = hi->min_supported_packet_bytes =
300 ETHERNET_MIN_PACKET_BYTES;
301 hi->max_packet_bytes = hi->max_supported_packet_bytes =
302 ETHERNET_MAX_PACKET_BYTES;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 hi->per_packet_overhead_bytes =
304 /* preamble */ 8 + /* inter frame gap */ 12;
305
306 /* Standard default ethernet MTU. */
John Lo73f7ef82016-03-03 12:13:11 -0500307 hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
Damjan Marionf1213b82016-03-13 02:22:06 +0100309 clib_memcpy (ei->address, address, sizeof (ei->address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310 vec_free (hi->hw_address);
311 vec_add (hi->hw_address, address, sizeof (ei->address));
312
313 if (error)
314 {
315 pool_put (em->interfaces, ei);
316 return error;
317 }
318 return error;
319}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700320
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321void
322ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
323{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700324 ethernet_main_t *em = &ethernet_main;
325 ethernet_interface_t *ei;
326 vnet_hw_interface_t *hi;
327 main_intf_t *main_intf;
328 vlan_table_t *vlan_table;
329 u32 idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331 hi = vnet_get_hw_interface (vnm, hw_if_index);
332 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
333
334 /* Delete vlan mapping table for dot1q and dot1ad. */
335 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700336 if (main_intf->dot1q_vlans)
337 {
338 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
339 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
340 {
341 if (vlan_table->vlans[idx].qinqs)
342 {
343 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
344 }
345 }
346 pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700348 if (main_intf->dot1ad_vlans)
349 {
350 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
351 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
352 {
353 if (vlan_table->vlans[idx].qinqs)
354 {
355 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
356 }
357 }
358 pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700360
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 vnet_delete_hw_interface (vnm, hw_if_index);
362 pool_put (em->interfaces, ei);
363}
364
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700365u32
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
367{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700368 ethernet_main_t *em = &ethernet_main;
369 vnet_hw_interface_t *hi;
370 ethernet_interface_t *ei;
371
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 hi = vnet_get_hw_interface (vnm, hw_if_index);
373
374 ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
375
376 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
377 if (ei->flag_change)
378 return ei->flag_change (vnm, hi, flags);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700379 return (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380}
381
John Lo405e41b2016-04-23 15:14:12 -0400382/* Echo packets back to ethernet/l2-input. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383static uword
384simulated_ethernet_interface_tx (vlib_main_t * vm,
385 vlib_node_runtime_t * node,
386 vlib_frame_t * frame)
387{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700388 u32 n_left_from, n_left_to_next, n_copy, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 u32 next_index = VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT;
John Lo405e41b2016-04-23 15:14:12 -0400390 u32 i, next_node_index, bvi_flag, sw_if_index;
391 u32 n_pkts = 0, n_bytes = 0;
Damjan Marion586afd72017-04-05 19:18:20 +0200392 u32 thread_index = vm->thread_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700393 vnet_main_t *vnm = vnet_get_main ();
394 vnet_interface_main_t *im = &vnm->interface_main;
395 vlib_node_main_t *nm = &vm->node_main;
John Lo405e41b2016-04-23 15:14:12 -0400396 vlib_node_t *loop_node;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700397 vlib_buffer_t *b;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398
John Lo405e41b2016-04-23 15:14:12 -0400399 // check tx node index, it is ethernet-input on loopback create
Damjan Marion607de1a2016-08-16 22:53:54 +0200400 // but can be changed to l2-input if loopback is configured as
John Lo405e41b2016-04-23 15:14:12 -0400401 // BVI of a BD (Bridge Domain).
402 loop_node = vec_elt (nm->nodes, node->node_index);
403 next_node_index = loop_node->next_nodes[next_index];
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700404 bvi_flag = (next_node_index == l2input_node.index) ? 1 : 0;
John Lo405e41b2016-04-23 15:14:12 -0400405
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 n_left_from = frame->n_vectors;
407 from = vlib_frame_args (frame);
408
409 while (n_left_from > 0)
410 {
411 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
412
413 n_copy = clib_min (n_left_from, n_left_to_next);
414
Damjan Marionf1213b82016-03-13 02:22:06 +0100415 clib_memcpy (to_next, from, n_copy * sizeof (from[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 n_left_to_next -= n_copy;
417 n_left_from -= n_copy;
John Lo405e41b2016-04-23 15:14:12 -0400418 i = 0;
419 b = vlib_get_buffer (vm, from[i]);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700420 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX];
John Lo405e41b2016-04-23 15:14:12 -0400421 while (1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 {
John Lo405e41b2016-04-23 15:14:12 -0400423 // Set up RX and TX indices as if received from a real driver
Damjan Marion607de1a2016-08-16 22:53:54 +0200424 // unless loopback is used as a BVI. For BVI case, leave TX index
John Lo405e41b2016-04-23 15:14:12 -0400425 // and update l2_len in packet as required for l2 forwarding path
426 vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700427 if (bvi_flag)
John Lo20e55512016-09-22 18:24:13 -0400428 {
429 vnet_update_l2_len (b);
430 vnet_buffer (b)->sw_if_index[VLIB_TX] = L2INPUT_BVI;
431 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700432 else
433 vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32) ~ 0;
John Lo405e41b2016-04-23 15:14:12 -0400434
435 i++;
436 n_pkts++;
437 n_bytes += vlib_buffer_length_in_chain (vm, b);
438
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700439 if (i < n_copy)
440 b = vlib_get_buffer (vm, from[i]);
441 else
442 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 }
David Hotham83486fb2016-09-30 16:32:18 +0100444 from += n_copy;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445
446 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
John Lo405e41b2016-04-23 15:14:12 -0400447
448 /* increment TX interface stat */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700449 vlib_increment_combined_counter (im->combined_sw_if_counters +
Damjan Marion586afd72017-04-05 19:18:20 +0200450 VNET_INTERFACE_COUNTER_TX,
451 thread_index, sw_if_index, n_pkts,
452 n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 }
454
455 return n_left_from;
456}
457
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700458static u8 *
459format_simulated_ethernet_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460{
461 u32 dev_instance = va_arg (*args, u32);
462 return format (s, "loop%d", dev_instance);
463}
464
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000465static clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700466simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
467 u32 flags)
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000468{
469 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700470 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000471 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
472 return 0;
473}
474
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700475/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
477 .name = "Loopback",
478 .format_device_name = format_simulated_ethernet_name,
479 .tx_function = simulated_ethernet_interface_tx,
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000480 .admin_up_down_function = simulated_ethernet_admin_up_down,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700482/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600484
485/*
486 * Maintain a bitmap of allocated loopback instance numbers.
487 */
488#define LOOPBACK_MAX_INSTANCE (16 * 1024)
489
490static u32
491loopback_instance_alloc (u8 is_specified, u32 want)
492{
493 ethernet_main_t *em = &ethernet_main;
494
495 /*
496 * Check for dynamically allocaetd instance number.
497 */
498 if (!is_specified)
499 {
500 u32 bit;
501
502 bit = clib_bitmap_first_clear (em->bm_loopback_instances);
503 if (bit >= LOOPBACK_MAX_INSTANCE)
504 {
505 return ~0;
506 }
507 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
508 bit, 1);
509 return bit;
510 }
511
512 /*
513 * In range?
514 */
515 if (want >= LOOPBACK_MAX_INSTANCE)
516 {
517 return ~0;
518 }
519
520 /*
521 * Already in use?
522 */
523 if (clib_bitmap_get (em->bm_loopback_instances, want))
524 {
525 return ~0;
526 }
527
528 /*
529 * Grant allocation request.
530 */
531 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
532 want, 1);
533
534 return want;
535}
536
537static int
538loopback_instance_free (u32 instance)
539{
540 ethernet_main_t *em = &ethernet_main;
541
542 if (instance >= LOOPBACK_MAX_INSTANCE)
543 {
544 return -1;
545 }
546
547 if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0)
548 {
549 return -1;
550 }
551
552 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
553 instance, 0);
554 return 0;
555}
556
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700557int
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600558vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
559 u8 is_specified, u32 user_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700561 vnet_main_t *vnm = vnet_get_main ();
562 vlib_main_t *vm = vlib_get_main ();
563 clib_error_t *error;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600564 u32 instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 u8 address[6];
566 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700567 vnet_hw_interface_t *hw_if;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568 u32 slot;
569 int rv = 0;
570
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700571 ASSERT (sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700573 *sw_if_indexp = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
575 memset (address, 0, sizeof (address));
576
577 /*
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600578 * Allocate a loopback instance. Either select on dynamically
579 * or try to use the desired user_instance number.
580 */
581 instance = loopback_instance_alloc (is_specified, user_instance);
582 if (instance == ~0)
583 {
584 return VNET_API_ERROR_INVALID_REGISTRATION;
585 }
586
587 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 * Default MAC address (dead:0000:0000 + instance) is allocated
589 * if zero mac_address is configured. Otherwise, user-configurable MAC
590 * address is programmed on the loopback interface.
591 */
592 if (memcmp (address, mac_address, sizeof (address)))
Damjan Marionf1213b82016-03-13 02:22:06 +0100593 clib_memcpy (address, mac_address, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 else
595 {
596 address[0] = 0xde;
597 address[1] = 0xad;
598 address[5] = instance;
599 }
600
601 error = ethernet_register_interface
602 (vnm,
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600603 ethernet_simulated_device_class.index, instance, address, &hw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604 /* flag change */ 0);
605
606 if (error)
607 {
608 rv = VNET_API_ERROR_INVALID_REGISTRATION;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700609 clib_error_report (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610 return rv;
611 }
612
613 hw_if = vnet_get_hw_interface (vnm, hw_if_index);
614 slot = vlib_node_add_named_next_with_slot
615 (vm, hw_if->tx_node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700616 "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
618
619 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700620 vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 *sw_if_indexp = si->sw_if_index;
622 }
623
624 return 0;
625}
626
627static clib_error_t *
628create_simulated_ethernet_interfaces (vlib_main_t * vm,
629 unformat_input_t * input,
630 vlib_cli_command_t * cmd)
631{
632 int rv;
633 u32 sw_if_index;
634 u8 mac_address[6];
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600635 u8 is_specified = 0;
636 u32 user_instance = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637
638 memset (mac_address, 0, sizeof (mac_address));
639
640 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
641 {
642 if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700643 ;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600644 if (unformat (input, "instance %d", &user_instance))
645 is_specified = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700647 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648 }
649
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600650 rv = vnet_create_loopback_interface (&sw_if_index, mac_address,
651 is_specified, user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652
653 if (rv)
654 return clib_error_return (0, "vnet_create_loopback_interface failed");
655
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700656 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
657 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658 return 0;
659}
660
Billy McFall2d085d92016-09-13 21:47:55 -0400661/*?
662 * Create a loopback interface. Optionally, a MAC Address can be
663 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
664 *
665 * @cliexpar
666 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600667 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
668 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400669 * Example of how to create a loopback interface:
670 * @cliexcmd{loopback create-interface}
671?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700672/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = {
674 .path = "loopback create-interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600675 .short_help = "loopback create-interface [mac <mac-addr>] [instance <instance>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676 .function = create_simulated_ethernet_interfaces,
677};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700678/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679
Billy McFall2d085d92016-09-13 21:47:55 -0400680/*?
681 * Create a loopback interface. Optionally, a MAC Address can be
682 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
683 *
684 * @cliexpar
685 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600686 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
687 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400688 * Example of how to create a loopback interface:
689 * @cliexcmd{create loopback interface}
690?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700691/* *INDENT-OFF* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700692VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
693 .path = "create loopback interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600694 .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]",
Alpesh Patel370a24e2016-04-08 07:27:37 -0700695 .function = create_simulated_ethernet_interfaces,
696};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700697/* *INDENT-ON* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700698
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699ethernet_interface_t *
700ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
701{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700702 vnet_hw_interface_t *i =
703 vnet_get_hw_interface (vnet_get_main (), hw_if_index);
704 return (i->hw_class_index ==
705 ethernet_hw_interface_class.
706 index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707}
708
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700709int
710vnet_delete_loopback_interface (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700712 vnet_main_t *vnm = vnet_get_main ();
713 vnet_sw_interface_t *si;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600714 u32 hw_if_index;
715 vnet_hw_interface_t *hw;
716 u32 instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700718 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
720
721 si = vnet_get_sw_interface (vnm, sw_if_index);
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600722 hw_if_index = si->hw_if_index;
723 hw = vnet_get_hw_interface (vnm, hw_if_index);
724 instance = hw->dev_instance;
725
726 if (loopback_instance_free (instance) < 0)
727 {
728 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
729 }
730
731 ethernet_delete_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732
733 return 0;
734}
735
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200736int
737vnet_delete_sub_interface (u32 sw_if_index)
738{
739 vnet_main_t *vnm = vnet_get_main ();
740 int rv = 0;
741
742 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
743 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
744
745
746 vnet_interface_main_t *im = &vnm->interface_main;
747 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
748
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200749 if (si->type == VNET_SW_INTERFACE_TYPE_SUB ||
750 si->type == VNET_SW_INTERFACE_TYPE_P2P)
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200751 {
752 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
753 u64 sup_and_sub_key =
754 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
755
756 hash_unset_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
757 vnet_delete_sw_interface (vnm, sw_if_index);
758 }
759 else
760 {
761 rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
762 }
763 return rv;
764}
765
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766static clib_error_t *
767delete_simulated_ethernet_interfaces (vlib_main_t * vm,
768 unformat_input_t * input,
769 vlib_cli_command_t * cmd)
770{
771 int rv;
772 u32 sw_if_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700773 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774
775 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
776 {
777 if (unformat (input, "intfc %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700778 unformat_vnet_sw_interface, vnm, &sw_if_index))
779 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700781 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782 }
783
784 if (sw_if_index == ~0)
785 return clib_error_return (0, "interface not specified");
786
787 rv = vnet_delete_loopback_interface (sw_if_index);
788
789 if (rv)
790 return clib_error_return (0, "vnet_delete_loopback_interface failed");
791
792 return 0;
793}
794
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200795static clib_error_t *
796delete_sub_interface (vlib_main_t * vm,
797 unformat_input_t * input, vlib_cli_command_t * cmd)
798{
799 int rv = 0;
800 u32 sw_if_index = ~0;
801 vnet_main_t *vnm = vnet_get_main ();
802
803 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
804 {
805 if (unformat
806 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
807 ;
808 else
809 break;
810 }
811 if (sw_if_index == ~0)
812 return clib_error_return (0, "interface doesn't exist");
813
814 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
815 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
816 else
817 rv = vnet_delete_sub_interface (sw_if_index);
818 if (rv)
819 return clib_error_return (0, "delete_subinterface_interface failed");
820 return 0;
821}
822
Billy McFall2d085d92016-09-13 21:47:55 -0400823/*?
824 * Delete a loopback interface.
825 *
826 * @cliexpar
827 * The following two command syntaxes are equivalent:
828 * @cliexcmd{loopback delete-interface intfc <interface>}
829 * @cliexcmd{delete loopback interface intfc <interface>}
830 * Example of how to delete a loopback interface:
831 * @cliexcmd{loopback delete-interface intfc loop0}
832?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700833/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
835 .path = "loopback delete-interface",
Billy McFall2d085d92016-09-13 21:47:55 -0400836 .short_help = "loopback delete-interface intfc <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 .function = delete_simulated_ethernet_interfaces,
838};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700839/* *INDENT-ON* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -0700840
Billy McFall2d085d92016-09-13 21:47:55 -0400841/*?
842 * Delete a loopback interface.
843 *
844 * @cliexpar
845 * The following two command syntaxes are equivalent:
846 * @cliexcmd{loopback delete-interface intfc <interface>}
847 * @cliexcmd{delete loopback interface intfc <interface>}
848 * Example of how to delete a loopback interface:
849 * @cliexcmd{delete loopback interface intfc loop0}
850?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700851/* *INDENT-OFF* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -0700852VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
853 .path = "delete loopback interface",
854 .short_help = "delete loopback interface intfc <interface>",
855 .function = delete_simulated_ethernet_interfaces,
856};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700857/* *INDENT-ON* */
858
Billy McFall2d085d92016-09-13 21:47:55 -0400859/*?
860 * Delete a sub-interface.
861 *
862 * @cliexpar
863 * Example of how to delete a sub-interface:
864 * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
865?*/
Pavel Kotucekd85590a2016-08-26 13:35:40 +0200866/* *INDENT-OFF* */
867VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
868 .path = "delete sub-interface",
869 .short_help = "delete sub-interface <interface>",
870 .function = delete_sub_interface,
871};
872/* *INDENT-ON* */
873
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700874/*
875 * fd.io coding-style-patch-verification: ON
876 *
877 * Local Variables:
878 * eval: (c-set-style "gnu")
879 * End:
880 */