blob: 17c677f07b6fcaa1d70a5594639538ca8ddbd258 [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_funcs.h: VNET interfaces/sub-interfaces exported functions
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_funcs_h
41#define included_vnet_interface_funcs_h
42
43always_inline vnet_hw_interface_t *
44vnet_get_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
Dave Barachba868bb2016-08-08 09:51:21 -040045{
46 return pool_elt_at_index (vnm->interface_main.hw_interfaces, hw_if_index);
47}
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
49always_inline vnet_sw_interface_t *
50vnet_get_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
Dave Barachba868bb2016-08-08 09:51:21 -040051{
52 return pool_elt_at_index (vnm->interface_main.sw_interfaces, sw_if_index);
53}
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
55always_inline vnet_sw_interface_t *
56vnet_get_hw_sw_interface (vnet_main_t * vnm, u32 hw_if_index)
57{
Dave Barachba868bb2016-08-08 09:51:21 -040058 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
59 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, hw->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070060 ASSERT (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
61 return sw;
62}
63
64always_inline vnet_sw_interface_t *
65vnet_get_sup_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
66{
Dave Barachba868bb2016-08-08 09:51:21 -040067 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 if (sw->type == VNET_SW_INTERFACE_TYPE_SUB)
69 sw = vnet_get_sw_interface (vnm, sw->sup_sw_if_index);
70 return sw;
71}
72
73always_inline vnet_hw_interface_t *
74vnet_get_sup_hw_interface (vnet_main_t * vnm, u32 sw_if_index)
75{
Dave Barachba868bb2016-08-08 09:51:21 -040076 vnet_sw_interface_t *sw = vnet_get_sup_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077 ASSERT (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
78 return vnet_get_hw_interface (vnm, sw->hw_if_index);
79}
80
81always_inline vnet_hw_interface_class_t *
82vnet_get_hw_interface_class (vnet_main_t * vnm, u32 hw_class_index)
Dave Barachba868bb2016-08-08 09:51:21 -040083{
84 return vec_elt_at_index (vnm->interface_main.hw_interface_classes,
85 hw_class_index);
86}
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
88always_inline vnet_device_class_t *
89vnet_get_device_class (vnet_main_t * vnm, u32 dev_class_index)
Dave Barachba868bb2016-08-08 09:51:21 -040090{
91 return vec_elt_at_index (vnm->interface_main.device_classes,
92 dev_class_index);
93}
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
Neale Ranns8b37b872016-11-21 12:25:22 +000095/**
96 * Call back walk type for walking SW indices on a HW interface
97 */
98typedef void (*vnet_hw_sw_interface_walk_t) (vnet_main_t * vnm,
99 u32 sw_if_index, void *ctx);
100
101/**
102 * @brief
103 * Walk the SW interfaces on a HW interface - this is the super
104 * interface and any sub-interfaces.
105 */
106void vnet_hw_interface_walk_sw (vnet_main_t * vnm,
107 u32 hw_if_index,
108 vnet_hw_sw_interface_walk_t fn, void *ctx);
109
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110/* Register a hardware interface instance. */
111u32 vnet_register_interface (vnet_main_t * vnm,
112 u32 dev_class_index,
113 u32 dev_instance,
Dave Barachba868bb2016-08-08 09:51:21 -0400114 u32 hw_class_index, u32 hw_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115
116/* Creates a software interface given template. */
Dave Barachba868bb2016-08-08 09:51:21 -0400117clib_error_t *vnet_create_sw_interface (vnet_main_t * vnm,
118 vnet_sw_interface_t * template,
119 u32 * sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
121void vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index);
122void vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100123int vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
125always_inline uword
126vnet_sw_interface_get_flags (vnet_main_t * vnm, u32 sw_if_index)
127{
Dave Barachba868bb2016-08-08 09:51:21 -0400128 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 return sw->flags;
130}
131
132always_inline uword
133vnet_sw_interface_is_admin_up (vnet_main_t * vnm, u32 sw_if_index)
Dave Barachba868bb2016-08-08 09:51:21 -0400134{
135 return (vnet_sw_interface_get_flags (vnm, sw_if_index) &
136 VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
137}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139always_inline uword
140vnet_hw_interface_get_flags (vnet_main_t * vnm, u32 hw_if_index)
141{
Dave Barachba868bb2016-08-08 09:51:21 -0400142 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 return hw->flags;
144}
145
146always_inline uword
Neale Rannsb80c5362016-10-08 13:03:40 +0100147vnet_hw_interface_get_mtu (vnet_main_t * vnm, u32 hw_if_index,
148 vlib_rx_or_tx_t dir)
149{
150 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
151 return hw->max_l3_packet_bytes[dir];
152}
153
154always_inline uword
155vnet_sw_interface_get_mtu (vnet_main_t * vnm, u32 sw_if_index,
156 vlib_rx_or_tx_t dir)
157{
158 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
159 return (hw->max_l3_packet_bytes[dir]);
160}
161
162always_inline uword
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163vnet_hw_interface_is_link_up (vnet_main_t * vnm, u32 hw_if_index)
Dave Barachba868bb2016-08-08 09:51:21 -0400164{
165 return (vnet_hw_interface_get_flags (vnm, hw_if_index) &
166 VNET_HW_INTERFACE_FLAG_LINK_UP) != 0;
167}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
169always_inline vlib_frame_t *
170vnet_get_frame_to_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
171{
Dave Barachba868bb2016-08-08 09:51:21 -0400172 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173 return vlib_get_frame_to_node (vnm->vlib_main, hw->output_node_index);
174}
175
176always_inline void
Dave Barachba868bb2016-08-08 09:51:21 -0400177vnet_put_frame_to_sw_interface (vnet_main_t * vnm, u32 sw_if_index,
178 vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179{
Dave Barachba868bb2016-08-08 09:51:21 -0400180 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 return vlib_put_frame_to_node (vnm->vlib_main, hw->output_node_index, f);
182}
183
184/* Change interface flags (e.g. up, down, enable, disable). */
Dave Barachba868bb2016-08-08 09:51:21 -0400185clib_error_t *vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index,
186 u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
188/* Change interface flags (e.g. up, down, enable, disable). */
Dave Barachba868bb2016-08-08 09:51:21 -0400189clib_error_t *vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index,
190 u32 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
192/* Change interface class. */
Dave Barachba868bb2016-08-08 09:51:21 -0400193clib_error_t *vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
194 u32 new_hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196/* Redirect rx pkts to node */
197int vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400198 u32 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Dave Barachba868bb2016-08-08 09:51:21 -0400200void vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
201 u32 hw_class_index, u32 hw_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Sean Hope608d1ed2016-03-09 00:35:21 -0500203/* Rename interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400204clib_error_t *vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index,
205 char *new_name);
Sean Hope608d1ed2016-03-09 00:35:21 -0500206
Pavel Kotucekc631f2d2016-09-26 10:40:02 +0200207/* Change interface mac address*/
208clib_error_t *vnet_hw_interface_change_mac_address (vnet_main_t * vnm,
209 u32 hw_if_index,
210 u64 mac_address);
211
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212/* Formats sw/hw interface. */
213format_function_t format_vnet_hw_interface;
214format_function_t format_vnet_sw_interface;
215format_function_t format_vnet_sw_interface_name;
Sean Hope679ea792016-02-22 15:12:01 -0500216format_function_t format_vnet_sw_interface_name_override;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217format_function_t format_vnet_sw_if_index_name;
218format_function_t format_vnet_sw_interface_flags;
219
220/* Parses sw/hw interface name -> index. */
221unformat_function_t unformat_vnet_sw_interface;
222unformat_function_t unformat_vnet_hw_interface;
223
224/* Parses interface flags (up, down, enable, disable, etc.) */
225unformat_function_t unformat_vnet_hw_interface_flags;
226unformat_function_t unformat_vnet_sw_interface_flags;
227
228/* Node runtime for interface output function. */
Dave Barachba868bb2016-08-08 09:51:21 -0400229typedef struct
230{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 u32 hw_if_index;
232 u32 sw_if_index;
233 u32 dev_instance;
234 u32 is_deleted;
235} vnet_interface_output_runtime_t;
236
237/* Interface output functions. */
Dave Barachba868bb2016-08-08 09:51:21 -0400238void *vnet_interface_output_node_multiarch_select (void);
239void *vnet_interface_output_node_no_flatten_multiarch_select (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
Dave Barachba868bb2016-08-08 09:51:21 -0400241word vnet_sw_interface_compare (vnet_main_t * vnm, uword sw_if_index0,
242 uword sw_if_index1);
243word vnet_hw_interface_compare (vnet_main_t * vnm, uword hw_if_index0,
244 uword hw_if_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
Dave Barachba868bb2016-08-08 09:51:21 -0400246typedef enum
247{
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100248 VNET_INTERFACE_OUTPUT_NEXT_DROP,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 VNET_INTERFACE_OUTPUT_NEXT_TX,
250} vnet_interface_output_next_t;
251
Dave Barachba868bb2016-08-08 09:51:21 -0400252typedef enum
253{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 VNET_INTERFACE_TX_NEXT_DROP,
255 VNET_INTERFACE_TX_N_NEXT,
256} vnet_interface_tx_next_t;
257
John Lo405e41b2016-04-23 15:14:12 -0400258#define VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT VNET_INTERFACE_TX_N_NEXT
259
Dave Barachba868bb2016-08-08 09:51:21 -0400260typedef enum
261{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DOWN,
263 VNET_INTERFACE_OUTPUT_ERROR_INTERFACE_DELETED,
264} vnet_interface_output_error_t;
265
266/* Format for interface output traces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400267u8 *format_vnet_interface_output_trace (u8 * s, va_list * va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
Dave Barachba868bb2016-08-08 09:51:21 -0400269serialize_function_t serialize_vnet_interface_state,
270 unserialize_vnet_interface_state;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
272#endif /* included_vnet_interface_funcs_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400273
274/*
275 * fd.io coding-style-patch-verification: ON
276 *
277 * Local Variables:
278 * eval: (c-set-style "gnu")
279 * End:
280 */