blob: 6a140d2059c84863e0c4b4e0af3a1acdacec9675 [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; \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200104} \
105static void __vnet_interface_function_deinit_##tag##_##f (void) \
106 __attribute__((__destructor__)) ; \
107 \
108static void __vnet_interface_function_deinit_##tag##_##f (void) \
109{ \
110 vnet_main_t * vnm = vnet_get_main(); \
111 _vnet_interface_function_list_elt_t *next; \
112 if (vnm->tag##_functions[p]->fp == (void *) &f) \
113 { \
114 vnm->tag##_functions[p] = \
115 vnm->tag##_functions[p]->next_interface_function; \
116 return; \
117 } \
118 next = vnm->tag##_functions[p]; \
119 while (next->next_interface_function) \
120 { \
121 if (next->next_interface_function->fp == (void *) &f) \
122 { \
123 next->next_interface_function = \
124 next->next_interface_function->next_interface_function; \
125 return; \
126 } \
127 next = next->next_interface_function; \
128 } \
Dave Barachba868bb2016-08-08 09:51:21 -0400129}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
Eyal Barif9cda7d2018-02-13 11:50:58 +0200131#define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \
132 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,VNET_ITF_FUNC_PRIORITY_LOW)
133
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134#define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \
135 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del)
136#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \
137 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000138#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \
139 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140#define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \
141 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del)
142#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \
143 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000144#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \
145 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
147/* A class of hardware interface devices. */
Dave Barachba868bb2016-08-08 09:51:21 -0400148typedef struct _vnet_device_class
149{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 /* Index into main vector. */
151 u32 index;
152
153 /* Device name (e.g. "FOOBAR 1234a"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400154 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
156 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400157 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
159 /* Function to bring device administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400160 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
162 /* Function to call when sub-interface is added/deleted */
Dave Barachba868bb2016-08-08 09:51:21 -0400163 vnet_subif_add_del_function_t *subif_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Stevene3a395c2017-05-09 16:19:50 -0700165 /* Function to call interface rx mode is changed */
166 vnet_interface_set_rx_mode_function_t *rx_mode_change_function;
167
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 /* Redistribute flag changes/existence of this interface class. */
169 u32 redistribute;
170
171 /* Transmit function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400172 vlib_node_function_t *tx_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
174 /* Error strings indexed by error code for this node. */
Dave Barachba868bb2016-08-08 09:51:21 -0400175 char **tx_function_error_strings;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176
177 /* Number of error codes used by this node. */
178 u32 tx_function_n_errors;
179
180 /* Renumber device name [only!] support, a control-plane kludge */
Dave Barachba868bb2016-08-08 09:51:21 -0400181 int (*name_renumber) (struct vnet_hw_interface_t * hi,
182 u32 new_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
184 /* Format device instance as name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400185 format_function_t *format_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
187 /* Parse function for device name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400188 unformat_function_t *unformat_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
190 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400191 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
193 /* Trace buffer format for TX function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400194 format_function_t *format_tx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196 /* Function to clear hardware counters for device. */
Dave Barachba868bb2016-08-08 09:51:21 -0400197 void (*clear_counters) (u32 dev_class_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Dave Barachba868bb2016-08-08 09:51:21 -0400199 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
200 u32 hw_if_index,
201 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
203 /* Called when hardware class of an interface changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400204 void (*hw_class_change) (struct vnet_main_t * vnm,
205 u32 hw_if_index, u32 new_hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206
207 /* Called to redirect traffic from a specific interface instance */
Dave Barachba868bb2016-08-08 09:51:21 -0400208 void (*rx_redirect_to_node) (struct vnet_main_t * vnm,
209 u32 hw_if_index, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
211 /* Link-list of all device classes set up by constructors created below */
Dave Barachba868bb2016-08-08 09:51:21 -0400212 struct _vnet_device_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
Pavel Kotucekc631f2d2016-09-26 10:40:02 +0200214 /* Function to set mac address. */
215 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216} vnet_device_class_t;
217
218#define VNET_DEVICE_CLASS(x,...) \
219 __VA_ARGS__ vnet_device_class_t x; \
220static void __vnet_add_device_class_registration_##x (void) \
221 __attribute__((__constructor__)) ; \
222static void __vnet_add_device_class_registration_##x (void) \
223{ \
224 vnet_main_t * vnm = vnet_get_main(); \
225 x.next_class_registration = vnm->device_class_registrations; \
226 vnm->device_class_registrations = &x; \
227} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200228static void __vnet_rm_device_class_registration_##x (void) \
229 __attribute__((__destructor__)) ; \
230static void __vnet_rm_device_class_registration_##x (void) \
231{ \
232 vnet_main_t * vnm = vnet_get_main(); \
233 VLIB_REMOVE_FROM_LINKED_LIST (vnm->device_class_registrations, \
234 &x, next_class_registration); \
235} \
Dave Barachba868bb2016-08-08 09:51:21 -0400236__VA_ARGS__ vnet_device_class_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
Damjan Marion1c80e832016-05-11 23:07:18 +0200238#define VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE(arch, fn, tgt) \
239 uword \
240 __attribute__ ((flatten)) \
241 __attribute__ ((target (tgt))) \
242 CLIB_CPU_OPTIMIZED \
243 fn ## _ ## arch ( vlib_main_t * vm, \
244 vlib_node_runtime_t * node, \
245 vlib_frame_t * frame) \
246 { return fn (vm, node, frame); }
247
248#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \
249 foreach_march_variant(VLIB_DEVICE_TX_FUNCTION_CLONE_TEMPLATE, fn)
250
251#if CLIB_DEBUG > 0
252#define VLIB_MULTIARCH_CLONE_AND_SELECT_FN(fn,...)
253#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn)
254#else
255#define VLIB_DEVICE_TX_FUNCTION_MULTIARCH(dev, fn) \
256 VLIB_DEVICE_TX_FUNCTION_MULTIARCH_CLONE(fn) \
257 CLIB_MULTIARCH_SELECT_FN(fn, static inline) \
258 static void __attribute__((__constructor__)) \
259 __vlib_device_tx_function_multiarch_select_##dev (void) \
260 { dev.tx_function = fn ## _multiarch_select(); }
261#endif
262
Neale Rannsb80c5362016-10-08 13:03:40 +0100263/**
264 * Link Type: A description of the protocol of packets on the link.
265 * On an ethernet link this maps directly into the ethertype. On a GRE tunnel
266 * it maps to the GRE-proto, etc for other lnk types.
267 */
268typedef enum vnet_link_t_
269{
270#if CLIB_DEBUG > 0
271 VNET_LINK_IP4 = 1,
272#else
273 VNET_LINK_IP4 = 0,
274#endif
275 VNET_LINK_IP6,
276 VNET_LINK_MPLS,
277 VNET_LINK_ETHERNET,
278 VNET_LINK_ARP,
Florin Corasce1b4c72017-01-26 14:25:34 -0800279 VNET_LINK_NSH,
Neale Rannsb80c5362016-10-08 13:03:40 +0100280} __attribute__ ((packed)) vnet_link_t;
281
Neale Ranns924d03a2016-10-19 08:25:46 +0100282#define VNET_LINKS { \
283 [VNET_LINK_ETHERNET] = "ethernet", \
284 [VNET_LINK_IP4] = "ipv4", \
285 [VNET_LINK_IP6] = "ipv6", \
286 [VNET_LINK_MPLS] = "mpls", \
287 [VNET_LINK_ARP] = "arp", \
Florin Corasce1b4c72017-01-26 14:25:34 -0800288 [VNET_LINK_NSH] = "nsh", \
Neale Ranns924d03a2016-10-19 08:25:46 +0100289}
290
291/**
292 * @brief Number of link types. Not part of the enum so it does not have to be included in
293 * switch statements
294 */
Florin Corasce1b4c72017-01-26 14:25:34 -0800295#define VNET_LINK_NUM (VNET_LINK_NSH+1)
Neale Ranns924d03a2016-10-19 08:25:46 +0100296
Neale Rannsb80c5362016-10-08 13:03:40 +0100297/**
298 * @brief Convert a link to to an Ethertype
299 */
300extern vnet_l3_packet_type_t vnet_link_to_l3_proto (vnet_link_t link);
301
302/**
303 * @brief Attributes assignable to a HW interface Class.
304 */
305typedef enum vnet_hw_interface_class_flags_t_
306{
307 /**
308 * @brief a point 2 point interface
309 */
310 VNET_HW_INTERFACE_CLASS_FLAG_P2P = (1 << 0),
311} vnet_hw_interface_class_flags_t;
Damjan Marion1c80e832016-05-11 23:07:18 +0200312
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313/* Layer-2 (e.g. Ethernet) interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400314typedef struct _vnet_hw_interface_class
315{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 /* Index into main vector. */
317 u32 index;
318
319 /* Class name (e.g. "Ethernet"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400320 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Neale Rannsb80c5362016-10-08 13:03:40 +0100322 /* Flags */
323 vnet_hw_interface_class_flags_t flags;
324
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400326 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
328 /* Function to bring interface administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400329 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331 /* Function to call when link state changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400332 vnet_interface_function_t *link_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333
Neale Ranns3be6b282016-12-20 14:24:01 +0000334 /* Function to call when link MAC changes. */
335 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
336
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 /* Format function to display interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400338 format_function_t *format_interface_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
340 /* Format function to display interface address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400341 format_function_t *format_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342
343 /* Format packet header for this interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400344 format_function_t *format_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345
346 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400347 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
349 /* Parser for hardware (e.g. ethernet) address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400350 unformat_function_t *unformat_hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
352 /* Parser for packet header for e.g. rewrite string. */
Dave Barachba868bb2016-08-08 09:51:21 -0400353 unformat_function_t *unformat_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
Neale Rannsb80c5362016-10-08 13:03:40 +0100355 /* Builds a rewrite string for the interface to the destination
356 * for the payload/link type. */
357 u8 *(*build_rewrite) (struct vnet_main_t * vnm,
358 u32 sw_if_index,
359 vnet_link_t link_type, const void *dst_hw_address);
360
361 /* Update an adjacecny added by FIB (as opposed to via the
362 * neighbour resolution protocol). */
363 void (*update_adjacency) (struct vnet_main_t * vnm,
364 u32 sw_if_index, u32 adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365
Dave Barachba868bb2016-08-08 09:51:21 -0400366 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
367 u32 hw_if_index,
368 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
370 /* Called when hw interface class is changed and old hardware instance
371 may want to be deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400372 void (*hw_class_change) (struct vnet_main_t * vnm, u32 hw_if_index,
373 u32 old_class_index, u32 new_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
375 /* List of hw interface classes, built by constructors */
Dave Barachba868bb2016-08-08 09:51:21 -0400376 struct _vnet_hw_interface_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
378} vnet_hw_interface_class_t;
379
Neale Rannsb80c5362016-10-08 13:03:40 +0100380/**
381 * @brief Return a complete, zero-length (aka dummy) rewrite
382 */
383extern u8 *default_build_rewrite (struct vnet_main_t *vnm,
384 u32 sw_if_index,
385 vnet_link_t link_type,
386 const void *dst_hw_address);
387
388/**
389 * @brief Default adjacency update function
390 */
391extern void default_update_adjacency (struct vnet_main_t *vnm,
392 u32 sw_if_index, u32 adj_index);
393
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394#define VNET_HW_INTERFACE_CLASS(x,...) \
395 __VA_ARGS__ vnet_hw_interface_class_t x; \
396static void __vnet_add_hw_interface_class_registration_##x (void) \
397 __attribute__((__constructor__)) ; \
398static void __vnet_add_hw_interface_class_registration_##x (void) \
399{ \
400 vnet_main_t * vnm = vnet_get_main(); \
401 x.next_class_registration = vnm->hw_interface_class_registrations; \
402 vnm->hw_interface_class_registrations = &x; \
403} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200404static void __vnet_rm_hw_interface_class_registration_##x (void) \
405 __attribute__((__destructor__)) ; \
406static void __vnet_rm_hw_interface_class_registration_##x (void) \
407{ \
408 vnet_main_t * vnm = vnet_get_main(); \
409 VLIB_REMOVE_FROM_LINKED_LIST (vnm->hw_interface_class_registrations,\
410 &x, next_class_registration); \
411} \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412__VA_ARGS__ vnet_hw_interface_class_t x
413
414/* Hardware-interface. This corresponds to a physical wire
415 that packets flow over. */
Dave Barachba868bb2016-08-08 09:51:21 -0400416typedef struct vnet_hw_interface_t
417{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 /* Interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400419 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
421 u32 flags;
422 /* Hardware link state is up. */
423#define VNET_HW_INTERFACE_FLAG_LINK_UP (1 << 0)
424 /* Hardware duplex state */
425#define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1
426#define VNET_HW_INTERFACE_FLAG_HALF_DUPLEX (1 << 1)
427#define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX (1 << 2)
428#define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \
429 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \
430 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX)
431
432 /* Hardware link speed */
433#define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3
434#define VNET_HW_INTERFACE_FLAG_SPEED_10M (1 << 3)
435#define VNET_HW_INTERFACE_FLAG_SPEED_100M (1 << 4)
436#define VNET_HW_INTERFACE_FLAG_SPEED_1G (1 << 5)
Lee Roberts03f47f12018-03-07 20:18:48 -0700437#define VNET_HW_INTERFACE_FLAG_SPEED_2_5G (1 << 6)
438#define VNET_HW_INTERFACE_FLAG_SPEED_5G (1 << 7)
439#define VNET_HW_INTERFACE_FLAG_SPEED_10G (1 << 8)
440#define VNET_HW_INTERFACE_FLAG_SPEED_20G (1 << 9)
441#define VNET_HW_INTERFACE_FLAG_SPEED_25G (1 << 10)
442#define VNET_HW_INTERFACE_FLAG_SPEED_40G (1 << 11)
443#define VNET_HW_INTERFACE_FLAG_SPEED_50G (1 << 12)
444#define VNET_HW_INTERFACE_FLAG_SPEED_56G (1 << 13)
445#define VNET_HW_INTERFACE_FLAG_SPEED_100G (1 << 14)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446#define VNET_HW_INTERFACE_FLAG_SPEED_MASK \
447 (VNET_HW_INTERFACE_FLAG_SPEED_10M | \
448 VNET_HW_INTERFACE_FLAG_SPEED_100M | \
449 VNET_HW_INTERFACE_FLAG_SPEED_1G | \
Lee Roberts03f47f12018-03-07 20:18:48 -0700450 VNET_HW_INTERFACE_FLAG_SPEED_2_5G | \
451 VNET_HW_INTERFACE_FLAG_SPEED_5G | \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 VNET_HW_INTERFACE_FLAG_SPEED_10G | \
Lee Roberts03f47f12018-03-07 20:18:48 -0700453 VNET_HW_INTERFACE_FLAG_SPEED_20G | \
Damjan Marion7c748bb2018-02-25 22:55:03 +0100454 VNET_HW_INTERFACE_FLAG_SPEED_25G | \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 VNET_HW_INTERFACE_FLAG_SPEED_40G | \
Lee Roberts03f47f12018-03-07 20:18:48 -0700456 VNET_HW_INTERFACE_FLAG_SPEED_50G | \
457 VNET_HW_INTERFACE_FLAG_SPEED_56G | \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 VNET_HW_INTERFACE_FLAG_SPEED_100G)
459
Damjan Marion44036902017-04-28 12:29:15 +0200460 /* rx mode flags */
Lee Roberts03f47f12018-03-07 20:18:48 -0700461#define VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE (1 << 16)
Damjan Marion44036902017-04-28 12:29:15 +0200462
Dave Barach2c0a4f42017-06-29 09:30:15 -0400463 /* tx checksum offload */
Lee Roberts03f47f12018-03-07 20:18:48 -0700464#define VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD (1 << 17)
Dave Barach2c0a4f42017-06-29 09:30:15 -0400465
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 /* Hardware address as vector. Zero (e.g. zero-length vector) if no
467 address for this class (e.g. PPP). */
Dave Barachba868bb2016-08-08 09:51:21 -0400468 u8 *hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
470 /* Interface is up as far as software is concerned. */
471 /* NAME.{output,tx} nodes for this interface. */
472 u32 output_node_index, tx_node_index;
473
474 /* (dev_class, dev_instance) uniquely identifies hw interface. */
475 u32 dev_class_index;
476 u32 dev_instance;
477
478 /* (hw_class, hw_instance) uniquely identifies hw interface. */
479 u32 hw_class_index;
480 u32 hw_instance;
481
482 /* Hardware index for this hardware interface. */
483 u32 hw_if_index;
484
485 /* Software index for this hardware interface. */
486 u32 sw_if_index;
487
John Loe5453d02018-01-23 19:21:34 -0500488 /* Next index in interface-output node for this interface
489 used by node function vnet_per_buffer_interface_output() */
490 u32 output_node_next_index;
491
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 /* Maximum transmit rate for this interface in bits/sec. */
493 f64 max_rate_bits_per_sec;
494
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200495 /* Smallest packet size supported by this interface. */
496 u32 min_supported_packet_bytes;
497
498 /* Largest packet size supported by this interface. */
499 u32 max_supported_packet_bytes;
500
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 /* Smallest packet size for this interface. */
502 u32 min_packet_bytes;
503
504 /* Largest packet size for this interface. */
505 u32 max_packet_bytes;
506
507 /* Number of extra bytes that go on the wire.
508 Packet length on wire
509 = max (length + per_packet_overhead_bytes, min_packet_bytes). */
510 u32 per_packet_overhead_bytes;
511
512 /* Receive and transmit layer 3 packet size limits (MRU/MTU). */
513 u32 max_l3_packet_bytes[VLIB_N_RX_TX];
514
515 /* Hash table mapping sub interface id to sw_if_index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400516 uword *sub_interface_sw_if_index_by_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
518 /* Count of number of L2 subinterfaces */
519 u32 l2_if_count;
John Lobcebbb92016-04-05 15:47:43 -0400520
521 /* Bonded interface info -
522 0 - not a bonded interface nor a slave
523 ~0 - slave to a bonded interface
524 others - A bonded interface with a pointer to bitmap for all slaves */
525 uword *bond_info;
526#define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0)
527#define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0)
528
Damjan Marioneb743fa2017-03-20 16:34:15 +0100529 /* Input node */
530 u32 input_node_index;
531
532 /* input node cpu index by queue */
Damjan Marion586afd72017-04-05 19:18:20 +0200533 u32 *input_node_thread_index_by_queue;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100534
Damjan Marion44036902017-04-28 12:29:15 +0200535 /* vnet_hw_interface_rx_mode by queue */
536 u8 *rx_mode_by_queue;
Damjan Marion4e53a0d2017-06-21 14:29:44 +0200537 vnet_hw_interface_rx_mode default_rx_mode;
Damjan Marion44036902017-04-28 12:29:15 +0200538
Damjan Marion153646e2017-04-05 18:15:45 +0200539 /* device input device_and_queue runtime index */
540 uword *dq_runtime_index_by_queue;
541
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542} vnet_hw_interface_t;
543
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200544extern vnet_device_class_t vnet_local_interface_device_class;
545
Dave Barachba868bb2016-08-08 09:51:21 -0400546typedef enum
547{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548 /* A hw interface. */
549 VNET_SW_INTERFACE_TYPE_HARDWARE,
550
551 /* A sub-interface. */
552 VNET_SW_INTERFACE_TYPE_SUB,
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200553 VNET_SW_INTERFACE_TYPE_P2P,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554} vnet_sw_interface_type_t;
555
Dave Barachba868bb2016-08-08 09:51:21 -0400556typedef struct
557{
558 /*
559 * Subinterface ID. A number 0-N to uniquely identify
560 * this subinterface under the main (parent?) interface
561 */
562 u32 id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563
Dave Barachba868bb2016-08-08 09:51:21 -0400564 /* Classification data. Used to associate packet header with subinterface. */
565 struct
566 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 u16 outer_vlan_id;
568 u16 inner_vlan_id;
Dave Barachba868bb2016-08-08 09:51:21 -0400569 union
570 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 u16 raw_flags;
Dave Barachba868bb2016-08-08 09:51:21 -0400572 struct
573 {
574 u16 no_tags:1;
575 u16 one_tag:1;
576 u16 two_tags:1;
577 u16 dot1ad:1; /* 0 = dot1q, 1=dot1ad */
578 u16 exact_match:1;
579 u16 default_sub:1;
580 u16 outer_vlan_id_any:1;
581 u16 inner_vlan_id_any:1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582 } flags;
583 };
584 } eth;
585} vnet_sub_interface_t;
586
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200587typedef struct
588{
589 /*
590 * Subinterface ID. A number 0-N to uniquely identify
591 * this subinterface under the main interface
592 */
593 u32 id;
594 u32 pool_index;
595 u8 client_mac[6];
596} vnet_p2p_sub_interface_t;
597
Eyal Baric5b13602016-11-24 19:42:43 +0200598typedef enum
599{
600 /* Always flood */
601 VNET_FLOOD_CLASS_NORMAL,
602 VNET_FLOOD_CLASS_TUNNEL_MASTER,
603 /* Does not flood when tunnel master is in the same L2 BD */
604 VNET_FLOOD_CLASS_TUNNEL_NORMAL
605} vnet_flood_class_t;
606
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607/* Software-interface. This corresponds to a Ethernet VLAN, ATM vc, a
608 tunnel, etc. Configuration (e.g. IP address) gets attached to
609 software interface. */
Dave Barachba868bb2016-08-08 09:51:21 -0400610typedef struct
611{
612 vnet_sw_interface_type_t type:16;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
614 u16 flags;
615 /* Interface is "up" meaning adminstratively up.
616 Up in the sense of link state being up is maintained by hardware interface. */
617#define VNET_SW_INTERFACE_FLAG_ADMIN_UP (1 << 0)
618
619 /* Interface is disabled for forwarding: punt all traffic to slow-path. */
620#define VNET_SW_INTERFACE_FLAG_PUNT (1 << 1)
621
622#define VNET_SW_INTERFACE_FLAG_PROXY_ARP (1 << 2)
623
624#define VNET_SW_INTERFACE_FLAG_UNNUMBERED (1 << 3)
625
John Lobcebbb92016-04-05 15:47:43 -0400626#define VNET_SW_INTERFACE_FLAG_BOND_SLAVE (1 << 4)
627
John Lob2fd6cb2017-07-12 19:56:45 -0400628 /* Interface does not appear in CLI/API */
Eyal Bari3212c572017-03-06 11:47:50 +0200629#define VNET_SW_INTERFACE_FLAG_HIDDEN (1 << 5)
630
John Lob2fd6cb2017-07-12 19:56:45 -0400631 /* Interface in ERROR state */
Damjan Marionabce5092017-05-10 20:09:31 +0200632#define VNET_SW_INTERFACE_FLAG_ERROR (1 << 6)
633
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 /* Index for this interface. */
635 u32 sw_if_index;
636
637 /* Software interface index of super-interface;
638 equal to sw_if_index if this interface is not a
639 sub-interface. */
640 u32 sup_sw_if_index;
641
642 /* this swif is unnumbered, use addresses on unnumbered_sw_if_index... */
643 u32 unnumbered_sw_if_index;
644
645 u32 link_speed;
646
Dave Barachba868bb2016-08-08 09:51:21 -0400647 union
648 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 /* VNET_SW_INTERFACE_TYPE_HARDWARE. */
650 u32 hw_if_index;
651
652 /* VNET_SW_INTERFACE_TYPE_SUB. */
653 vnet_sub_interface_t sub;
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200654
655 /* VNET_SW_INTERFACE_TYPE_P2P. */
656 vnet_p2p_sub_interface_t p2p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 };
Eyal Baric5b13602016-11-24 19:42:43 +0200658
659 vnet_flood_class_t flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660} vnet_sw_interface_t;
661
Dave Barachba868bb2016-08-08 09:51:21 -0400662typedef enum
663{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 /* Simple counters. */
665 VNET_INTERFACE_COUNTER_DROP = 0,
666 VNET_INTERFACE_COUNTER_PUNT = 1,
667 VNET_INTERFACE_COUNTER_IP4 = 2,
668 VNET_INTERFACE_COUNTER_IP6 = 3,
669 VNET_INTERFACE_COUNTER_RX_NO_BUF = 4,
670 VNET_INTERFACE_COUNTER_RX_MISS = 5,
671 VNET_INTERFACE_COUNTER_RX_ERROR = 6,
672 VNET_INTERFACE_COUNTER_TX_ERROR = 7,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100673 VNET_INTERFACE_COUNTER_MPLS = 8,
674 VNET_N_SIMPLE_INTERFACE_COUNTER = 9,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 /* Combined counters. */
676 VNET_INTERFACE_COUNTER_RX = 0,
Neale Ranns871dc422018-03-29 01:28:09 -0700677 VNET_INTERFACE_COUNTER_RX_UNICAST = 1,
678 VNET_INTERFACE_COUNTER_RX_MULTICAST = 2,
679 VNET_INTERFACE_COUNTER_RX_BROADCAST = 3,
680 VNET_INTERFACE_COUNTER_TX = 4,
681 VNET_INTERFACE_COUNTER_TX_UNICAST = 5,
682 VNET_INTERFACE_COUNTER_TX_MULTICAST = 6,
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700683 VNET_INTERFACE_COUNTER_TX_BROADCAST = 7,
684 VNET_N_COMBINED_INTERFACE_COUNTER = 8,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685} vnet_interface_counter_type_t;
686
Neale Ranns871dc422018-03-29 01:28:09 -0700687#define foreach_rx_combined_interface_counter(_x) \
688 for (_x = VNET_INTERFACE_COUNTER_RX; \
689 _x <= VNET_INTERFACE_COUNTER_RX_BROADCAST; \
690 _x++)
691
692#define foreach_tx_combined_interface_counter(_x) \
693 for (_x = VNET_INTERFACE_COUNTER_TX; \
694 _x <= VNET_INTERFACE_COUNTER_TX_BROADCAST; \
695 _x++)
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700696
697typedef enum
698{
699 COLLECT_SIMPLE_STATS = 0,
700 COLLECT_DETAILED_STATS = 1,
701} vnet_interface_stats_collection_mode_e;
702
703extern int collect_detailed_interface_stats_flag;
704
705static inline int
Neale Rannsf704f382018-03-19 12:24:07 -0400706collect_detailed_interface_stats (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700707{
708 return collect_detailed_interface_stats_flag;
709}
710
Neale Rannsf704f382018-03-19 12:24:07 -0400711void collect_detailed_interface_stats_flag_set (void);
712void collect_detailed_interface_stats_flag_clear (void);
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700713
714
Dave Barachba868bb2016-08-08 09:51:21 -0400715typedef struct
716{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717 u32 output_node_index;
718 u32 tx_node_index;
719} vnet_hw_interface_nodes_t;
720
Dave Barachba868bb2016-08-08 09:51:21 -0400721typedef struct
722{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 /* Hardware interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400724 vnet_hw_interface_t *hw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725
726 /* Hash table mapping HW interface name to index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400727 uword *hw_interface_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
729 /* Vectors if hardware interface classes and device classes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400730 vnet_hw_interface_class_t *hw_interface_classes;
731 vnet_device_class_t *device_classes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732
733 /* Hash table mapping name to hw interface/device class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400734 uword *hw_interface_class_by_name;
735 uword *device_class_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736
737 /* Software interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400738 vnet_sw_interface_t *sw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739
740 /* Hash table mapping sub intfc sw_if_index by sup sw_if_index and sub id */
Dave Barachba868bb2016-08-08 09:51:21 -0400741 uword *sw_if_index_by_sup_and_sub;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
743 /* Software interface counters both simple and combined
744 packet and byte counters. */
745 volatile u32 *sw_if_counter_lock;
Dave Barachba868bb2016-08-08 09:51:21 -0400746 vlib_simple_counter_main_t *sw_if_counters;
747 vlib_combined_counter_main_t *combined_sw_if_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748
Dave Barachba868bb2016-08-08 09:51:21 -0400749 vnet_hw_interface_nodes_t *deleted_hw_interface_nodes;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
751 /* pcap drop tracing */
752 int drop_pcap_enable;
753 pcap_main_t pcap_main;
Dave Barachba868bb2016-08-08 09:51:21 -0400754 u8 *pcap_filename;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755 u32 pcap_sw_if_index;
756 u32 pcap_pkts_to_capture;
Dave Barachba868bb2016-08-08 09:51:21 -0400757 uword *pcap_drop_filter_hash;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758
Damjan Marion152e21d2016-11-29 14:55:43 +0100759 /* feature_arc_index */
760 u8 output_feature_arc_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761} vnet_interface_main_t;
762
Dave Barachba868bb2016-08-08 09:51:21 -0400763static inline void
764vnet_interface_counter_lock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765{
766 if (im->sw_if_counter_lock)
767 while (__sync_lock_test_and_set (im->sw_if_counter_lock, 1))
768 /* zzzz */ ;
769}
Dave Barachba868bb2016-08-08 09:51:21 -0400770
771static inline void
772vnet_interface_counter_unlock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773{
774 if (im->sw_if_counter_lock)
775 *im->sw_if_counter_lock = 0;
776}
777
778void vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add);
779
780int vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance);
781
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782#endif /* included_vnet_interface_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400783
784/*
785 * fd.io coding-style-patch-verification: ON
786 *
787 * Local Variables:
788 * eval: (c-set-style "gnu")
789 * End:
790 */