blob: d42f079f5854924b4963a787306c4b7c72cb0e86 [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
Stevene3a395c2017-05-09 16:19:50 -070051typedef enum
52{
53 VNET_HW_INTERFACE_RX_MODE_UNKNOWN,
54 VNET_HW_INTERFACE_RX_MODE_POLLING,
55 VNET_HW_INTERFACE_RX_MODE_INTERRUPT,
56 VNET_HW_INTERFACE_RX_MODE_ADAPTIVE,
Damjan Marion4e53a0d2017-06-21 14:29:44 +020057 VNET_HW_INTERFACE_RX_MODE_DEFAULT,
Stevene3a395c2017-05-09 16:19:50 -070058 VNET_HW_INTERFACE_NUM_RX_MODES,
59} vnet_hw_interface_rx_mode;
60
Ed Warnickecb9cada2015-12-08 15:45:58 -070061/* Interface up/down callback. */
Dave Barachba868bb2016-08-08 09:51:21 -040062typedef clib_error_t *(vnet_interface_function_t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070063 (struct vnet_main_t * vnm, u32 if_index, u32 flags);
64
65/* Sub-interface add/del callback. */
Dave Barachba868bb2016-08-08 09:51:21 -040066typedef clib_error_t *(vnet_subif_add_del_function_t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 (struct vnet_main_t * vnm, u32 if_index,
Dave Barachba868bb2016-08-08 09:51:21 -040068 struct vnet_sw_interface_t * template, int is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Pavel Kotucekc631f2d2016-09-26 10:40:02 +020070/* Interface set mac address callback. */
71typedef clib_error_t *(vnet_interface_set_mac_address_function_t)
72 (struct vnet_hw_interface_t * hi, char *address);
73
Stevene3a395c2017-05-09 16:19:50 -070074/* Interface set rx mode callback. */
75typedef clib_error_t *(vnet_interface_set_rx_mode_function_t)
76 (struct vnet_main_t * vnm, u32 if_index, u32 queue_id,
77 vnet_hw_interface_rx_mode mode);
78
Neale Ranns8b37b872016-11-21 12:25:22 +000079typedef enum vnet_interface_function_priority_t_
80{
81 VNET_ITF_FUNC_PRIORITY_LOW,
82 VNET_ITF_FUNC_PRIORITY_HIGH,
83} vnet_interface_function_priority_t;
84#define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1)
85
Dave Barachba868bb2016-08-08 09:51:21 -040086typedef struct _vnet_interface_function_list_elt
87{
88 struct _vnet_interface_function_list_elt *next_interface_function;
89 clib_error_t *(*fp) (struct vnet_main_t * vnm, u32 if_index, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070090} _vnet_interface_function_list_elt_t;
91
Neale Ranns8b37b872016-11-21 12:25:22 +000092#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
Eyal Barif9cda7d2018-02-13 11:50:58 +0200106#define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \
107 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,VNET_ITF_FUNC_PRIORITY_LOW)
108
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109#define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \
110 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del)
111#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \
112 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000113#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \
114 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115#define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \
116 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del)
117#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \
118 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000119#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \
120 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
122/* A class of hardware interface devices. */
Dave Barachba868bb2016-08-08 09:51:21 -0400123typedef struct _vnet_device_class
124{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 /* Index into main vector. */
126 u32 index;
127
128 /* Device name (e.g. "FOOBAR 1234a"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400129 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
131 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400132 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
134 /* Function to bring device administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400135 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
137 /* Function to call when sub-interface is added/deleted */
Dave Barachba868bb2016-08-08 09:51:21 -0400138 vnet_subif_add_del_function_t *subif_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
Stevene3a395c2017-05-09 16:19:50 -0700140 /* Function to call interface rx mode is changed */
141 vnet_interface_set_rx_mode_function_t *rx_mode_change_function;
142
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 /* Redistribute flag changes/existence of this interface class. */
144 u32 redistribute;
145
146 /* Transmit function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400147 vlib_node_function_t *tx_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
149 /* Error strings indexed by error code for this node. */
Dave Barachba868bb2016-08-08 09:51:21 -0400150 char **tx_function_error_strings;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
152 /* Number of error codes used by this node. */
153 u32 tx_function_n_errors;
154
155 /* Renumber device name [only!] support, a control-plane kludge */
Dave Barachba868bb2016-08-08 09:51:21 -0400156 int (*name_renumber) (struct vnet_hw_interface_t * hi,
157 u32 new_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
159 /* Format device instance as name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400160 format_function_t *format_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
162 /* Parse function for device name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400163 unformat_function_t *unformat_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
165 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400166 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 /* Trace buffer format for TX function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400169 format_function_t *format_tx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 /* Function to clear hardware counters for device. */
Dave Barachba868bb2016-08-08 09:51:21 -0400172 void (*clear_counters) (u32 dev_class_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
Dave Barachba868bb2016-08-08 09:51:21 -0400174 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
175 u32 hw_if_index,
176 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
178 /* Called when hardware class of an interface changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400179 void (*hw_class_change) (struct vnet_main_t * vnm,
180 u32 hw_if_index, u32 new_hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
182 /* Called to redirect traffic from a specific interface instance */
Dave Barachba868bb2016-08-08 09:51:21 -0400183 void (*rx_redirect_to_node) (struct vnet_main_t * vnm,
184 u32 hw_if_index, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
186 /* Link-list of all device classes set up by constructors created below */
Dave Barachba868bb2016-08-08 09:51:21 -0400187 struct _vnet_device_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
Pavel Kotucekc631f2d2016-09-26 10:40:02 +0200189 /* Function to set mac address. */
190 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191} vnet_device_class_t;
192
193#define VNET_DEVICE_CLASS(x,...) \
194 __VA_ARGS__ vnet_device_class_t x; \
195static void __vnet_add_device_class_registration_##x (void) \
196 __attribute__((__constructor__)) ; \
197static void __vnet_add_device_class_registration_##x (void) \
198{ \
199 vnet_main_t * vnm = vnet_get_main(); \
200 x.next_class_registration = vnm->device_class_registrations; \
201 vnm->device_class_registrations = &x; \
202} \
Dave Barachba868bb2016-08-08 09:51:21 -0400203__VA_ARGS__ vnet_device_class_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
Damjan Marion1c80e832016-05-11 23:07:18 +0200205#define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt) \
206 uword \
207 __attribute__ ((flatten)) \
208 __attribute__ ((target (tgt))) \
209 CLIB_CPU_OPTIMIZED \
210 fn ## _ ## arch ( vlib_main_t * vm, \
211 vlib_node_runtime_t * node, \
212 vlib_frame_t * frame) \
213 { return fn (vm, node, frame); }
214
215#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \
216 foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn)
217
218#if CLIB_DEBUG > 0
219#define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...)
220#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn)
221#else
222#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) \
223 VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \
224 CLIB_MULTIARCH_SELECT_FN(fn, static inline) \
225 static void __attribute__((__constructor__)) \
226 __vlib_device_tx_function_multiarch_select_##dev (void) \
227 { dev.tx_function = fn ## _multiarch_select(); }
228#endif
229
Neale Rannsb80c5362016-10-08 13:03:40 +0100230/**
231 * Link Type: A description of the protocol of packets on the link.
232 * On an ethernet link this maps directly into the ethertype. On a GRE tunnel
233 * it maps to the GRE-proto, etc for other lnk types.
234 */
235typedef enum vnet_link_t_
236{
237#if CLIB_DEBUG > 0
238 VNET_LINK_IP4 = 1,
239#else
240 VNET_LINK_IP4 = 0,
241#endif
242 VNET_LINK_IP6,
243 VNET_LINK_MPLS,
244 VNET_LINK_ETHERNET,
245 VNET_LINK_ARP,
Florin Corasce1b4c72017-01-26 14:25:34 -0800246 VNET_LINK_NSH,
Neale Rannsb80c5362016-10-08 13:03:40 +0100247} __attribute__ ((packed)) vnet_link_t;
248
Neale Ranns924d03a2016-10-19 08:25:46 +0100249#define VNET_LINKS { \
250 [VNET_LINK_ETHERNET] = "ethernet", \
251 [VNET_LINK_IP4] = "ipv4", \
252 [VNET_LINK_IP6] = "ipv6", \
253 [VNET_LINK_MPLS] = "mpls", \
254 [VNET_LINK_ARP] = "arp", \
Florin Corasce1b4c72017-01-26 14:25:34 -0800255 [VNET_LINK_NSH] = "nsh", \
Neale Ranns924d03a2016-10-19 08:25:46 +0100256}
257
258/**
259 * @brief Number of link types. Not part of the enum so it does not have to be included in
260 * switch statements
261 */
Florin Corasce1b4c72017-01-26 14:25:34 -0800262#define VNET_LINK_NUM (VNET_LINK_NSH+1)
Neale Ranns924d03a2016-10-19 08:25:46 +0100263
Neale Rannsb80c5362016-10-08 13:03:40 +0100264/**
265 * @brief Convert a link to to an Ethertype
266 */
267extern vnet_l3_packet_type_t vnet_link_to_l3_proto (vnet_link_t link);
268
269/**
270 * @brief Attributes assignable to a HW interface Class.
271 */
272typedef enum vnet_hw_interface_class_flags_t_
273{
274 /**
275 * @brief a point 2 point interface
276 */
277 VNET_HW_INTERFACE_CLASS_FLAG_P2P = (1 << 0),
278} vnet_hw_interface_class_flags_t;
Damjan Marion1c80e832016-05-11 23:07:18 +0200279
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280/* Layer-2 (e.g. Ethernet) interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400281typedef struct _vnet_hw_interface_class
282{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 /* Index into main vector. */
284 u32 index;
285
286 /* Class name (e.g. "Ethernet"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400287 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
Neale Rannsb80c5362016-10-08 13:03:40 +0100289 /* Flags */
290 vnet_hw_interface_class_flags_t flags;
291
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400293 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
295 /* Function to bring interface administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400296 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
298 /* Function to call when link state changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400299 vnet_interface_function_t *link_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300
Neale Ranns3be6b282016-12-20 14:24:01 +0000301 /* Function to call when link MAC changes. */
302 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
303
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304 /* Format function to display interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400305 format_function_t *format_interface_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
307 /* Format function to display interface address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400308 format_function_t *format_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
310 /* Format packet header for this interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400311 format_function_t *format_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
313 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400314 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
316 /* Parser for hardware (e.g. ethernet) address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400317 unformat_function_t *unformat_hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
319 /* Parser for packet header for e.g. rewrite string. */
Dave Barachba868bb2016-08-08 09:51:21 -0400320 unformat_function_t *unformat_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Neale Rannsb80c5362016-10-08 13:03:40 +0100322 /* Builds a rewrite string for the interface to the destination
323 * for the payload/link type. */
324 u8 *(*build_rewrite) (struct vnet_main_t * vnm,
325 u32 sw_if_index,
326 vnet_link_t link_type, const void *dst_hw_address);
327
328 /* Update an adjacecny added by FIB (as opposed to via the
329 * neighbour resolution protocol). */
330 void (*update_adjacency) (struct vnet_main_t * vnm,
331 u32 sw_if_index, u32 adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332
Dave Barachba868bb2016-08-08 09:51:21 -0400333 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
334 u32 hw_if_index,
335 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
337 /* Called when hw interface class is changed and old hardware instance
338 may want to be deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400339 void (*hw_class_change) (struct vnet_main_t * vnm, u32 hw_if_index,
340 u32 old_class_index, u32 new_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341
342 /* List of hw interface classes, built by constructors */
Dave Barachba868bb2016-08-08 09:51:21 -0400343 struct _vnet_hw_interface_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
345} vnet_hw_interface_class_t;
346
Neale Rannsb80c5362016-10-08 13:03:40 +0100347/**
348 * @brief Return a complete, zero-length (aka dummy) rewrite
349 */
350extern u8 *default_build_rewrite (struct vnet_main_t *vnm,
351 u32 sw_if_index,
352 vnet_link_t link_type,
353 const void *dst_hw_address);
354
355/**
356 * @brief Default adjacency update function
357 */
358extern void default_update_adjacency (struct vnet_main_t *vnm,
359 u32 sw_if_index, u32 adj_index);
360
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361#define VNET_HW_INTERFACE_CLASS(x,...) \
362 __VA_ARGS__ vnet_hw_interface_class_t x; \
363static void __vnet_add_hw_interface_class_registration_##x (void) \
364 __attribute__((__constructor__)) ; \
365static void __vnet_add_hw_interface_class_registration_##x (void) \
366{ \
367 vnet_main_t * vnm = vnet_get_main(); \
368 x.next_class_registration = vnm->hw_interface_class_registrations; \
369 vnm->hw_interface_class_registrations = &x; \
370} \
371__VA_ARGS__ vnet_hw_interface_class_t x
372
373/* Hardware-interface. This corresponds to a physical wire
374 that packets flow over. */
Dave Barachba868bb2016-08-08 09:51:21 -0400375typedef struct vnet_hw_interface_t
376{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 /* Interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400378 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379
380 u32 flags;
381 /* Hardware link state is up. */
382#define VNET_HW_INTERFACE_FLAG_LINK_UP (1 << 0)
383 /* Hardware duplex state */
384#define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1
385#define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX (1 << 1)
386#define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX (1 << 2)
387#define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \
388 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \
389 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX)
390
391 /* Hardware link speed */
392#define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3
393#define VNET_HW_INTERFACE_FLAG_SPEED_10M (1 << 3)
394#define VNET_HW_INTERFACE_FLAG_SPEED_100M (1 << 4)
395#define VNET_HW_INTERFACE_FLAG_SPEED_1G (1 << 5)
396#define VNET_HW_INTERFACE_FLAG_SPEED_10G (1 << 6)
Damjan Marion7c748bb2018-02-25 22:55:03 +0100397#define VNET_HW_INTERFACE_FLAG_SPEED_25G (1 << 7)
398#define VNET_HW_INTERFACE_FLAG_SPEED_40G (1 << 8)
399#define VNET_HW_INTERFACE_FLAG_SPEED_100G (1 << 9)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400#define VNET_HW_INTERFACE_FLAG_SPEED_MASK \
401 (VNET_HW_INTERFACE_FLAG_SPEED_10M | \
402 VNET_HW_INTERFACE_FLAG_SPEED_100M | \
403 VNET_HW_INTERFACE_FLAG_SPEED_1G | \
404 VNET_HW_INTERFACE_FLAG_SPEED_10G | \
Damjan Marion7c748bb2018-02-25 22:55:03 +0100405 VNET_HW_INTERFACE_FLAG_SPEED_25G | \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 VNET_HW_INTERFACE_FLAG_SPEED_40G | \
407 VNET_HW_INTERFACE_FLAG_SPEED_100G)
408
Damjan Marion44036902017-04-28 12:29:15 +0200409 /* rx mode flags */
410#define VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE (1 << 10)
411
Dave Barach2c0a4f42017-06-29 09:30:15 -0400412 /* tx checksum offload */
413#define VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD (1 << 11)
414
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 /* Hardware address as vector. Zero (e.g. zero-length vector) if no
416 address for this class (e.g. PPP). */
Dave Barachba868bb2016-08-08 09:51:21 -0400417 u8 *hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
419 /* Interface is up as far as software is concerned. */
420 /* NAME.{output,tx} nodes for this interface. */
421 u32 output_node_index, tx_node_index;
422
423 /* (dev_class, dev_instance) uniquely identifies hw interface. */
424 u32 dev_class_index;
425 u32 dev_instance;
426
427 /* (hw_class, hw_instance) uniquely identifies hw interface. */
428 u32 hw_class_index;
429 u32 hw_instance;
430
431 /* Hardware index for this hardware interface. */
432 u32 hw_if_index;
433
434 /* Software index for this hardware interface. */
435 u32 sw_if_index;
436
John Loe5453d02018-01-23 19:21:34 -0500437 /* Next index in interface-output node for this interface
438 used by node function vnet_per_buffer_interface_output() */
439 u32 output_node_next_index;
440
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441 /* Maximum transmit rate for this interface in bits/sec. */
442 f64 max_rate_bits_per_sec;
443
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200444 /* Smallest packet size supported by this interface. */
445 u32 min_supported_packet_bytes;
446
447 /* Largest packet size supported by this interface. */
448 u32 max_supported_packet_bytes;
449
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 /* Smallest packet size for this interface. */
451 u32 min_packet_bytes;
452
453 /* Largest packet size for this interface. */
454 u32 max_packet_bytes;
455
456 /* Number of extra bytes that go on the wire.
457 Packet length on wire
458 = max (length + per_packet_overhead_bytes, min_packet_bytes). */
459 u32 per_packet_overhead_bytes;
460
461 /* Receive and transmit layer 3 packet size limits (MRU/MTU). */
462 u32 max_l3_packet_bytes[VLIB_N_RX_TX];
463
464 /* Hash table mapping sub interface id to sw_if_index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400465 uword *sub_interface_sw_if_index_by_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466
467 /* Count of number of L2 subinterfaces */
468 u32 l2_if_count;
John Lobcebbb92016-04-05 15:47:43 -0400469
470 /* Bonded interface info -
471 0 - not a bonded interface nor a slave
472 ~0 - slave to a bonded interface
473 others - A bonded interface with a pointer to bitmap for all slaves */
474 uword *bond_info;
475#define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0)
476#define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0)
477
Damjan Marioneb743fa2017-03-20 16:34:15 +0100478 /* Input node */
479 u32 input_node_index;
480
481 /* input node cpu index by queue */
Damjan Marion586afd72017-04-05 19:18:20 +0200482 u32 *input_node_thread_index_by_queue;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100483
Damjan Marion44036902017-04-28 12:29:15 +0200484 /* vnet_hw_interface_rx_mode by queue */
485 u8 *rx_mode_by_queue;
Damjan Marion4e53a0d2017-06-21 14:29:44 +0200486 vnet_hw_interface_rx_mode default_rx_mode;
Damjan Marion44036902017-04-28 12:29:15 +0200487
Damjan Marion153646e2017-04-05 18:15:45 +0200488 /* device input device_and_queue runtime index */
489 uword *dq_runtime_index_by_queue;
490
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491} vnet_hw_interface_t;
492
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200493extern vnet_device_class_t vnet_local_interface_device_class;
494
Dave Barachba868bb2016-08-08 09:51:21 -0400495typedef enum
496{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 /* A hw interface. */
498 VNET_SW_INTERFACE_TYPE_HARDWARE,
499
500 /* A sub-interface. */
501 VNET_SW_INTERFACE_TYPE_SUB,
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200502 VNET_SW_INTERFACE_TYPE_P2P,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503} vnet_sw_interface_type_t;
504
Dave Barachba868bb2016-08-08 09:51:21 -0400505typedef struct
506{
507 /*
508 * Subinterface ID. A number 0-N to uniquely identify
509 * this subinterface under the main (parent?) interface
510 */
511 u32 id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512
Dave Barachba868bb2016-08-08 09:51:21 -0400513 /* Classification data. Used to associate packet header with subinterface. */
514 struct
515 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 u16 outer_vlan_id;
517 u16 inner_vlan_id;
Dave Barachba868bb2016-08-08 09:51:21 -0400518 union
519 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 u16 raw_flags;
Dave Barachba868bb2016-08-08 09:51:21 -0400521 struct
522 {
523 u16 no_tags:1;
524 u16 one_tag:1;
525 u16 two_tags:1;
526 u16 dot1ad:1; /* 0 = dot1q, 1=dot1ad */
527 u16 exact_match:1;
528 u16 default_sub:1;
529 u16 outer_vlan_id_any:1;
530 u16 inner_vlan_id_any:1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531 } flags;
532 };
533 } eth;
534} vnet_sub_interface_t;
535
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200536typedef struct
537{
538 /*
539 * Subinterface ID. A number 0-N to uniquely identify
540 * this subinterface under the main interface
541 */
542 u32 id;
543 u32 pool_index;
544 u8 client_mac[6];
545} vnet_p2p_sub_interface_t;
546
Eyal Baric5b13602016-11-24 19:42:43 +0200547typedef enum
548{
549 /* Always flood */
550 VNET_FLOOD_CLASS_NORMAL,
551 VNET_FLOOD_CLASS_TUNNEL_MASTER,
552 /* Does not flood when tunnel master is in the same L2 BD */
553 VNET_FLOOD_CLASS_TUNNEL_NORMAL
554} vnet_flood_class_t;
555
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556/* Software-interface. This corresponds to a Ethernet VLAN, ATM vc, a
557 tunnel, etc. Configuration (e.g. IP address) gets attached to
558 software interface. */
Dave Barachba868bb2016-08-08 09:51:21 -0400559typedef struct
560{
561 vnet_sw_interface_type_t type:16;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562
563 u16 flags;
564 /* Interface is "up" meaning adminstratively up.
565 Up in the sense of link state being up is maintained by hardware interface. */
566#define VNET_SW_INTERFACE_FLAG_ADMIN_UP (1 << 0)
567
568 /* Interface is disabled for forwarding: punt all traffic to slow-path. */
569#define VNET_SW_INTERFACE_FLAG_PUNT (1 << 1)
570
571#define VNET_SW_INTERFACE_FLAG_PROXY_ARP (1 << 2)
572
573#define VNET_SW_INTERFACE_FLAG_UNNUMBERED (1 << 3)
574
John Lobcebbb92016-04-05 15:47:43 -0400575#define VNET_SW_INTERFACE_FLAG_BOND_SLAVE (1 << 4)
576
John Lob2fd6cb2017-07-12 19:56:45 -0400577 /* Interface does not appear in CLI/API */
Eyal Bari3212c572017-03-06 11:47:50 +0200578#define VNET_SW_INTERFACE_FLAG_HIDDEN (1 << 5)
579
John Lob2fd6cb2017-07-12 19:56:45 -0400580 /* Interface in ERROR state */
Damjan Marionabce5092017-05-10 20:09:31 +0200581#define VNET_SW_INTERFACE_FLAG_ERROR (1 << 6)
582
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583 /* Index for this interface. */
584 u32 sw_if_index;
585
586 /* Software interface index of super-interface;
587 equal to sw_if_index if this interface is not a
588 sub-interface. */
589 u32 sup_sw_if_index;
590
591 /* this swif is unnumbered, use addresses on unnumbered_sw_if_index... */
592 u32 unnumbered_sw_if_index;
593
594 u32 link_speed;
595
Dave Barachba868bb2016-08-08 09:51:21 -0400596 union
597 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598 /* VNET_SW_INTERFACE_TYPE_HARDWARE. */
599 u32 hw_if_index;
600
601 /* VNET_SW_INTERFACE_TYPE_SUB. */
602 vnet_sub_interface_t sub;
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200603
604 /* VNET_SW_INTERFACE_TYPE_P2P. */
605 vnet_p2p_sub_interface_t p2p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 };
Eyal Baric5b13602016-11-24 19:42:43 +0200607
608 vnet_flood_class_t flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609} vnet_sw_interface_t;
610
Dave Barachba868bb2016-08-08 09:51:21 -0400611typedef enum
612{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 /* Simple counters. */
614 VNET_INTERFACE_COUNTER_DROP = 0,
615 VNET_INTERFACE_COUNTER_PUNT = 1,
616 VNET_INTERFACE_COUNTER_IP4 = 2,
617 VNET_INTERFACE_COUNTER_IP6 = 3,
618 VNET_INTERFACE_COUNTER_RX_NO_BUF = 4,
619 VNET_INTERFACE_COUNTER_RX_MISS = 5,
620 VNET_INTERFACE_COUNTER_RX_ERROR = 6,
621 VNET_INTERFACE_COUNTER_TX_ERROR = 7,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100622 VNET_INTERFACE_COUNTER_MPLS = 8,
623 VNET_N_SIMPLE_INTERFACE_COUNTER = 9,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624 /* Combined counters. */
625 VNET_INTERFACE_COUNTER_RX = 0,
626 VNET_INTERFACE_COUNTER_TX = 1,
627 VNET_N_COMBINED_INTERFACE_COUNTER = 2,
628} vnet_interface_counter_type_t;
629
Dave Barachba868bb2016-08-08 09:51:21 -0400630typedef struct
631{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 u32 output_node_index;
633 u32 tx_node_index;
634} vnet_hw_interface_nodes_t;
635
Dave Barachba868bb2016-08-08 09:51:21 -0400636typedef struct
637{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 /* Hardware interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400639 vnet_hw_interface_t *hw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640
641 /* Hash table mapping HW interface name to index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400642 uword *hw_interface_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643
644 /* Vectors if hardware interface classes and device classes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400645 vnet_hw_interface_class_t *hw_interface_classes;
646 vnet_device_class_t *device_classes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
648 /* Hash table mapping name to hw interface/device class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400649 uword *hw_interface_class_by_name;
650 uword *device_class_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651
652 /* Software interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400653 vnet_sw_interface_t *sw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654
655 /* Hash table mapping sub intfc sw_if_index by sup sw_if_index and sub id */
Dave Barachba868bb2016-08-08 09:51:21 -0400656 uword *sw_if_index_by_sup_and_sub;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657
658 /* Software interface counters both simple and combined
659 packet and byte counters. */
660 volatile u32 *sw_if_counter_lock;
Dave Barachba868bb2016-08-08 09:51:21 -0400661 vlib_simple_counter_main_t *sw_if_counters;
662 vlib_combined_counter_main_t *combined_sw_if_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663
Dave Barachba868bb2016-08-08 09:51:21 -0400664 vnet_hw_interface_nodes_t *deleted_hw_interface_nodes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665
666 /* pcap drop tracing */
667 int drop_pcap_enable;
668 pcap_main_t pcap_main;
Dave Barachba868bb2016-08-08 09:51:21 -0400669 u8 *pcap_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670 u32 pcap_sw_if_index;
671 u32 pcap_pkts_to_capture;
Dave Barachba868bb2016-08-08 09:51:21 -0400672 uword *pcap_drop_filter_hash;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673
Damjan Marion152e21d2016-11-29 14:55:43 +0100674 /* feature_arc_index */
675 u8 output_feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676} vnet_interface_main_t;
677
Dave Barachba868bb2016-08-08 09:51:21 -0400678static inline void
679vnet_interface_counter_lock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680{
681 if (im->sw_if_counter_lock)
682 while (__sync_lock_test_and_set (im->sw_if_counter_lock, 1))
683 /* zzzz */ ;
684}
Dave Barachba868bb2016-08-08 09:51:21 -0400685
686static inline void
687vnet_interface_counter_unlock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688{
689 if (im->sw_if_counter_lock)
690 *im->sw_if_counter_lock = 0;
691}
692
693void vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add);
694
695int vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance);
696
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697#endif /* included_vnet_interface_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400698
699/*
700 * fd.io coding-style-patch-verification: ON
701 *
702 * Local Variables:
703 * eval: (c-set-style "gnu")
704 * End:
705 */