blob: 822d4c3a7ad4acbbb74839bf2ddb58e9f97e658b [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
Dave Barach3ae28732018-11-16 17:19:00 -050043#include <vlib/vlib.h>
44#include <vppinfra/pcap.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010045#include <vnet/l3_types.h>
jaszha035cdde5c2019-07-11 20:47:24 +000046#include <vppinfra/lock.h>
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +000047#include <vnet/hash/hash.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
49struct vnet_main_t;
50struct vnet_hw_interface_t;
51struct vnet_sw_interface_t;
Neale Rannsc87b66c2019-02-07 07:26:12 -080052union ip46_address_t_;
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Stevene3a395c2017-05-09 16:19:50 -070054typedef enum
55{
Damjan Marioneabd4242020-10-07 20:59:07 +020056 VNET_HW_IF_RX_MODE_UNKNOWN,
57 VNET_HW_IF_RX_MODE_POLLING,
58 VNET_HW_IF_RX_MODE_INTERRUPT,
59 VNET_HW_IF_RX_MODE_ADAPTIVE,
60 VNET_HW_IF_RX_MODE_DEFAULT,
61 VNET_HW_IF_NUM_RX_MODES,
62} vnet_hw_if_rx_mode;
Stevene3a395c2017-05-09 16:19:50 -070063
Ed Warnickecb9cada2015-12-08 15:45:58 -070064/* Interface up/down callback. */
Dave Barachba868bb2016-08-08 09:51:21 -040065typedef clib_error_t *(vnet_interface_function_t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 (struct vnet_main_t * vnm, u32 if_index, u32 flags);
67
68/* Sub-interface add/del callback. */
Dave Barachba868bb2016-08-08 09:51:21 -040069typedef clib_error_t *(vnet_subif_add_del_function_t)
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 (struct vnet_main_t * vnm, u32 if_index,
Dave Barachba868bb2016-08-08 09:51:21 -040071 struct vnet_sw_interface_t * template, int is_add);
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
Pavel Kotucekc631f2d2016-09-26 10:40:02 +020073/* Interface set mac address callback. */
74typedef clib_error_t *(vnet_interface_set_mac_address_function_t)
Neale Ranns3b81a1e2018-09-06 09:50:26 -070075 (struct vnet_hw_interface_t * hi,
76 const u8 * old_address, const u8 * new_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +020077
Matthew Smithe0792fd2019-07-12 11:48:24 -050078/* Interface add/del additional mac address callback */
79typedef clib_error_t *(vnet_interface_add_del_mac_address_function_t)
80 (struct vnet_hw_interface_t * hi, const u8 * address, u8 is_add);
81
Stevene3a395c2017-05-09 16:19:50 -070082/* Interface set rx mode callback. */
83typedef clib_error_t *(vnet_interface_set_rx_mode_function_t)
84 (struct vnet_main_t * vnm, u32 if_index, u32 queue_id,
Damjan Marioneabd4242020-10-07 20:59:07 +020085 vnet_hw_if_rx_mode mode);
Stevene3a395c2017-05-09 16:19:50 -070086
Steven4f8863b2018-04-12 19:36:19 -070087/* Interface set l2 mode callback. */
88typedef clib_error_t *(vnet_interface_set_l2_mode_function_t)
89 (struct vnet_main_t * vnm, struct vnet_hw_interface_t * hi,
90 i32 l2_if_adjust);
91
Chenmin Sunc4665092020-07-06 08:20:39 +080092/* Interface to set rss queues of the interface */
93typedef clib_error_t *(vnet_interface_rss_queues_set_t)
94 (struct vnet_main_t * vnm, struct vnet_hw_interface_t * hi,
95 clib_bitmap_t * bitmap);
96
Damjan Mariona35cc142018-03-16 01:25:27 +010097typedef enum
98{
99 VNET_FLOW_DEV_OP_ADD_FLOW,
100 VNET_FLOW_DEV_OP_DEL_FLOW,
101 VNET_FLOW_DEV_OP_GET_COUNTER,
102 VNET_FLOW_DEV_OP_RESET_COUNTER,
103} vnet_flow_dev_op_t;
104
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700105/* Interface flow operations callback. */
Damjan Mariona35cc142018-03-16 01:25:27 +0100106typedef int (vnet_flow_dev_ops_function_t) (struct vnet_main_t * vnm,
107 vnet_flow_dev_op_t op,
108 u32 hw_if_index, u32 index,
109 uword * private_data);
110
Neale Ranns8b37b872016-11-21 12:25:22 +0000111typedef enum vnet_interface_function_priority_t_
112{
113 VNET_ITF_FUNC_PRIORITY_LOW,
114 VNET_ITF_FUNC_PRIORITY_HIGH,
115} vnet_interface_function_priority_t;
116#define VNET_ITF_FUNC_N_PRIO ((vnet_interface_function_priority_t)VNET_ITF_FUNC_PRIORITY_HIGH+1)
117
Dave Barachba868bb2016-08-08 09:51:21 -0400118typedef struct _vnet_interface_function_list_elt
119{
120 struct _vnet_interface_function_list_elt *next_interface_function;
121 clib_error_t *(*fp) (struct vnet_main_t * vnm, u32 if_index, u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122} _vnet_interface_function_list_elt_t;
123
Damjan Marion6e363512018-08-10 22:39:11 +0200124#ifndef CLIB_MARCH_VARIANT
Neale Ranns8b37b872016-11-21 12:25:22 +0000125#define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \
126 \
127static void __vnet_interface_function_init_##tag##_##f (void) \
128 __attribute__((__constructor__)) ; \
129 \
130static void __vnet_interface_function_init_##tag##_##f (void) \
131{ \
132 vnet_main_t * vnm = vnet_get_main(); \
133 static _vnet_interface_function_list_elt_t init_function; \
134 init_function.next_interface_function = vnm->tag##_functions[p]; \
135 vnm->tag##_functions[p] = &init_function; \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 init_function.fp = (void *) &f; \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200137} \
138static void __vnet_interface_function_deinit_##tag##_##f (void) \
139 __attribute__((__destructor__)) ; \
140 \
141static void __vnet_interface_function_deinit_##tag##_##f (void) \
142{ \
143 vnet_main_t * vnm = vnet_get_main(); \
144 _vnet_interface_function_list_elt_t *next; \
Neale Ranns8f215b42019-02-22 12:40:53 +0000145 if (vnm->tag##_functions[p]->fp == f) \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200146 { \
147 vnm->tag##_functions[p] = \
148 vnm->tag##_functions[p]->next_interface_function; \
149 return; \
150 } \
151 next = vnm->tag##_functions[p]; \
152 while (next->next_interface_function) \
153 { \
Neale Ranns8f215b42019-02-22 12:40:53 +0000154 if (next->next_interface_function->fp == f) \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200155 { \
156 next->next_interface_function = \
157 next->next_interface_function->next_interface_function; \
158 return; \
159 } \
160 next = next->next_interface_function; \
161 } \
Dave Barachba868bb2016-08-08 09:51:21 -0400162}
Damjan Marion6e363512018-08-10 22:39:11 +0200163#else
164/* create unused pointer to silence compiler warnings and get whole
165 function optimized out */
166#define _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,p) \
167static __clib_unused void * __clib_unused_##f = f;
168#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
Eyal Barif9cda7d2018-02-13 11:50:58 +0200170#define _VNET_INTERFACE_FUNCTION_DECL(f,tag) \
171 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,tag,VNET_ITF_FUNC_PRIORITY_LOW)
172
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173#define VNET_HW_INTERFACE_ADD_DEL_FUNCTION(f) \
174 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_add_del)
175#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(f) \
176 _VNET_INTERFACE_FUNCTION_DECL(f,hw_interface_link_up_down)
Ole Troand7231612018-06-07 10:17:57 +0200177#define VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(f,p) \
Neale Ranns8b37b872016-11-21 12:25:22 +0000178 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,hw_interface_link_up_down,p)
Ole Troand7231612018-06-07 10:17:57 +0200179#define VNET_SW_INTERFACE_MTU_CHANGE_FUNCTION(f) \
180 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_mtu_change)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181#define VNET_SW_INTERFACE_ADD_DEL_FUNCTION(f) \
182 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_add_del)
BenoƮt Ganne6178bda2020-11-04 10:02:03 +0100183#define VNET_SW_INTERFACE_ADD_DEL_FUNCTION_PRIO(f,p) \
184 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_add_del,p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(f) \
186 _VNET_INTERFACE_FUNCTION_DECL(f,sw_interface_admin_up_down)
Neale Ranns8b37b872016-11-21 12:25:22 +0000187#define VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(f,p) \
188 _VNET_INTERFACE_FUNCTION_DECL_PRIO(f,sw_interface_admin_up_down, p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
Neale Rannsc87b66c2019-02-07 07:26:12 -0800190/**
191 * Tunnel description parameters
192 */
193typedef int (*vnet_dev_class_ip_tunnel_desc_t) (u32 sw_if_index,
194 union ip46_address_t_ * src,
195 union ip46_address_t_ * dst,
196 u8 * is_l2);
197
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198/* A class of hardware interface devices. */
Dave Barachba868bb2016-08-08 09:51:21 -0400199typedef struct _vnet_device_class
200{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 /* Index into main vector. */
202 u32 index;
203
204 /* Device name (e.g. "FOOBAR 1234a"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400205 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206
207 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400208 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
210 /* Function to bring device administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400211 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
213 /* Function to call when sub-interface is added/deleted */
Dave Barachba868bb2016-08-08 09:51:21 -0400214 vnet_subif_add_del_function_t *subif_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Stevene3a395c2017-05-09 16:19:50 -0700216 /* Function to call interface rx mode is changed */
217 vnet_interface_set_rx_mode_function_t *rx_mode_change_function;
218
Steven4f8863b2018-04-12 19:36:19 -0700219 /* Function to call interface l2 mode is changed */
220 vnet_interface_set_l2_mode_function_t *set_l2_mode_function;
221
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 /* Redistribute flag changes/existence of this interface class. */
223 u32 redistribute;
224
225 /* Transmit function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400226 vlib_node_function_t *tx_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +0200228 /* Transmit function candidate registration with priority */
229 vlib_node_fn_registration_t *tx_fn_registrations;
230
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 /* Error strings indexed by error code for this node. */
Dave Barachba868bb2016-08-08 09:51:21 -0400232 char **tx_function_error_strings;
Ole Troan2c4acdd2021-05-06 14:09:50 +0200233 vlib_error_desc_t *tx_function_error_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
235 /* Number of error codes used by this node. */
236 u32 tx_function_n_errors;
237
238 /* Renumber device name [only!] support, a control-plane kludge */
Dave Barachba868bb2016-08-08 09:51:21 -0400239 int (*name_renumber) (struct vnet_hw_interface_t * hi,
240 u32 new_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
Damjan Mariona35cc142018-03-16 01:25:27 +0100242 /* Interface flow offload operations */
243 vnet_flow_dev_ops_function_t *flow_ops_function;
244
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 /* Format device instance as name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400246 format_function_t *format_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
248 /* Parse function for device name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400249 unformat_function_t *unformat_device_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400252 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
254 /* Trace buffer format for TX function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400255 format_function_t *format_tx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256
Damjan Mariona35cc142018-03-16 01:25:27 +0100257 /* Format flow offload entry */
258 format_function_t *format_flow;
259
Neale Rannsc87b66c2019-02-07 07:26:12 -0800260 vnet_dev_class_ip_tunnel_desc_t ip_tun_desc;
261
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 /* Function to clear hardware counters for device. */
Dave Barachba868bb2016-08-08 09:51:21 -0400263 void (*clear_counters) (u32 dev_class_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Dave Barachba868bb2016-08-08 09:51:21 -0400265 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
266 u32 hw_if_index,
267 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
269 /* Called when hardware class of an interface changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400270 void (*hw_class_change) (struct vnet_main_t * vnm,
271 u32 hw_if_index, u32 new_hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
273 /* Called to redirect traffic from a specific interface instance */
Dave Barachba868bb2016-08-08 09:51:21 -0400274 void (*rx_redirect_to_node) (struct vnet_main_t * vnm,
275 u32 hw_if_index, u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
277 /* Link-list of all device classes set up by constructors created below */
Dave Barachba868bb2016-08-08 09:51:21 -0400278 struct _vnet_device_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Pavel Kotucekc631f2d2016-09-26 10:40:02 +0200280 /* Function to set mac address. */
281 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
Matthew Smithe0792fd2019-07-12 11:48:24 -0500282
283 /* Function to add/delete additional MAC addresses */
284 vnet_interface_add_del_mac_address_function_t *mac_addr_add_del_function;
Chenmin Sunc4665092020-07-06 08:20:39 +0800285
286 /* Interface to set rss queues of the interface */
287 vnet_interface_rss_queues_set_t *set_rss_queues_function;
288
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289} vnet_device_class_t;
290
Damjan Marion6e363512018-08-10 22:39:11 +0200291#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292#define VNET_DEVICE_CLASS(x,...) \
293 __VA_ARGS__ vnet_device_class_t x; \
294static void __vnet_add_device_class_registration_##x (void) \
295 __attribute__((__constructor__)) ; \
296static void __vnet_add_device_class_registration_##x (void) \
297{ \
298 vnet_main_t * vnm = vnet_get_main(); \
299 x.next_class_registration = vnm->device_class_registrations; \
300 vnm->device_class_registrations = &x; \
301} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200302static void __vnet_rm_device_class_registration_##x (void) \
303 __attribute__((__destructor__)) ; \
304static void __vnet_rm_device_class_registration_##x (void) \
305{ \
306 vnet_main_t * vnm = vnet_get_main(); \
307 VLIB_REMOVE_FROM_LINKED_LIST (vnm->device_class_registrations, \
308 &x, next_class_registration); \
309} \
Dave Barachba868bb2016-08-08 09:51:21 -0400310__VA_ARGS__ vnet_device_class_t x
Damjan Marion6e363512018-08-10 22:39:11 +0200311#else
312/* create unused pointer to silence compiler warnings and get whole
313 function optimized out */
314#define VNET_DEVICE_CLASS(x,...) \
315static __clib_unused vnet_device_class_t __clib_unused_##x
316#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317
Damjan Marionf91098e2021-03-09 16:28:15 +0100318#define VNET_DEVICE_CLASS_TX_FN(devclass) \
319 uword CLIB_MARCH_SFX (devclass##_tx_fn) (); \
320 static vlib_node_fn_registration_t CLIB_MARCH_SFX ( \
321 devclass##_tx_fn_registration) = { \
322 .function = &CLIB_MARCH_SFX (devclass##_tx_fn), \
323 }; \
324 \
325 static void __clib_constructor CLIB_MARCH_SFX ( \
326 devclass##_tx_fn_multiarch_register) (void) \
327 { \
328 extern vnet_device_class_t devclass; \
329 vlib_node_fn_registration_t *r; \
330 r = &CLIB_MARCH_SFX (devclass##_tx_fn_registration); \
Damjan Mariona31698b2021-03-10 14:35:28 +0100331 r->march_variant = CLIB_MARCH_SFX (CLIB_MARCH_VARIANT_TYPE); \
Damjan Marionf91098e2021-03-09 16:28:15 +0100332 r->next_registration = devclass.tx_fn_registrations; \
333 devclass.tx_fn_registrations = r; \
334 } \
Damjan Marion1bb67ab2021-04-30 11:11:08 +0200335 uword CLIB_MARCH_SFX (devclass##_tx_fn)
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +0200336
Neale Rannsb80c5362016-10-08 13:03:40 +0100337/**
338 * Link Type: A description of the protocol of packets on the link.
339 * On an ethernet link this maps directly into the ethertype. On a GRE tunnel
340 * it maps to the GRE-proto, etc for other lnk types.
341 */
342typedef enum vnet_link_t_
343{
344#if CLIB_DEBUG > 0
345 VNET_LINK_IP4 = 1,
346#else
347 VNET_LINK_IP4 = 0,
348#endif
349 VNET_LINK_IP6,
350 VNET_LINK_MPLS,
351 VNET_LINK_ETHERNET,
352 VNET_LINK_ARP,
Florin Corasce1b4c72017-01-26 14:25:34 -0800353 VNET_LINK_NSH,
Neale Rannsb80c5362016-10-08 13:03:40 +0100354} __attribute__ ((packed)) vnet_link_t;
355
Neale Ranns924d03a2016-10-19 08:25:46 +0100356#define VNET_LINKS { \
357 [VNET_LINK_ETHERNET] = "ethernet", \
358 [VNET_LINK_IP4] = "ipv4", \
359 [VNET_LINK_IP6] = "ipv6", \
360 [VNET_LINK_MPLS] = "mpls", \
361 [VNET_LINK_ARP] = "arp", \
Florin Corasce1b4c72017-01-26 14:25:34 -0800362 [VNET_LINK_NSH] = "nsh", \
Neale Ranns924d03a2016-10-19 08:25:46 +0100363}
364
Neale Ranns580bba72018-04-23 05:31:19 -0700365#define FOR_EACH_VNET_LINK(_link) \
366 for (_link = VNET_LINK_IP4; \
367 _link <= VNET_LINK_NSH; \
368 _link++)
369
Neale Ranns6a999d62020-12-14 16:50:33 +0000370#define FOR_EACH_VNET_IP_LINK(_link) \
371 for (_link = VNET_LINK_IP4; \
372 _link <= VNET_LINK_IP6; \
373 _link++)
374
Neale Ranns924d03a2016-10-19 08:25:46 +0100375/**
Neale Ranns6a999d62020-12-14 16:50:33 +0000376 * @brief Number of link types. Not part of the enum so it does not have to be
377 * included in switch statements
Neale Ranns924d03a2016-10-19 08:25:46 +0100378 */
Florin Corasce1b4c72017-01-26 14:25:34 -0800379#define VNET_LINK_NUM (VNET_LINK_NSH+1)
Neale Ranns6a999d62020-12-14 16:50:33 +0000380#define VNET_N_LINKS VNET_LINK_NUM
Neale Ranns924d03a2016-10-19 08:25:46 +0100381
Neale Rannsb80c5362016-10-08 13:03:40 +0100382/**
383 * @brief Convert a link to to an Ethertype
384 */
385extern vnet_l3_packet_type_t vnet_link_to_l3_proto (vnet_link_t link);
386
387/**
388 * @brief Attributes assignable to a HW interface Class.
389 */
390typedef enum vnet_hw_interface_class_flags_t_
391{
392 /**
393 * @brief a point 2 point interface
394 */
395 VNET_HW_INTERFACE_CLASS_FLAG_P2P = (1 << 0),
Neale Ranns5f8f6172019-04-18 10:23:56 +0000396 /**
397 * @brief a non-broadcast multiple access interface
398 */
399 VNET_HW_INTERFACE_CLASS_FLAG_NBMA = (1 << 1),
Neale Rannsb80c5362016-10-08 13:03:40 +0100400} vnet_hw_interface_class_flags_t;
Damjan Marion1c80e832016-05-11 23:07:18 +0200401
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402/* Layer-2 (e.g. Ethernet) interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400403typedef struct _vnet_hw_interface_class
404{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 /* Index into main vector. */
406 u32 index;
407
408 /* Class name (e.g. "Ethernet"). */
Dave Barachba868bb2016-08-08 09:51:21 -0400409 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410
Neale Rannsb80c5362016-10-08 13:03:40 +0100411 /* Flags */
412 vnet_hw_interface_class_flags_t flags;
413
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000414 /* tx hash type for interfaces of this hw class */
415 vnet_hash_fn_type_t tx_hash_fn_type;
416
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417 /* Function to call when hardware interface is added/deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400418 vnet_interface_function_t *interface_add_del_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419
420 /* Function to bring interface administratively up/down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400421 vnet_interface_function_t *admin_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422
423 /* Function to call when link state changes. */
Dave Barachba868bb2016-08-08 09:51:21 -0400424 vnet_interface_function_t *link_up_down_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425
Neale Ranns3be6b282016-12-20 14:24:01 +0000426 /* Function to call when link MAC changes. */
427 vnet_interface_set_mac_address_function_t *mac_addr_change_function;
428
Matthew Smithe0792fd2019-07-12 11:48:24 -0500429 /* Function to add/delete additional MAC addresses */
430 vnet_interface_add_del_mac_address_function_t *mac_addr_add_del_function;
431
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 /* Format function to display interface name. */
Dave Barachba868bb2016-08-08 09:51:21 -0400433 format_function_t *format_interface_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
435 /* Format function to display interface address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400436 format_function_t *format_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
438 /* Format packet header for this interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400439 format_function_t *format_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440
441 /* Format device verbosely for this class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400442 format_function_t *format_device;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
444 /* Parser for hardware (e.g. ethernet) address. */
Dave Barachba868bb2016-08-08 09:51:21 -0400445 unformat_function_t *unformat_hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446
447 /* Parser for packet header for e.g. rewrite string. */
Dave Barachba868bb2016-08-08 09:51:21 -0400448 unformat_function_t *unformat_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Neale Rannsb80c5362016-10-08 13:03:40 +0100450 /* Builds a rewrite string for the interface to the destination
451 * for the payload/link type. */
452 u8 *(*build_rewrite) (struct vnet_main_t * vnm,
453 u32 sw_if_index,
454 vnet_link_t link_type, const void *dst_hw_address);
455
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700456 /* Update an adjacency added by FIB (as opposed to via the
Neale Rannsb80c5362016-10-08 13:03:40 +0100457 * neighbour resolution protocol). */
458 void (*update_adjacency) (struct vnet_main_t * vnm,
459 u32 sw_if_index, u32 adj_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460
Dave Barachba868bb2016-08-08 09:51:21 -0400461 uword (*is_valid_class_for_interface) (struct vnet_main_t * vnm,
462 u32 hw_if_index,
463 u32 hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
465 /* Called when hw interface class is changed and old hardware instance
466 may want to be deleted. */
Dave Barachba868bb2016-08-08 09:51:21 -0400467 void (*hw_class_change) (struct vnet_main_t * vnm, u32 hw_if_index,
468 u32 old_class_index, u32 new_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
470 /* List of hw interface classes, built by constructors */
Dave Barachba868bb2016-08-08 09:51:21 -0400471 struct _vnet_hw_interface_class *next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472
473} vnet_hw_interface_class_t;
474
Neale Rannsb80c5362016-10-08 13:03:40 +0100475/**
Dave Barach11fb09e2020-08-06 12:10:09 -0400476 * @brief Return a complete, zero-length (aka placeholder) rewrite
Neale Rannsb80c5362016-10-08 13:03:40 +0100477 */
478extern u8 *default_build_rewrite (struct vnet_main_t *vnm,
479 u32 sw_if_index,
480 vnet_link_t link_type,
481 const void *dst_hw_address);
482
483/**
484 * @brief Default adjacency update function
485 */
486extern void default_update_adjacency (struct vnet_main_t *vnm,
487 u32 sw_if_index, u32 adj_index);
488
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489#define VNET_HW_INTERFACE_CLASS(x,...) \
490 __VA_ARGS__ vnet_hw_interface_class_t x; \
491static void __vnet_add_hw_interface_class_registration_##x (void) \
492 __attribute__((__constructor__)) ; \
493static void __vnet_add_hw_interface_class_registration_##x (void) \
494{ \
495 vnet_main_t * vnm = vnet_get_main(); \
496 x.next_class_registration = vnm->hw_interface_class_registrations; \
497 vnm->hw_interface_class_registrations = &x; \
498} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200499static void __vnet_rm_hw_interface_class_registration_##x (void) \
500 __attribute__((__destructor__)) ; \
501static void __vnet_rm_hw_interface_class_registration_##x (void) \
502{ \
503 vnet_main_t * vnm = vnet_get_main(); \
504 VLIB_REMOVE_FROM_LINKED_LIST (vnm->hw_interface_class_registrations,\
505 &x, next_class_registration); \
506} \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507__VA_ARGS__ vnet_hw_interface_class_t x
508
Neale Ranns6e43e062018-10-26 05:17:03 -0700509typedef enum vnet_hw_interface_flags_t_
Dave Barachba868bb2016-08-08 09:51:21 -0400510{
Neale Rannsb3a93812018-10-29 01:55:24 -0700511 VNET_HW_INTERFACE_FLAG_NONE,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 /* Hardware link state is up. */
Neale Ranns6e43e062018-10-26 05:17:03 -0700513 VNET_HW_INTERFACE_FLAG_LINK_UP = (1 << 0),
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 /* Hardware duplex state */
Neale Ranns6e43e062018-10-26 05:17:03 -0700515 VNET_HW_INTERFACE_FLAG_HALF_DUPLEX = (1 << 1),
516 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX = (1 << 2),
517
Neale Ranns5f8f6172019-04-18 10:23:56 +0000518 /* non-broadcast multiple access */
519 VNET_HW_INTERFACE_FLAG_NBMA = (1 << 19),
Neale Ranns6e43e062018-10-26 05:17:03 -0700520} vnet_hw_interface_flags_t;
521
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100522typedef enum vnet_hw_interface_capabilities_t_
523{
524 VNET_HW_INTERFACE_CAP_NONE,
525
526 /* tx checksum offload */
527 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_IP4_CKSUM = (1 << 0),
528 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM = (1 << 1),
529 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM = (1 << 2),
530 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_IP4_OUTER_CKSUM = (1 << 3),
531 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_OUTER_CKSUM = (1 << 4),
532
533 /* rx checksum offload */
534 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_IP4_CKSUM = (1 << 5),
535 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_UDP_CKSUM = (1 << 6),
536 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_TCP_CKSUM = (1 << 7),
537 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_IP4_OUTER_CKSUM = (1 << 8),
538 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_UDP_OUTER_CKSUM = (1 << 9),
539
540 /* gso */
541 VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_GSO = (1 << 10),
542 VNET_HW_INTERFACE_CAP_SUPPORTS_UDP_GSO = (1 << 11),
543 VNET_HW_INTERFACE_CAP_SUPPORTS_VXLAN_TNL_GSO = (1 << 12),
544 VNET_HW_INTERFACE_CAP_SUPPORTS_IPIP_TNL_GSO = (1 << 13),
545 VNET_HW_INTERFACE_CAP_SUPPORTS_GENEVE_TNL_GSO = (1 << 14),
546 VNET_HW_INTERFACE_CAP_SUPPORTS_GRE_TNL_GSO = (1 << 15),
547 VNET_HW_INTERFACE_CAP_SUPPORTS_UDP_TNL_GSO = (1 << 16),
548 VNET_HW_INTERFACE_CAP_SUPPORTS_IP_TNL_GSO = (1 << 17),
549
550 /* lro */
551 VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_LRO = (1 << 18),
552
553 /* rx mode */
554 VNET_HW_INTERFACE_CAP_SUPPORTS_INT_MODE = (1 << 30),
555 /* hw/driver can switch between l2-promisc and l3-dmac-filter modes */
556 VNET_HW_INTERFACE_CAP_SUPPORTS_MAC_FILTER = (1 << 31),
557} vnet_hw_interface_capabilities_t;
558
559#define VNET_HW_INTERFACE_CAP_SUPPORTS_L4_TX_CKSUM \
560 (VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM | \
561 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM)
562
563#define VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM \
564 (VNET_HW_INTERFACE_CAP_SUPPORTS_TX_IP4_CKSUM | \
565 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM | \
566 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM)
567
Mohsin Kazmi376c2102021-11-26 17:04:07 +0100568#define VNET_HW_INTERFACE_CAP_SUPPORTS_TX_OUTER_CKSUM \
569 (VNET_HW_INTERFACE_CAP_SUPPORTS_TX_IP4_OUTER_CKSUM | \
570 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_OUTER_CKSUM)
571
572#define VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM_MASK \
573 (VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM | \
574 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_OUTER_CKSUM)
575
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100576#define VNET_HW_INTERFACE_CAP_SUPPORTS_L4_RX_CKSUM \
577 (VNET_HW_INTERFACE_CAP_SUPPORTS_RX_TCP_CKSUM | \
578 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_UDP_CKSUM)
579
580#define VNET_HW_INTERFACE_CAP_SUPPORTS_RX_CKSUM \
581 (VNET_HW_INTERFACE_CAP_SUPPORTS_RX_IP4_CKSUM | \
582 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_TCP_CKSUM | \
583 VNET_HW_INTERFACE_CAP_SUPPORTS_RX_UDP_CKSUM)
584
Mohsin Kazmi376c2102021-11-26 17:04:07 +0100585#define VNET_HW_INTERFACE_CAP_SUPPORTS_TNL_GSO_MASK \
586 VNET_HW_INTERFACE_CAP_SUPPORTS_VXLAN_TNL_GSO | \
587 VNET_HW_INTERFACE_CAP_SUPPORTS_IPIP_TNL_GSO
588
Neale Ranns6e43e062018-10-26 05:17:03 -0700589#define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT 1
590#define VNET_HW_INTERFACE_FLAG_SPEED_SHIFT 3
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591#define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK \
592 (VNET_HW_INTERFACE_FLAG_HALF_DUPLEX | \
593 VNET_HW_INTERFACE_FLAG_FULL_DUPLEX)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
Damjan Marion94100532020-11-06 23:25:57 +0100595typedef struct
596{
597 /* hw interface index */
598 u32 hw_if_index;
599
600 /* device instance */
601 u32 dev_instance;
602
603 /* index of thread pollling this queue */
604 u32 thread_index;
605
606 /* file index of queue interrupt line */
607 u32 file_index;
608
609 /* hardware queue identifier */
610 u32 queue_id;
611
612 /* mode */
613 vnet_hw_if_rx_mode mode : 8;
614#define VNET_HW_IF_RXQ_THREAD_ANY ~0
615#define VNET_HW_IF_RXQ_NO_RX_INTERRUPT ~0
616} vnet_hw_if_rx_queue_t;
617
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200618typedef struct
619{
620 u8 shared_queue : 1;
621 /* hw interface index */
622 u32 hw_if_index;
623
624 /* hardware queue identifier */
625 u32 queue_id;
626
627 /* bitmap of threads which use this queue */
628 clib_bitmap_t *threads;
629} vnet_hw_if_tx_queue_t;
630
631typedef enum
632{
633 VNET_HW_IF_TX_FRAME_HINT_NOT_CHAINED = (1 << 0),
634 VNET_HW_IF_TX_FRAME_HINT_NO_GSO = (1 << 1),
635 VNET_HW_IF_TX_FRAME_HINT_NO_CKSUM_OFFLOAD = (1 << 2),
636} vnet_hw_if_tx_frame_hint_t;
637
638typedef struct
639{
640 u8 shared_queue : 1;
641 vnet_hw_if_tx_frame_hint_t hints : 16;
642 u32 queue_id;
643} vnet_hw_if_tx_frame_t;
644
645typedef struct
646{
647 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000648 vnet_hw_if_tx_frame_t *frame;
649 u32 *lookup_table;
650 u32 n_queues;
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200651} vnet_hw_if_output_node_runtime_t;
652
Neale Ranns6e43e062018-10-26 05:17:03 -0700653/* Hardware-interface. This corresponds to a physical wire
654 that packets flow over. */
655typedef struct vnet_hw_interface_t
656{
Dave Barachf5667c32019-09-25 11:27:46 -0400657 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Neale Ranns6e43e062018-10-26 05:17:03 -0700658 /* flags */
659 vnet_hw_interface_flags_t flags;
Dave Barach2c0a4f42017-06-29 09:30:15 -0400660
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100661 /* capabilities flags */
662 vnet_hw_interface_capabilities_t caps;
Damjan Marion5100aa92018-11-08 15:30:16 +0100663
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 /* Hardware address as vector. Zero (e.g. zero-length vector) if no
665 address for this class (e.g. PPP). */
Dave Barachba868bb2016-08-08 09:51:21 -0400666 u8 *hw_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
668 /* Interface is up as far as software is concerned. */
669 /* NAME.{output,tx} nodes for this interface. */
670 u32 output_node_index, tx_node_index;
671
Damjan Marion8932e452021-04-16 11:49:26 +0200672 /* interface-output-arc-end node next index for tx node */
673 u32 if_out_arc_end_node_next_index;
674
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 /* (dev_class, dev_instance) uniquely identifies hw interface. */
676 u32 dev_class_index;
677 u32 dev_instance;
678
679 /* (hw_class, hw_instance) uniquely identifies hw interface. */
680 u32 hw_class_index;
681 u32 hw_instance;
682
683 /* Hardware index for this hardware interface. */
684 u32 hw_if_index;
685
686 /* Software index for this hardware interface. */
687 u32 sw_if_index;
688
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200689 /* per thread output-node runtimes */
690 vnet_hw_if_output_node_runtime_t *output_node_thread_runtimes;
691
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100692 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
693
Damjan Marion8932e452021-04-16 11:49:26 +0200694 /* Interface name. */
695 u8 *name;
696
697 /* link speed in kbps */
698 u32 link_speed;
699
John Loe5453d02018-01-23 19:21:34 -0500700 /* Next index in interface-output node for this interface
701 used by node function vnet_per_buffer_interface_output() */
702 u32 output_node_next_index;
703
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000704 /* called when hw interface is using transmit side packet steering */
705 vnet_hash_fn_t hf;
706
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 /* Maximum transmit rate for this interface in bits/sec. */
708 f64 max_rate_bits_per_sec;
709
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +0200710 /* Smallest packet size supported by this interface. */
711 u32 min_supported_packet_bytes;
712
713 /* Largest packet size supported by this interface. */
714 u32 max_supported_packet_bytes;
715
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 /* Smallest packet size for this interface. */
717 u32 min_packet_bytes;
718
719 /* Largest packet size for this interface. */
720 u32 max_packet_bytes;
721
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 /* Hash table mapping sub interface id to sw_if_index. */
Dave Barachba868bb2016-08-08 09:51:21 -0400723 uword *sub_interface_sw_if_index_by_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724
John Lo4a302ee2020-05-12 22:34:39 -0400725 /* Count of number of L2 and L3 subinterfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 u32 l2_if_count;
John Lo4a302ee2020-05-12 22:34:39 -0400727 u32 l3_if_count;
John Lobcebbb92016-04-05 15:47:43 -0400728
729 /* Bonded interface info -
730 0 - not a bonded interface nor a slave
731 ~0 - slave to a bonded interface
732 others - A bonded interface with a pointer to bitmap for all slaves */
733 uword *bond_info;
734#define VNET_HW_INTERFACE_BOND_INFO_NONE ((uword *) 0)
735#define VNET_HW_INTERFACE_BOND_INFO_SLAVE ((uword *) ~0)
736
Damjan Marioneb743fa2017-03-20 16:34:15 +0100737 /* Input node */
738 u32 input_node_index;
739
Damjan Marioneabd4242020-10-07 20:59:07 +0200740 vnet_hw_if_rx_mode default_rx_mode;
Damjan Marion44036902017-04-28 12:29:15 +0200741
Damjan Marion94100532020-11-06 23:25:57 +0100742 /* rx queues */
743 u32 *rx_queue_indices;
744
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200745 /* tx queues */
746 u32 *tx_queue_indices;
747
Zhiyong Yang6865d3c2019-05-15 04:25:20 -0400748 /* numa node that hardware device connects to */
749 u8 numa_node;
750
Chenmin Sunc4665092020-07-06 08:20:39 +0800751 /* rss queues bitmap */
752 clib_bitmap_t *rss_queues;
753
Dave Barachf5667c32019-09-25 11:27:46 -0400754 /* trace */
755 i32 n_trace;
756
757 u32 trace_classify_table_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758} vnet_hw_interface_t;
759
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100760STATIC_ASSERT_OFFSET_OF (vnet_hw_interface_t, cacheline1,
761 CLIB_CACHE_LINE_BYTES);
762
Damjan Marion94100532020-11-06 23:25:57 +0100763typedef struct
764{
765 u32 dev_instance;
766 u32 queue_id;
767} vnet_hw_if_rxq_poll_vector_t;
768
769typedef struct
770{
Maxime Peim5b223392021-05-06 12:17:25 +0200771 vnet_hw_if_rxq_poll_vector_t *rxq_vector_int;
772 vnet_hw_if_rxq_poll_vector_t *rxq_vector_poll;
Damjan Marion94100532020-11-06 23:25:57 +0100773 void *rxq_interrupts;
774} vnet_hw_if_rx_node_runtime_t;
775
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200776extern vnet_device_class_t vnet_local_interface_device_class;
777
Dave Barachba868bb2016-08-08 09:51:21 -0400778typedef enum
779{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 /* A hw interface. */
781 VNET_SW_INTERFACE_TYPE_HARDWARE,
782
783 /* A sub-interface. */
784 VNET_SW_INTERFACE_TYPE_SUB,
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200785 VNET_SW_INTERFACE_TYPE_P2P,
Neale Ranns17ff3c12018-07-04 10:24:24 -0700786 VNET_SW_INTERFACE_TYPE_PIPE,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787} vnet_sw_interface_type_t;
788
Dave Barachba868bb2016-08-08 09:51:21 -0400789typedef struct
790{
791 /*
792 * Subinterface ID. A number 0-N to uniquely identify
793 * this subinterface under the main (parent?) interface
794 */
795 u32 id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
Dave Barachba868bb2016-08-08 09:51:21 -0400797 /* Classification data. Used to associate packet header with subinterface. */
798 struct
799 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800 u16 outer_vlan_id;
801 u16 inner_vlan_id;
Dave Barachba868bb2016-08-08 09:51:21 -0400802 union
803 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 u16 raw_flags;
Dave Barachba868bb2016-08-08 09:51:21 -0400805 struct
806 {
807 u16 no_tags:1;
808 u16 one_tag:1;
809 u16 two_tags:1;
810 u16 dot1ad:1; /* 0 = dot1q, 1=dot1ad */
811 u16 exact_match:1;
812 u16 default_sub:1;
813 u16 outer_vlan_id_any:1;
814 u16 inner_vlan_id_any:1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815 } flags;
816 };
817 } eth;
818} vnet_sub_interface_t;
819
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200820typedef struct
821{
822 /*
823 * Subinterface ID. A number 0-N to uniquely identify
824 * this subinterface under the main interface
825 */
826 u32 id;
827 u32 pool_index;
828 u8 client_mac[6];
829} vnet_p2p_sub_interface_t;
830
Eyal Baric5b13602016-11-24 19:42:43 +0200831typedef enum
832{
Neale Ranns87dad112018-04-09 01:53:01 -0700833 /* THe BVI interface */
834 VNET_FLOOD_CLASS_BVI,
Eyal Baric5b13602016-11-24 19:42:43 +0200835 /* Always flood */
836 VNET_FLOOD_CLASS_NORMAL,
837 VNET_FLOOD_CLASS_TUNNEL_MASTER,
838 /* Does not flood when tunnel master is in the same L2 BD */
Neale Ranns87dad112018-04-09 01:53:01 -0700839 VNET_FLOOD_CLASS_TUNNEL_NORMAL,
840 /* Never flood to this type */
841 VNET_FLOOD_CLASS_NO_FLOOD,
Eyal Baric5b13602016-11-24 19:42:43 +0200842} vnet_flood_class_t;
843
Ole Troand7231612018-06-07 10:17:57 +0200844/* Per protocol MTU */
845typedef enum
846{
847 VNET_MTU_L3, /* Default payload MTU (without L2 headers) */
848 VNET_MTU_IP4, /* Per-protocol MTUs overriding default */
849 VNET_MTU_IP6,
850 VNET_MTU_MPLS,
851 VNET_N_MTU
852} vnet_mtu_t;
853
854extern vnet_mtu_t vnet_link_to_mtu (vnet_link_t link);
855
Neale Ranns1855b8e2018-07-11 10:31:26 -0700856typedef enum vnet_sw_interface_flags_t_
857{
Neale Rannsb3a93812018-10-29 01:55:24 -0700858 VNET_SW_INTERFACE_FLAG_NONE = 0,
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700859 /* Interface is "up" meaning administratively up.
Neale Ranns1855b8e2018-07-11 10:31:26 -0700860 Up in the sense of link state being up is maintained by hardware interface. */
861 VNET_SW_INTERFACE_FLAG_ADMIN_UP = (1 << 0),
862
863 /* Interface is disabled for forwarding: punt all traffic to slow-path. */
864 VNET_SW_INTERFACE_FLAG_PUNT = (1 << 1),
865
Neale Ranns57e53bb2019-05-29 13:58:43 +0000866 __VNET_SW_INTERFACE_FLAG_UNSUED = (1 << 2),
Neale Ranns1855b8e2018-07-11 10:31:26 -0700867
868 VNET_SW_INTERFACE_FLAG_UNNUMBERED = (1 << 3),
869
Steven Luong5ad541e2019-08-27 07:43:27 -0700870 __VNET_SW_INTERFACE_FLAG_UNUSED2 = (1 << 4),
Neale Ranns1855b8e2018-07-11 10:31:26 -0700871
872 /* Interface does not appear in CLI/API */
873 VNET_SW_INTERFACE_FLAG_HIDDEN = (1 << 5),
874
875 /* Interface in ERROR state */
876 VNET_SW_INTERFACE_FLAG_ERROR = (1 << 6),
877
878 /* Interface has IP configured directed broadcast */
879 VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST = (1 << 7),
880
881} __attribute__ ((packed)) vnet_sw_interface_flags_t;
882
Ed Warnickecb9cada2015-12-08 15:45:58 -0700883/* Software-interface. This corresponds to a Ethernet VLAN, ATM vc, a
884 tunnel, etc. Configuration (e.g. IP address) gets attached to
885 software interface. */
Dave Barachba868bb2016-08-08 09:51:21 -0400886typedef struct
887{
888 vnet_sw_interface_type_t type:16;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889
Neale Ranns1855b8e2018-07-11 10:31:26 -0700890 vnet_sw_interface_flags_t flags;
Damjan Marionabce5092017-05-10 20:09:31 +0200891
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 /* Index for this interface. */
893 u32 sw_if_index;
894
895 /* Software interface index of super-interface;
896 equal to sw_if_index if this interface is not a
897 sub-interface. */
898 u32 sup_sw_if_index;
899
900 /* this swif is unnumbered, use addresses on unnumbered_sw_if_index... */
901 u32 unnumbered_sw_if_index;
902
Damjan Mariona8ab5682018-05-10 20:26:36 +0200903 /* VNET_SW_INTERFACE_TYPE_HARDWARE. */
904 u32 hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905
Ole Troand7231612018-06-07 10:17:57 +0200906 /* MTU for network layer (not including L2 headers) */
907 u32 mtu[VNET_N_MTU];
908
Damjan Mariona8ab5682018-05-10 20:26:36 +0200909 /* VNET_SW_INTERFACE_TYPE_SUB. */
910 vnet_sub_interface_t sub;
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200911
Damjan Mariona8ab5682018-05-10 20:26:36 +0200912 /* VNET_SW_INTERFACE_TYPE_P2P. */
913 vnet_p2p_sub_interface_t p2p;
Eyal Baric5b13602016-11-24 19:42:43 +0200914
915 vnet_flood_class_t flood_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916} vnet_sw_interface_t;
917
Dave Barachba868bb2016-08-08 09:51:21 -0400918typedef enum
919{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920 /* Simple counters. */
921 VNET_INTERFACE_COUNTER_DROP = 0,
922 VNET_INTERFACE_COUNTER_PUNT = 1,
923 VNET_INTERFACE_COUNTER_IP4 = 2,
924 VNET_INTERFACE_COUNTER_IP6 = 3,
925 VNET_INTERFACE_COUNTER_RX_NO_BUF = 4,
926 VNET_INTERFACE_COUNTER_RX_MISS = 5,
927 VNET_INTERFACE_COUNTER_RX_ERROR = 6,
928 VNET_INTERFACE_COUNTER_TX_ERROR = 7,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100929 VNET_INTERFACE_COUNTER_MPLS = 8,
930 VNET_N_SIMPLE_INTERFACE_COUNTER = 9,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 /* Combined counters. */
932 VNET_INTERFACE_COUNTER_RX = 0,
Neale Ranns871dc422018-03-29 01:28:09 -0700933 VNET_INTERFACE_COUNTER_RX_UNICAST = 1,
934 VNET_INTERFACE_COUNTER_RX_MULTICAST = 2,
935 VNET_INTERFACE_COUNTER_RX_BROADCAST = 3,
936 VNET_INTERFACE_COUNTER_TX = 4,
937 VNET_INTERFACE_COUNTER_TX_UNICAST = 5,
938 VNET_INTERFACE_COUNTER_TX_MULTICAST = 6,
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700939 VNET_INTERFACE_COUNTER_TX_BROADCAST = 7,
940 VNET_N_COMBINED_INTERFACE_COUNTER = 8,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941} vnet_interface_counter_type_t;
942
Neale Ranns871dc422018-03-29 01:28:09 -0700943#define foreach_rx_combined_interface_counter(_x) \
944 for (_x = VNET_INTERFACE_COUNTER_RX; \
945 _x <= VNET_INTERFACE_COUNTER_RX_BROADCAST; \
946 _x++)
947
948#define foreach_tx_combined_interface_counter(_x) \
949 for (_x = VNET_INTERFACE_COUNTER_TX; \
950 _x <= VNET_INTERFACE_COUNTER_TX_BROADCAST; \
951 _x++)
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700952
Ole Troan1ec0ea82018-06-14 09:28:27 +0200953#define foreach_simple_interface_counter_name \
954 _(DROP, drops, if) \
955 _(PUNT, punt, if) \
956 _(IP4, ip4, if) \
957 _(IP6, ip6, if) \
958 _(RX_NO_BUF, rx-no-buf, if) \
959 _(RX_MISS, rx-miss, if) \
960 _(RX_ERROR, rx-error, if) \
Paul Vinciguerra8b5d0b82019-01-21 08:48:21 -0800961 _(TX_ERROR, tx-error, if) \
962 _(MPLS, mpls, if)
Ole Troan1ec0ea82018-06-14 09:28:27 +0200963
964#define foreach_combined_interface_counter_name \
965 _(RX, rx, if) \
966 _(RX_UNICAST, rx-unicast, if) \
967 _(RX_MULTICAST, rx-multicast, if) \
968 _(RX_BROADCAST, rx-broadcast, if) \
969 _(TX, tx, if) \
Ole Troan712dde92019-04-11 09:08:39 +0200970 _(TX_UNICAST, tx-unicast, if) \
Ole Troan1ec0ea82018-06-14 09:28:27 +0200971 _(TX_MULTICAST, tx-multicast, if) \
972 _(TX_BROADCAST, tx-broadcast, if)
973
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700974typedef enum
975{
976 COLLECT_SIMPLE_STATS = 0,
977 COLLECT_DETAILED_STATS = 1,
978} vnet_interface_stats_collection_mode_e;
979
980extern int collect_detailed_interface_stats_flag;
981
982static inline int
Neale Rannsf704f382018-03-19 12:24:07 -0400983collect_detailed_interface_stats (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700984{
985 return collect_detailed_interface_stats_flag;
986}
987
Neale Rannsf704f382018-03-19 12:24:07 -0400988void collect_detailed_interface_stats_flag_set (void);
989void collect_detailed_interface_stats_flag_clear (void);
Neale Ranns6f4a6be2018-03-16 16:26:21 -0700990
991
Dave Barachba868bb2016-08-08 09:51:21 -0400992typedef struct
993{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700994 u32 output_node_index;
995 u32 tx_node_index;
996} vnet_hw_interface_nodes_t;
997
Dave Barachba868bb2016-08-08 09:51:21 -0400998typedef struct
999{
Vijayabhaskar Katamreddye3bbf5b2019-06-28 12:59:23 -07001000 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001001 u32 *split_buffers;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001002} vnet_interface_per_thread_data_t;
1003
Florin Coras3ffe6ca2019-06-26 16:27:13 -07001004typedef u8 *(*vnet_buffer_opquae_formatter_t) (const vlib_buffer_t * b,
1005 u8 * s);
1006
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001007typedef struct
1008{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 /* Hardware interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -04001010 vnet_hw_interface_t *hw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011
Damjan Marion94100532020-11-06 23:25:57 +01001012 /* Hardware interface RX queues */
1013 vnet_hw_if_rx_queue_t *hw_if_rx_queues;
1014 uword *rxq_index_by_hw_if_index_and_queue_id;
1015
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001016 /* Hardware interface TX queues */
1017 vnet_hw_if_tx_queue_t *hw_if_tx_queues;
1018 uword *txq_index_by_hw_if_index_and_queue_id;
1019
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020 /* Hash table mapping HW interface name to index. */
Dave Barachba868bb2016-08-08 09:51:21 -04001021 uword *hw_interface_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022
1023 /* Vectors if hardware interface classes and device classes. */
Dave Barachba868bb2016-08-08 09:51:21 -04001024 vnet_hw_interface_class_t *hw_interface_classes;
1025 vnet_device_class_t *device_classes;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026
1027 /* Hash table mapping name to hw interface/device class. */
Dave Barachba868bb2016-08-08 09:51:21 -04001028 uword *hw_interface_class_by_name;
1029 uword *device_class_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030
1031 /* Software interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -04001032 vnet_sw_interface_t *sw_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033
1034 /* Hash table mapping sub intfc sw_if_index by sup sw_if_index and sub id */
Dave Barachba868bb2016-08-08 09:51:21 -04001035 uword *sw_if_index_by_sup_and_sub;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036
1037 /* Software interface counters both simple and combined
1038 packet and byte counters. */
jaszha035cdde5c2019-07-11 20:47:24 +00001039 clib_spinlock_t sw_if_counter_lock;
Dave Barachba868bb2016-08-08 09:51:21 -04001040 vlib_simple_counter_main_t *sw_if_counters;
1041 vlib_combined_counter_main_t *combined_sw_if_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001042
Dave Barachba868bb2016-08-08 09:51:21 -04001043 vnet_hw_interface_nodes_t *deleted_hw_interface_nodes;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001044
Dave Barach33909772019-09-23 10:27:27 -04001045 /*
1046 * pcap drop tracing
1047 * Only the drop filter hash lives here. See ../src/vlib/main.h for
1048 * the rest of the variables.
1049 */
Dave Barachba868bb2016-08-08 09:51:21 -04001050 uword *pcap_drop_filter_hash;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051
Florin Coras3ffe6ca2019-06-26 16:27:13 -07001052 /* Buffer metadata format helper functions */
1053 vnet_buffer_opquae_formatter_t *buffer_opaque_format_helpers;
1054 vnet_buffer_opquae_formatter_t *buffer_opaque2_format_helpers;
1055
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001056 /* per-thread data */
1057 vnet_interface_per_thread_data_t *per_thread_data;
1058
Damjan Marion152e21d2016-11-29 14:55:43 +01001059 /* feature_arc_index */
1060 u8 output_feature_arc_index;
Damjan Marion8932e452021-04-16 11:49:26 +02001061
1062 /* fast lookup tables */
1063 u32 *hw_if_index_by_sw_if_index;
1064 u16 *if_out_arc_end_next_index_by_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065} vnet_interface_main_t;
1066
Dave Barachba868bb2016-08-08 09:51:21 -04001067static inline void
1068vnet_interface_counter_lock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069{
1070 if (im->sw_if_counter_lock)
jaszha035cdde5c2019-07-11 20:47:24 +00001071 clib_spinlock_lock (&im->sw_if_counter_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001072}
Dave Barachba868bb2016-08-08 09:51:21 -04001073
1074static inline void
1075vnet_interface_counter_unlock (vnet_interface_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076{
1077 if (im->sw_if_counter_lock)
jaszha035cdde5c2019-07-11 20:47:24 +00001078 clib_spinlock_unlock (&im->sw_if_counter_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079}
1080
1081void vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add);
1082
1083int vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance);
1084
Florin Coras3ffe6ca2019-06-26 16:27:13 -07001085void vnet_register_format_buffer_opaque_helper
1086 (vnet_buffer_opquae_formatter_t fn);
1087
1088void vnet_register_format_buffer_opaque2_helper
1089 (vnet_buffer_opquae_formatter_t fn);
1090
Dave Barachb97641c2019-09-09 16:38:17 -04001091typedef struct
1092{
1093 u8 *filename;
1094 int enable;
1095 int status;
1096 u32 packets_to_capture;
Dave Barach33909772019-09-23 10:27:27 -04001097 u32 max_bytes_per_pkt;
1098 u8 rx_enable;
1099 u8 tx_enable;
1100 u8 drop_enable;
Dave Barach586462f2020-08-05 16:12:35 -04001101 u8 preallocate_data;
1102 u8 free_data;
Dave Barachb97641c2019-09-09 16:38:17 -04001103 u32 sw_if_index;
Dave Barach9137e542019-09-13 17:47:50 -04001104 int filter;
BenoƮt Ganne5cfe4522021-03-03 17:37:25 +01001105 vlib_error_t drop_err;
Dave Barachb97641c2019-09-09 16:38:17 -04001106} vnet_pcap_dispatch_trace_args_t;
1107
1108int vnet_pcap_dispatch_trace_configure (vnet_pcap_dispatch_trace_args_t *);
1109
Damjan Marionf91098e2021-03-09 16:28:15 +01001110extern vlib_node_registration_t vnet_interface_output_node;
Damjan Marion8932e452021-04-16 11:49:26 +02001111extern vlib_node_registration_t vnet_interface_output_arc_end_node;
Damjan Marionf91098e2021-03-09 16:28:15 +01001112
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113#endif /* included_vnet_interface_h */
Dave Barachba868bb2016-08-08 09:51:21 -04001114
1115/*
1116 * fd.io coding-style-patch-verification: ON
1117 *
1118 * Local Variables:
1119 * eval: (c-set-style "gnu")
1120 * End:
1121 */