blob: d42e5fda84c092547a7779dbc9c51d9cafbe61f2 [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 * interface.h: VNET interfaces/sub-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#ifndef included_vnet_interface_h
41#define included_vnet_interface_h
42
43#include <vnet/unix/pcap.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010044#include <vnet/l3_types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
46struct vnet_main_t;
47struct vnet_hw_interface_t;
48struct vnet_sw_interface_t;
Neale Rannsb80c5362016-10-08 13:03:40 +010049struct ip46_address_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
51/* Interface up/down callback. */
Dave Barachba868bb2016-08-08 09:51:21 -040052typedef clib_error_t *(vnet_interface_function_t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 (struct vnet_main_t * vnm, u32 if_index, u32 flags);
54
55/* Sub-interface add/del callback. */
Dave Barachba868bb2016-08-08 09:51:21 -040056typedef clib_error_t *(vnet_subif_add_del_function_t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070057 (struct vnet_main_t * vnm, u32 if_index,
Dave Barachba868bb2016-08-08 09:51:21 -040058 struct vnet_sw_interface_t * template, int is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
Pavel Kotucekc631f2d2016-09-26 10:40:02 +020060/* Interface set mac address callback. */
61typedef clib_error_t *(vnet_interface_set_mac_address_function_t)
62 (struct vnet_hw_interface_t * hi, char *address);
63
Neale Ranns8b37b872016-11-21 12:25:22 +000064typedef enum vnet_interface_function_priority_t_
65{
66 VNET_ITF_FUNC_PRIORITY_LOW,
67 VNET_ITF_FUNC_PRIORITY_HIGH,
68} vnet_interface_function_priority_t;
69#define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1)
70
Dave Barachba868bb2016-08-08 09:51:21 -040071typedef struct _vnet_interface_function_list_elt
72{
73 struct _vnet_interface_function_list_elt *next_interface_function;
74 clib_error_t *(*fp) (struct vnet_main_t * vnm, u32 if_index, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070075} _vnet_interface_function_list_elt_t;
76
77#define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \
78 \
79static void __vnet_interface_function_init_##tag##_##f (void) \
80 __attribute__((__constructor__)) ; \
81 \
82static void __vnet_interface_function_init_##tag##_##f (void) \
83{ \
84 vnet_main_t * vnm = vnet_get_main(); \
85 static _vnet_interface_function_list_elt_t init_function; \
Neale Ranns8b37b872016-11-21 12:25:22 +000086 init_function.next_interface_function = \
87 vnm->tag##_functions[VNET_ITF_FUNC_PRIORITY_LOW]; \
88 vnm->tag##_functions[VNET_ITF_FUNC_PRIORITY_LOW] = &init_function; \
89 init_function.fp = (void *) &f; \
90}
91
92#define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \
93 \
94static void __vnet_interface_function_init_##tag##_##f (void) \
95 __attribute__((__constructor__)) ; \
96 \
97static void __vnet_interface_function_init_##tag##_##f (void) \
98{ \
99 vnet_main_t * vnm = vnet_get_main(); \
100 static _vnet_interface_function_list_elt_t init_function; \
101 init_function.next_interface_function = vnm->tag##_functions[p]; \
102 vnm->tag##_functions[p] = &init_function; \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 init_function.fp = (void *) &f; \
Dave Barachba868bb2016-08-08 09:51:21 -0400104}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106#define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \
107 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del)
108#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \
109 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000110#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \
111 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112#define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \
113 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del)
114#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \
115 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000116#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \
117 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
119/* A class of hardware interface devices. */
Dave Barachba868bb2016-08-08 09:51:21 -0400120typedef struct _vnet_device_class
121{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 /* Index into main vector. */
123 u32 index;
124
125 /* Device name (e.g. "FOOBAR 1234a"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400126 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127
128 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400129 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
131 /* Function to bring device administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400132 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
134 /* Function to call when sub-interface is added/deleted */
Dave Barachba868bb2016-08-08 09:51:21 -0400135 vnet_subif_add_del_function_t *subif_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
137 /* Redistribute flag changes/existence of this interface class. */
138 u32 redistribute;
139
140 /* Transmit function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400141 vlib_node_function_t *tx_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
143 /* Error strings indexed by error code for this node. */
Dave Barachba868bb2016-08-08 09:51:21 -0400144 char **tx_function_error_strings;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
146 /* Number of error codes used by this node. */
147 u32 tx_function_n_errors;
148
149 /* Renumber device name [only!] support, a control-plane kludge */
Dave Barachba868bb2016-08-08 09:51:21 -0400150 int (*name_renumber) (struct vnet_hw_interface_t * hi,
151 u32 new_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 /* Format device instance as name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400154 format_function_t *format_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
156 /* Parse function for device name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400157 unformat_function_t *unformat_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
159 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400160 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
162 /* Trace buffer format for TX function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400163 format_function_t *format_tx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
165 /* Function to clear hardware counters for device. */
Dave Barachba868bb2016-08-08 09:51:21 -0400166 void (*clear_counters) (u32 dev_class_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
Dave Barachba868bb2016-08-08 09:51:21 -0400168 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
169 u32 hw_if_index,
170 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
172 /* Called when hardware class of an interface changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400173 void (*hw_class_change) (struct vnet_main_t * vnm,
174 u32 hw_if_index, u32 new_hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
176 /* Called to redirect traffic from a specific interface instance */
Dave Barachba868bb2016-08-08 09:51:21 -0400177 void (*rx_redirect_to_node) (struct vnet_main_t * vnm,
178 u32 hw_if_index, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 /* Link-list of all device classes set up by constructors created below */
Dave Barachba868bb2016-08-08 09:51:21 -0400181 struct _vnet_device_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
Damjan Marion8b2247d2016-12-02 08:09:45 +0100183 /* Splice vnet_interface_output_node into TX path */
184 u8 flatten_output_chains;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Pavel Kotucekc631f2d2016-09-26 10:40:02 +0200186 /* Function to set mac address. */
187 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188} vnet_device_class_t;
189
190#define VNET_DEVICE_CLASS(x,...) \
191 __VA_ARGS__ vnet_device_class_t x; \
192static void __vnet_add_device_class_registration_##x (void) \
193 __attribute__((__constructor__)) ; \
194static void __vnet_add_device_class_registration_##x (void) \
195{ \
196 vnet_main_t * vnm = vnet_get_main(); \
197 x.next_class_registration = vnm->device_class_registrations; \
198 vnm->device_class_registrations = &x; \
199} \
Dave Barachba868bb2016-08-08 09:51:21 -0400200__VA_ARGS__ vnet_device_class_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Damjan Marion1c80e832016-05-11 23:07:18 +0200202#define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt) \
203 uword \
204 __attribute__ ((flatten)) \
205 __attribute__ ((target (tgt))) \
206 CLIB_CPU_OPTIMIZED \
207 fn ## _ ## arch ( vlib_main_t * vm, \
208 vlib_node_runtime_t * node, \
209 vlib_frame_t * frame) \
210 { return fn (vm, node, frame); }
211
212#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \
213 foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn)
214
215#if CLIB_DEBUG > 0
216#define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...)
217#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn)
218#else
219#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) \
220 VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \
221 CLIB_MULTIARCH_SELECT_FN(fn, static inline) \
222 static void __attribute__((__constructor__)) \
223 __vlib_device_tx_function_multiarch_select_##dev (void) \
224 { dev.tx_function = fn ## _multiarch_select(); }
225#endif
226
Neale Rannsb80c5362016-10-08 13:03:40 +0100227/**
228 * Link Type: A description of the protocol of packets on the link.
229 * On an ethernet link this maps directly into the ethertype. On a GRE tunnel
230 * it maps to the GRE-proto, etc for other lnk types.
231 */
232typedef enum vnet_link_t_
233{
234#if CLIB_DEBUG > 0
235 VNET_LINK_IP4 = 1,
236#else
237 VNET_LINK_IP4 = 0,
238#endif
239 VNET_LINK_IP6,
240 VNET_LINK_MPLS,
241 VNET_LINK_ETHERNET,
242 VNET_LINK_ARP,
243} __attribute__ ((packed)) vnet_link_t;
244
Neale Ranns924d03a2016-10-19 08:25:46 +0100245#define VNET_LINKS { \
246 [VNET_LINK_ETHERNET] = "ethernet", \
247 [VNET_LINK_IP4] = "ipv4", \
248 [VNET_LINK_IP6] = "ipv6", \
249 [VNET_LINK_MPLS] = "mpls", \
250 [VNET_LINK_ARP] = "arp", \
251}
252
253/**
254 * @brief Number of link types. Not part of the enum so it does not have to be included in
255 * switch statements
256 */
257#define VNET_LINK_NUM (VNET_LINK_ARP+1)
258
Neale Rannsb80c5362016-10-08 13:03:40 +0100259/**
260 * @brief Convert a link to to an Ethertype
261 */
262extern vnet_l3_packet_type_t vnet_link_to_l3_proto (vnet_link_t link);
263
264/**
265 * @brief Attributes assignable to a HW interface Class.
266 */
267typedef enum vnet_hw_interface_class_flags_t_
268{
269 /**
270 * @brief a point 2 point interface
271 */
272 VNET_HW_INTERFACE_CLASS_FLAG_P2P = (1 << 0),
273} vnet_hw_interface_class_flags_t;
Damjan Marion1c80e832016-05-11 23:07:18 +0200274
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275/* Layer-2 (e.g. Ethernet) interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400276typedef struct _vnet_hw_interface_class
277{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 /* Index into main vector. */
279 u32 index;
280
281 /* Class name (e.g. "Ethernet"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400282 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
Neale Rannsb80c5362016-10-08 13:03:40 +0100284 /* Flags */
285 vnet_hw_interface_class_flags_t flags;
286
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400288 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
290 /* Function to bring interface administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400291 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
293 /* Function to call when link state changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400294 vnet_interface_function_t *link_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
Neale Ranns3be6b282016-12-20 14:24:01 +0000296 /* Function to call when link MAC changes. */
297 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
298
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 /* Format function to display interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400300 format_function_t *format_interface_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
302 /* Format function to display interface address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400303 format_function_t *format_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304
305 /* Format packet header for this interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400306 format_function_t *format_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
308 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400309 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
311 /* Parser for hardware (e.g. ethernet) address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400312 unformat_function_t *unformat_hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
314 /* Parser for packet header for e.g. rewrite string. */
Dave Barachba868bb2016-08-08 09:51:21 -0400315 unformat_function_t *unformat_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Neale Rannsb80c5362016-10-08 13:03:40 +0100317 /* Builds a rewrite string for the interface to the destination
318 * for the payload/link type. */
319 u8 *(*build_rewrite) (struct vnet_main_t * vnm,
320 u32 sw_if_index,
321 vnet_link_t link_type, const void *dst_hw_address);
322
323 /* Update an adjacecny added by FIB (as opposed to via the
324 * neighbour resolution protocol). */
325 void (*update_adjacency) (struct vnet_main_t * vnm,
326 u32 sw_if_index, u32 adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
Dave Barachba868bb2016-08-08 09:51:21 -0400328 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
329 u32 hw_if_index,
330 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332 /* Called when hw interface class is changed and old hardware instance
333 may want to be deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400334 void (*hw_class_change) (struct vnet_main_t * vnm, u32 hw_if_index,
335 u32 old_class_index, u32 new_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
337 /* List of hw interface classes, built by constructors */
Dave Barachba868bb2016-08-08 09:51:21 -0400338 struct _vnet_hw_interface_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
340} vnet_hw_interface_class_t;
341
Neale Rannsb80c5362016-10-08 13:03:40 +0100342/**
343 * @brief Return a complete, zero-length (aka dummy) rewrite
344 */
345extern u8 *default_build_rewrite (struct vnet_main_t *vnm,
346 u32 sw_if_index,
347 vnet_link_t link_type,
348 const void *dst_hw_address);
349
350/**
351 * @brief Default adjacency update function
352 */
353extern void default_update_adjacency (struct vnet_main_t *vnm,
354 u32 sw_if_index, u32 adj_index);
355
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356#define VNET_HW_INTERFACE_CLASS(x,...) \
357 __VA_ARGS__ vnet_hw_interface_class_t x; \
358static void __vnet_add_hw_interface_class_registration_##x (void) \
359 __attribute__((__constructor__)) ; \
360static void __vnet_add_hw_interface_class_registration_##x (void) \
361{ \
362 vnet_main_t * vnm = vnet_get_main(); \
363 x.next_class_registration = vnm->hw_interface_class_registrations; \
364 vnm->hw_interface_class_registrations = &x; \
365} \
366__VA_ARGS__ vnet_hw_interface_class_t x
367
368/* Hardware-interface. This corresponds to a physical wire
369 that packets flow over. */
Dave Barachba868bb2016-08-08 09:51:21 -0400370typedef struct vnet_hw_interface_t
371{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 /* Interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400373 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
375 u32 flags;
376 /* Hardware link state is up. */
377#define VNET_HW_INTERFACE_FLAG_LINK_UP (1 << 0)
378 /* Hardware duplex state */
379#define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1
380#define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX (1 << 1)
381#define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX (1 << 2)
382#define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \
383 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \
384 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX)
385
386 /* Hardware link speed */
387#define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3
388#define VNET_HW_INTERFACE_FLAG_SPEED_10M (1 << 3)
389#define VNET_HW_INTERFACE_FLAG_SPEED_100M (1 << 4)
390#define VNET_HW_INTERFACE_FLAG_SPEED_1G (1 << 5)
391#define VNET_HW_INTERFACE_FLAG_SPEED_10G (1 << 6)
392#define VNET_HW_INTERFACE_FLAG_SPEED_40G (1 << 7)
393#define VNET_HW_INTERFACE_FLAG_SPEED_100G (1 << 8)
394#define VNET_HW_INTERFACE_FLAG_SPEED_MASK \
395 (VNET_HW_INTERFACE_FLAG_SPEED_10M | \
396 VNET_HW_INTERFACE_FLAG_SPEED_100M | \
397 VNET_HW_INTERFACE_FLAG_SPEED_1G | \
398 VNET_HW_INTERFACE_FLAG_SPEED_10G | \
399 VNET_HW_INTERFACE_FLAG_SPEED_40G | \
400 VNET_HW_INTERFACE_FLAG_SPEED_100G)
401
Damjan Mariondb2c6c62015-12-16 19:31:59 +0100402 /* l2output node flags */
403#define VNET_HW_INTERFACE_FLAG_L2OUTPUT_SHIFT 9
404#define VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED (1 << 9)
405
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 /* Hardware address as vector. Zero (e.g. zero-length vector) if no
407 address for this class (e.g. PPP). */
Dave Barachba868bb2016-08-08 09:51:21 -0400408 u8 *hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409
410 /* Interface is up as far as software is concerned. */
411 /* NAME.{output,tx} nodes for this interface. */
412 u32 output_node_index, tx_node_index;
413
414 /* (dev_class, dev_instance) uniquely identifies hw interface. */
415 u32 dev_class_index;
416 u32 dev_instance;
417
418 /* (hw_class, hw_instance) uniquely identifies hw interface. */
419 u32 hw_class_index;
420 u32 hw_instance;
421
422 /* Hardware index for this hardware interface. */
423 u32 hw_if_index;
424
425 /* Software index for this hardware interface. */
426 u32 sw_if_index;
427
428 /* Maximum transmit rate for this interface in bits/sec. */
429 f64 max_rate_bits_per_sec;
430
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200431 /* Smallest packet size supported by this interface. */
432 u32 min_supported_packet_bytes;
433
434 /* Largest packet size supported by this interface. */
435 u32 max_supported_packet_bytes;
436
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 /* Smallest packet size for this interface. */
438 u32 min_packet_bytes;
439
440 /* Largest packet size for this interface. */
441 u32 max_packet_bytes;
442
443 /* Number of extra bytes that go on the wire.
444 Packet length on wire
445 = max (length + per_packet_overhead_bytes, min_packet_bytes). */
446 u32 per_packet_overhead_bytes;
447
448 /* Receive and transmit layer 3 packet size limits (MRU/MTU). */
449 u32 max_l3_packet_bytes[VLIB_N_RX_TX];
450
451 /* Hash table mapping sub interface id to sw_if_index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400452 uword *sub_interface_sw_if_index_by_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
454 /* Count of number of L2 subinterfaces */
455 u32 l2_if_count;
John Lobcebbb92016-04-05 15:47:43 -0400456
457 /* Bonded interface info -
458 0 - not a bonded interface nor a slave
459 ~0 - slave to a bonded interface
460 others - A bonded interface with a pointer to bitmap for all slaves */
461 uword *bond_info;
462#define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0)
463#define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0)
464
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465} vnet_hw_interface_t;
466
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200467extern vnet_device_class_t vnet_local_interface_device_class;
468
Dave Barachba868bb2016-08-08 09:51:21 -0400469typedef enum
470{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471 /* A hw interface. */
472 VNET_SW_INTERFACE_TYPE_HARDWARE,
473
474 /* A sub-interface. */
475 VNET_SW_INTERFACE_TYPE_SUB,
476} vnet_sw_interface_type_t;
477
Dave Barachba868bb2016-08-08 09:51:21 -0400478typedef struct
479{
480 /*
481 * Subinterface ID. A number 0-N to uniquely identify
482 * this subinterface under the main (parent?) interface
483 */
484 u32 id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485
Dave Barachba868bb2016-08-08 09:51:21 -0400486 /* Classification data. Used to associate packet header with subinterface. */
487 struct
488 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 u16 outer_vlan_id;
490 u16 inner_vlan_id;
Dave Barachba868bb2016-08-08 09:51:21 -0400491 union
492 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493 u16 raw_flags;
Dave Barachba868bb2016-08-08 09:51:21 -0400494 struct
495 {
496 u16 no_tags:1;
497 u16 one_tag:1;
498 u16 two_tags:1;
499 u16 dot1ad:1; /* 0 = dot1q, 1=dot1ad */
500 u16 exact_match:1;
501 u16 default_sub:1;
502 u16 outer_vlan_id_any:1;
503 u16 inner_vlan_id_any:1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504 } flags;
505 };
506 } eth;
507} vnet_sub_interface_t;
508
Eyal Baric5b13602016-11-24 19:42:43 +0200509typedef enum
510{
511 /* Always flood */
512 VNET_FLOOD_CLASS_NORMAL,
513 VNET_FLOOD_CLASS_TUNNEL_MASTER,
514 /* Does not flood when tunnel master is in the same L2 BD */
515 VNET_FLOOD_CLASS_TUNNEL_NORMAL
516} vnet_flood_class_t;
517
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518/* Software-interface. This corresponds to a Ethernet VLAN, ATM vc, a
519 tunnel, etc. Configuration (e.g. IP address) gets attached to
520 software interface. */
Dave Barachba868bb2016-08-08 09:51:21 -0400521typedef struct
522{
523 vnet_sw_interface_type_t type:16;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
525 u16 flags;
526 /* Interface is "up" meaning adminstratively up.
527 Up in the sense of link state being up is maintained by hardware interface. */
528#define VNET_SW_INTERFACE_FLAG_ADMIN_UP (1 << 0)
529
530 /* Interface is disabled for forwarding: punt all traffic to slow-path. */
531#define VNET_SW_INTERFACE_FLAG_PUNT (1 << 1)
532
533#define VNET_SW_INTERFACE_FLAG_PROXY_ARP (1 << 2)
534
535#define VNET_SW_INTERFACE_FLAG_UNNUMBERED (1 << 3)
536
John Lobcebbb92016-04-05 15:47:43 -0400537#define VNET_SW_INTERFACE_FLAG_BOND_SLAVE (1 << 4)
538
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 /* Index for this interface. */
540 u32 sw_if_index;
541
542 /* Software interface index of super-interface;
543 equal to sw_if_index if this interface is not a
544 sub-interface. */
545 u32 sup_sw_if_index;
546
547 /* this swif is unnumbered, use addresses on unnumbered_sw_if_index... */
548 u32 unnumbered_sw_if_index;
549
550 u32 link_speed;
551
Dave Barachba868bb2016-08-08 09:51:21 -0400552 union
553 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 /* VNET_SW_INTERFACE_TYPE_HARDWARE. */
555 u32 hw_if_index;
556
557 /* VNET_SW_INTERFACE_TYPE_SUB. */
558 vnet_sub_interface_t sub;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 };
Eyal Baric5b13602016-11-24 19:42:43 +0200560
561 vnet_flood_class_t flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562} vnet_sw_interface_t;
563
Dave Barachba868bb2016-08-08 09:51:21 -0400564typedef enum
565{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 /* Simple counters. */
567 VNET_INTERFACE_COUNTER_DROP = 0,
568 VNET_INTERFACE_COUNTER_PUNT = 1,
569 VNET_INTERFACE_COUNTER_IP4 = 2,
570 VNET_INTERFACE_COUNTER_IP6 = 3,
571 VNET_INTERFACE_COUNTER_RX_NO_BUF = 4,
572 VNET_INTERFACE_COUNTER_RX_MISS = 5,
573 VNET_INTERFACE_COUNTER_RX_ERROR = 6,
574 VNET_INTERFACE_COUNTER_TX_ERROR = 7,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100575 VNET_INTERFACE_COUNTER_MPLS = 8,
576 VNET_N_SIMPLE_INTERFACE_COUNTER = 9,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 /* Combined counters. */
578 VNET_INTERFACE_COUNTER_RX = 0,
579 VNET_INTERFACE_COUNTER_TX = 1,
580 VNET_N_COMBINED_INTERFACE_COUNTER = 2,
581} vnet_interface_counter_type_t;
582
Dave Barachba868bb2016-08-08 09:51:21 -0400583typedef struct
584{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585 u32 output_node_index;
586 u32 tx_node_index;
587} vnet_hw_interface_nodes_t;
588
Dave Barachba868bb2016-08-08 09:51:21 -0400589typedef struct
590{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 /* Hardware interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400592 vnet_hw_interface_t *hw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
594 /* Hash table mapping HW interface name to index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400595 uword *hw_interface_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
597 /* Vectors if hardware interface classes and device classes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400598 vnet_hw_interface_class_t *hw_interface_classes;
599 vnet_device_class_t *device_classes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
601 /* Hash table mapping name to hw interface/device class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400602 uword *hw_interface_class_by_name;
603 uword *device_class_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604
605 /* Software interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400606 vnet_sw_interface_t *sw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
608 /* Hash table mapping sub intfc sw_if_index by sup sw_if_index and sub id */
Dave Barachba868bb2016-08-08 09:51:21 -0400609 uword *sw_if_index_by_sup_and_sub;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610
611 /* Software interface counters both simple and combined
612 packet and byte counters. */
613 volatile u32 *sw_if_counter_lock;
Dave Barachba868bb2016-08-08 09:51:21 -0400614 vlib_simple_counter_main_t *sw_if_counters;
615 vlib_combined_counter_main_t *combined_sw_if_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700616
Dave Barachba868bb2016-08-08 09:51:21 -0400617 vnet_hw_interface_nodes_t *deleted_hw_interface_nodes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618
619 /* pcap drop tracing */
620 int drop_pcap_enable;
621 pcap_main_t pcap_main;
Dave Barachba868bb2016-08-08 09:51:21 -0400622 u8 *pcap_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 u32 pcap_sw_if_index;
624 u32 pcap_pkts_to_capture;
Dave Barachba868bb2016-08-08 09:51:21 -0400625 uword *pcap_drop_filter_hash;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626
Damjan Marion152e21d2016-11-29 14:55:43 +0100627 /* feature_arc_index */
628 u8 output_feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629} vnet_interface_main_t;
630
Dave Barachba868bb2016-08-08 09:51:21 -0400631static inline void
632vnet_interface_counter_lock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633{
634 if (im->sw_if_counter_lock)
635 while (__sync_lock_test_and_set (im->sw_if_counter_lock, 1))
636 /* zzzz */ ;
637}
Dave Barachba868bb2016-08-08 09:51:21 -0400638
639static inline void
640vnet_interface_counter_unlock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641{
642 if (im->sw_if_counter_lock)
643 *im->sw_if_counter_lock = 0;
644}
645
646void vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add);
647
648int vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance);
649
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650#endif /* included_vnet_interface_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400651
652/*
653 * fd.io coding-style-patch-verification: ON
654 *
655 * Local Variables:
656 * eval: (c-set-style "gnu")
657 * End:
658 */