blob: a12da37796aa9233a855f96fb6ea300e250eefbe [file] [log] [blame]
Pavel Kotucekbbe33622016-12-20 13:19:48 +01001/*
2 * Copyright (c) 2015-2016 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
Jakub Grajciar3b2db902019-08-26 11:25:52 +020016option version = "2.0.0";
17
18import "vnet/interface_types.api";
19import "vnet/ethernet/ethernet_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040020
Pavel Kotucekbbe33622016-12-20 13:19:48 +010021/** \brief Create host-interface
22 @param client_index - opaque cookie to identify the sender
23 @param context - sender context, to match reply w/ request
Pavel Kotucekbbe33622016-12-20 13:19:48 +010024 @param hw_addr - interface MAC
25 @param use_random_hw_addr - use random generated MAC
Jakub Grajciar3b2db902019-08-26 11:25:52 +020026 @param host_if_name - interface name
Pavel Kotucekbbe33622016-12-20 13:19:48 +010027*/
28define af_packet_create
29{
30 u32 client_index;
31 u32 context;
32
Jakub Grajciar3b2db902019-08-26 11:25:52 +020033 vl_api_mac_address_t hw_addr;
34 bool use_random_hw_addr;
35 string host_if_name[64];
Pavel Kotucekbbe33622016-12-20 13:19:48 +010036};
37
38/** \brief Create host-interface response
39 @param context - sender context, to match reply w/ request
40 @param retval - return value for request
41*/
42define af_packet_create_reply
43{
44 u32 context;
45 i32 retval;
Jakub Grajciar3b2db902019-08-26 11:25:52 +020046 vl_api_interface_index_t sw_if_index;
Pavel Kotucekbbe33622016-12-20 13:19:48 +010047};
48
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020049/** \brief Create host-interface
50 @param client_index - opaque cookie to identify the sender
51 @param context - sender context, to match reply w/ request
52 @param hw_addr - interface MAC
53 @param use_random_hw_addr - use random generated MAC
54 @param host_if_name - interface name
55 @param rx_frame_size - frame size for RX
56 @param tx_frame_size - frame size for TX
57 @param rx_frames_per_block - frames per block for RX
58 @param tx_frames_per_block - frames per block for TX
59 @param flags - flags for the af_packet interface creation
60 @param num_rx_queues - number of rx queues
61*/
62define af_packet_create_v2
63{
64 u32 client_index;
65 u32 context;
66
67 vl_api_mac_address_t hw_addr;
68 bool use_random_hw_addr;
69 string host_if_name[64];
70 u32 rx_frame_size;
71 u32 tx_frame_size;
72 u32 rx_frames_per_block;
73 u32 tx_frames_per_block;
74 u32 flags;
75 u16 num_rx_queues [default=1];
76};
77
78/** \brief Create host-interface response
79 @param context - sender context, to match reply w/ request
80 @param retval - return value for request
81*/
82define af_packet_create_v2_reply
83{
84 u32 context;
85 i32 retval;
86 vl_api_interface_index_t sw_if_index;
87};
88
Mohsin Kazmi0bfc2222022-04-11 16:14:45 +000089enum af_packet_mode {
90 AF_PACKET_API_MODE_ETHERNET = 1, /* mode ethernet */
91 AF_PACKET_API_MODE_IP = 2, /* mode ip */
92};
93
94enum af_packet_flags {
95 AF_PACKET_API_FLAG_QDISC_BYPASS = 1, /* enable the qdisc bypass */
96 AF_PACKET_API_FLAG_CKSUM_GSO = 2, /* enable checksum/gso */
Mohsin Kazmi8b90d892022-09-08 17:21:20 +000097 AF_PACKET_API_FLAG_VERSION_2 = 8 [backwards_compatible], /* af packet v2, default is v3 */
Mohsin Kazmi0bfc2222022-04-11 16:14:45 +000098};
99
100/** \brief Create host-interface
101 @param client_index - opaque cookie to identify the sender
102 @param context - sender context, to match reply w/ request
103 @param mode - 1 - Ethernet, 2 - IP
104 @param hw_addr - interface MAC
105 @param use_random_hw_addr - use random generated MAC
106 @param host_if_name - interface name
107 @param rx_frame_size - frame size for RX
108 @param tx_frame_size - frame size for TX
109 @param rx_frames_per_block - frames per block for RX
110 @param tx_frames_per_block - frames per block for TX
111 @param flags - flags for the af_packet interface creation
112 @param num_rx_queues - number of rx queues
113 @param num_tx_queues - number of tx queues
114*/
115define af_packet_create_v3
116{
117 u32 client_index;
118 u32 context;
119
120 vl_api_af_packet_mode_t mode;
121 vl_api_mac_address_t hw_addr;
122 bool use_random_hw_addr;
123 string host_if_name[64];
124 u32 rx_frame_size;
125 u32 tx_frame_size;
126 u32 rx_frames_per_block;
127 u32 tx_frames_per_block;
128 vl_api_af_packet_flags_t flags;
129 u16 num_rx_queues [default=1];
130 u16 num_tx_queues [default=1];
131};
132
133/** \brief Create host-interface response
134 @param context - sender context, to match reply w/ request
135 @param retval - return value for request
136*/
137define af_packet_create_v3_reply
138{
139 u32 context;
140 i32 retval;
141 vl_api_interface_index_t sw_if_index;
142};
143
Pavel Kotucekbbe33622016-12-20 13:19:48 +0100144/** \brief Delete host-interface
145 @param client_index - opaque cookie to identify the sender
146 @param context - sender context, to match reply w/ request
147 @param host_if_name - interface name
148*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400149autoreply define af_packet_delete
Pavel Kotucekbbe33622016-12-20 13:19:48 +0100150{
151 u32 client_index;
152 u32 context;
153
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200154 string host_if_name[64];
Pavel Kotucekbbe33622016-12-20 13:19:48 +0100155};
156
Paul Vinciguerra97c998c2019-10-29 16:11:09 -0400157/** \brief Set l4 offload checksum calculation
Jakub Grajciar92b02752017-10-20 13:37:28 +0200158 @param client_index - opaque cookie to identify the sender
159 @param context - sender context, to match reply w/ request
160*/
161autoreply define af_packet_set_l4_cksum_offload
162{
163 u32 client_index;
164 u32 context;
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200165
166 vl_api_interface_index_t sw_if_index;
167 bool set;
Jakub Grajciar92b02752017-10-20 13:37:28 +0200168};
169
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200170/** \brief Dump af_packet interfaces request */
171define af_packet_dump
172{
173 u32 client_index;
174 u32 context;
175};
176
177/** \brief Reply for af_packet dump request
178 @param sw_if_index - software index of af_packet interface
179 @param host_if_name - interface name
180*/
181define af_packet_details
182{
183 u32 context;
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200184 vl_api_interface_index_t sw_if_index;
185 string host_if_name[64];
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200186};
187
Pavel Kotucekbbe33622016-12-20 13:19:48 +0100188/*
189 * Local Variables:
190 * eval: (c-set-style "gnu")
191 * End:
192 */