blob: 2dc263046cbdfe289c783069678f64c722832030 [file] [log] [blame]
Damjan Marion83243a02016-02-29 13:09:30 +01001/*
2 *------------------------------------------------------------------
3 * af_packet.c - linux kernel packet interface
4 *
5 * Copyright (c) 2016 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <linux/if_ether.h>
21#include <linux/if_packet.h>
Mohsin Kazmia50a14c2018-04-25 15:58:05 +020022#include <sys/ioctl.h>
23#include <net/if.h>
Ray Kinsellac855b732017-04-21 12:24:43 +010024#include <dirent.h>
Ray Kinsella7bfa1192017-05-15 11:52:43 +010025#include <sys/stat.h>
26#include <sys/types.h>
27#include <fcntl.h>
Damjan Marion83243a02016-02-29 13:09:30 +010028
Damjan Marion01914ce2017-09-14 19:04:50 +020029#include <vppinfra/linux/sysfs.h>
Damjan Marion83243a02016-02-29 13:09:30 +010030#include <vlib/vlib.h>
31#include <vlib/unix/unix.h>
32#include <vnet/ip/ip.h>
Aloys Augustine39376e2021-03-29 22:08:09 +020033#include <vnet/devices/netlink.h>
Damjan Marion83243a02016-02-29 13:09:30 +010034#include <vnet/ethernet/ethernet.h>
Mohammed Hawari85c19432020-12-18 16:29:45 +010035#include <vnet/interface/rx_queue_funcs.h>
Damjan Marion83243a02016-02-29 13:09:30 +010036
37#include <vnet/devices/af_packet/af_packet.h>
38
Dave Wallace71612d62017-10-24 01:32:41 -040039af_packet_main_t af_packet_main;
40
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020041#define AF_PACKET_DEFAULT_TX_FRAMES_PER_BLOCK 1024
42#define AF_PACKET_DEFAULT_TX_FRAME_SIZE (2048 * 5)
Damjan Marion83243a02016-02-29 13:09:30 +010043#define AF_PACKET_TX_BLOCK_NR 1
Damjan Marion83243a02016-02-29 13:09:30 +010044
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020045#define AF_PACKET_DEFAULT_RX_FRAMES_PER_BLOCK 1024
46#define AF_PACKET_DEFAULT_RX_FRAME_SIZE (2048 * 5)
Damjan Marion83243a02016-02-29 13:09:30 +010047#define AF_PACKET_RX_BLOCK_NR 1
Damjan Marion83243a02016-02-29 13:09:30 +010048
Damjan Marion83243a02016-02-29 13:09:30 +010049/*defined in net/if.h but clashes with dpdk headers */
Damjan Marion00a9dca2016-08-17 17:05:46 +020050unsigned int if_nametoindex (const char *ifname);
Damjan Marion83243a02016-02-29 13:09:30 +010051
52typedef struct tpacket_req tpacket_req_t;
53
54static u32
Damjan Marion00a9dca2016-08-17 17:05:46 +020055af_packet_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi,
56 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +010057{
Ray Kinsella7bfa1192017-05-15 11:52:43 +010058 clib_error_t *error;
Ray Kinsella7bfa1192017-05-15 11:52:43 +010059 af_packet_main_t *apm = &af_packet_main;
60 af_packet_if_t *apif =
61 pool_elt_at_index (apm->interfaces, hi->dev_instance);
62
John Lo4a302ee2020-05-12 22:34:39 -040063 if (flags == ETHERNET_INTERFACE_FLAG_MTU)
Ray Kinsella7bfa1192017-05-15 11:52:43 +010064 {
Aloys Augustine39376e2021-03-29 22:08:09 +020065 error =
66 vnet_netlink_set_link_mtu (apif->host_if_index, hi->max_packet_bytes);
Ray Kinsella7bfa1192017-05-15 11:52:43 +010067
68 if (error)
69 {
Aloys Augustine39376e2021-03-29 22:08:09 +020070 vlib_log_err (apm->log_class, "netlink failed to change MTU: %U",
Mohsin Kazmiacba9f72018-05-17 15:42:27 +020071 format_clib_error, error);
72 clib_error_free (error);
Ray Kinsella7bfa1192017-05-15 11:52:43 +010073 return VNET_API_ERROR_SYSCALL_ERROR_1;
74 }
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010075 else
76 apif->host_mtu = hi->max_packet_bytes;
Ray Kinsella7bfa1192017-05-15 11:52:43 +010077 }
78
Damjan Marion83243a02016-02-29 13:09:30 +010079 return 0;
80}
81
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010082static int
83af_packet_read_mtu (af_packet_if_t *apif)
84{
85 af_packet_main_t *apm = &af_packet_main;
86 clib_error_t *error;
Aloys Augustine39376e2021-03-29 22:08:09 +020087 error = vnet_netlink_get_link_mtu (apif->host_if_index, &apif->host_mtu);
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010088 if (error)
89 {
Aloys Augustine39376e2021-03-29 22:08:09 +020090 vlib_log_err (apm->log_class, "netlink failed to get MTU: %U",
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010091 format_clib_error, error);
92 clib_error_free (error);
93 return VNET_API_ERROR_SYSCALL_ERROR_1;
94 }
95 return 0;
96}
97
Damjan Marion00a9dca2016-08-17 17:05:46 +020098static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +020099af_packet_fd_read_ready (clib_file_t * uf)
Damjan Marion83243a02016-02-29 13:09:30 +0100100{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200101 af_packet_main_t *apm = &af_packet_main;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100102 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100103 u32 idx = uf->private_data;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100104 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx);
Damjan Marion83243a02016-02-29 13:09:30 +0100105
Damjan Marion00a9dca2016-08-17 17:05:46 +0200106 apm->pending_input_bitmap =
107 clib_bitmap_set (apm->pending_input_bitmap, idx, 1);
Damjan Marion83243a02016-02-29 13:09:30 +0100108
109 /* Schedule the rx node */
Mohammed Hawari85c19432020-12-18 16:29:45 +0100110 vnet_hw_if_rx_queue_set_int_pending (vnm, apif->queue_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100111 return 0;
112}
113
114static int
Ray Kinsellac855b732017-04-21 12:24:43 +0100115is_bridge (const u8 * host_if_name)
116{
117 u8 *s;
118 DIR *dir = NULL;
119
120 s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0);
121 dir = opendir ((char *) s);
122 vec_free (s);
123
124 if (dir)
125 {
126 closedir (dir);
127 return 0;
128 }
129
130 return -1;
131}
132
133static int
134create_packet_v2_sock (int host_if_index, tpacket_req_t * rx_req,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200135 tpacket_req_t * tx_req, int *fd, u8 ** ring)
Damjan Marion83243a02016-02-29 13:09:30 +0100136{
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200137 af_packet_main_t *apm = &af_packet_main;
jackiechen19857fa41602019-05-07 18:59:13 +0800138 int ret;
Damjan Marion83243a02016-02-29 13:09:30 +0100139 struct sockaddr_ll sll;
Damjan Marion83243a02016-02-29 13:09:30 +0100140 int ver = TPACKET_V2;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200141 socklen_t req_sz = sizeof (struct tpacket_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100142 u32 ring_sz = rx_req->tp_block_size * rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200143 tx_req->tp_block_size * tx_req->tp_block_nr;
Damjan Marion83243a02016-02-29 13:09:30 +0100144
Damjan Marion00a9dca2016-08-17 17:05:46 +0200145 if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100146 {
jackiechen19857fa41602019-05-07 18:59:13 +0800147 vlib_log_debug (apm->log_class,
148 "Failed to create AF_PACKET socket: %s (errno %d)",
149 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100150 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
151 goto error;
152 }
Damjan Marionc5170202017-10-11 14:15:47 +0200153
Chaoyu Jinafb19302018-03-13 07:37:41 -0700154 /* bind before rx ring is cfged so we don't receive packets from other interfaces */
Dave Barachb7b92992018-10-17 10:38:51 -0400155 clib_memset (&sll, 0, sizeof (sll));
Chaoyu Jinafb19302018-03-13 07:37:41 -0700156 sll.sll_family = PF_PACKET;
157 sll.sll_protocol = htons (ETH_P_ALL);
158 sll.sll_ifindex = host_if_index;
jackiechen19857fa41602019-05-07 18:59:13 +0800159 if (bind (*fd, (struct sockaddr *) &sll, sizeof (sll)) < 0)
Chaoyu Jinafb19302018-03-13 07:37:41 -0700160 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200161 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800162 "Failed to bind rx packet socket: %s (errno %d)",
163 strerror (errno), errno);
Chaoyu Jinafb19302018-03-13 07:37:41 -0700164 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
165 goto error;
166 }
167
jackiechen19857fa41602019-05-07 18:59:13 +0800168 if (setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100169 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200170 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800171 "Failed to set rx packet interface version: %s (errno %d)",
172 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100173 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
174 goto error;
175 }
176
Damjan Marionc5170202017-10-11 14:15:47 +0200177 int opt = 1;
jackiechen19857fa41602019-05-07 18:59:13 +0800178 if (setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100179 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200180 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800181 "Failed to set packet tx ring error handling option: %s (errno %d)",
182 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100183 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
184 goto error;
185 }
186
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200187 if (setsockopt (*fd, SOL_PACKET, PACKET_QDISC_BYPASS, &opt, sizeof (opt)) <
188 0)
189 {
190 vlib_log_debug (apm->log_class,
191 "Failed to set qdisc bypass error "
192 "handling option: %s (errno %d)",
193 strerror (errno), errno);
194 }
195
jackiechen19857fa41602019-05-07 18:59:13 +0800196 if (setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100197 {
jackiechen19857fa41602019-05-07 18:59:13 +0800198 vlib_log_debug (apm->log_class,
199 "Failed to set packet rx ring options: %s (errno %d)",
200 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100201 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
202 goto error;
203 }
204
jackiechen19857fa41602019-05-07 18:59:13 +0800205 if (setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_req, req_sz) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100206 {
jackiechen19857fa41602019-05-07 18:59:13 +0800207 vlib_log_debug (apm->log_class,
208 "Failed to set packet tx ring options: %s (errno %d)",
209 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100210 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
211 goto error;
212 }
213
Damjan Marion00a9dca2016-08-17 17:05:46 +0200214 *ring =
215 mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, *fd,
216 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100217 if (*ring == MAP_FAILED)
218 {
jackiechen19857fa41602019-05-07 18:59:13 +0800219 vlib_log_debug (apm->log_class, "mmap failure: %s (errno %d)",
220 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100221 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
222 goto error;
223 }
224
Damjan Marion83243a02016-02-29 13:09:30 +0100225 return 0;
226error:
Dave Barach16ad6ae2016-07-28 17:55:30 -0400227 if (*fd >= 0)
jackiechen19857fa41602019-05-07 18:59:13 +0800228 {
229 close (*fd);
230 *fd = -1;
231 }
Damjan Marion83243a02016-02-29 13:09:30 +0100232 return ret;
233}
234
235int
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200236af_packet_create_if (af_packet_create_if_arg_t *arg)
Damjan Marion83243a02016-02-29 13:09:30 +0100237{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200238 af_packet_main_t *apm = &af_packet_main;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200239 vlib_main_t *vm = vlib_get_main ();
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200240 int ret, fd = -1, fd2 = -1;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200241 struct tpacket_req *rx_req = 0;
242 struct tpacket_req *tx_req = 0;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200243 struct ifreq ifr;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200244 u8 *ring = 0;
245 af_packet_if_t *apif = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100246 u8 hw_addr[6];
Damjan Marion00a9dca2016-08-17 17:05:46 +0200247 clib_error_t *error;
248 vnet_sw_interface_t *sw;
Damjan Marion44036902017-04-28 12:29:15 +0200249 vnet_hw_interface_t *hw;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100250 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion00a9dca2016-08-17 17:05:46 +0200251 vnet_main_t *vnm = vnet_get_main ();
252 uword *p;
Damjan Marion83243a02016-02-29 13:09:30 +0100253 uword if_index;
jackiechen19857fa41602019-05-07 18:59:13 +0800254 u8 *host_if_name_dup = 0;
Ray Kinsellac855b732017-04-21 12:24:43 +0100255 int host_if_index = -1;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200256 u32 rx_frames_per_block, tx_frames_per_block;
257 u32 rx_frame_size, tx_frame_size;
Damjan Marion83243a02016-02-29 13:09:30 +0100258
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200259 p = mhash_get (&apm->if_index_by_host_if_name, arg->host_if_name);
Damjan Marion83243a02016-02-29 13:09:30 +0100260 if (p)
261 {
Mohsin Kazmi43fc6882018-03-22 23:45:23 +0100262 apif = vec_elt_at_index (apm->interfaces, p[0]);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200263 arg->sw_if_index = apif->sw_if_index;
Mohsin Kazmi43fc6882018-03-22 23:45:23 +0100264 return VNET_API_ERROR_IF_ALREADY_EXISTS;
Damjan Marion83243a02016-02-29 13:09:30 +0100265 }
266
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200267 host_if_name_dup = vec_dup (arg->host_if_name);
268
269 rx_frames_per_block = arg->rx_frames_per_block ?
270 arg->rx_frames_per_block :
271 AF_PACKET_DEFAULT_RX_FRAMES_PER_BLOCK;
272 tx_frames_per_block = arg->tx_frames_per_block ?
273 arg->tx_frames_per_block :
274 AF_PACKET_DEFAULT_TX_FRAMES_PER_BLOCK;
275 rx_frame_size =
276 arg->rx_frame_size ? arg->rx_frame_size : AF_PACKET_DEFAULT_RX_FRAME_SIZE;
277 tx_frame_size =
278 arg->tx_frame_size ? arg->tx_frame_size : AF_PACKET_DEFAULT_TX_FRAME_SIZE;
jackiechen19857fa41602019-05-07 18:59:13 +0800279
Damjan Marion00a9dca2016-08-17 17:05:46 +0200280 vec_validate (rx_req, 0);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200281 rx_req->tp_block_size = rx_frame_size * rx_frames_per_block;
282 rx_req->tp_frame_size = rx_frame_size;
Damjan Marion83243a02016-02-29 13:09:30 +0100283 rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200284 rx_req->tp_frame_nr = AF_PACKET_RX_BLOCK_NR * rx_frames_per_block;
Damjan Marion83243a02016-02-29 13:09:30 +0100285
Damjan Marion00a9dca2016-08-17 17:05:46 +0200286 vec_validate (tx_req, 0);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200287 tx_req->tp_block_size = tx_frame_size * tx_frames_per_block;
288 tx_req->tp_frame_size = tx_frame_size;
Damjan Marion83243a02016-02-29 13:09:30 +0100289 tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200290 tx_req->tp_frame_nr = AF_PACKET_TX_BLOCK_NR * tx_frames_per_block;
Damjan Marion83243a02016-02-29 13:09:30 +0100291
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200292 /*
293 * make sure host side of interface is 'UP' before binding AF_PACKET
294 * socket on it.
295 */
296 if ((fd2 = socket (AF_UNIX, SOCK_DGRAM, 0)) < 0)
Ray Kinsellac855b732017-04-21 12:24:43 +0100297 {
jackiechen19857fa41602019-05-07 18:59:13 +0800298 vlib_log_debug (apm->log_class,
299 "Failed to create AF_UNIX socket: %s (errno %d)",
300 strerror (errno), errno);
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200301 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
302 goto error;
303 }
304
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200305 clib_memcpy (ifr.ifr_name, (const char *) arg->host_if_name,
306 vec_len (arg->host_if_name));
jackiechen19857fa41602019-05-07 18:59:13 +0800307 if (ioctl (fd2, SIOCGIFINDEX, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200308 {
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200309 vlib_log_debug (
310 apm->log_class,
311 "Failed to retrieve the interface (%s) index: %s (errno %d)",
312 arg->host_if_name, strerror (errno), errno);
jackiechen19857fa41602019-05-07 18:59:13 +0800313 ret = VNET_API_ERROR_INVALID_INTERFACE;
314 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100315 }
316
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200317 host_if_index = ifr.ifr_ifindex;
jackiechen19857fa41602019-05-07 18:59:13 +0800318 if (ioctl (fd2, SIOCGIFFLAGS, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200319 {
jackiechen19857fa41602019-05-07 18:59:13 +0800320 vlib_log_debug (apm->log_class,
321 "Failed to get the active flag: %s (errno %d)",
322 strerror (errno), errno);
323 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200324 goto error;
325 }
326
327 if (!(ifr.ifr_flags & IFF_UP))
328 {
329 ifr.ifr_flags |= IFF_UP;
jackiechen19857fa41602019-05-07 18:59:13 +0800330 if (ioctl (fd2, SIOCSIFFLAGS, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200331 {
jackiechen19857fa41602019-05-07 18:59:13 +0800332 vlib_log_debug (apm->log_class,
333 "Failed to set the active flag: %s (errno %d)",
334 strerror (errno), errno);
335 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200336 goto error;
337 }
338 }
339
340 if (fd2 > -1)
jackiechen19857fa41602019-05-07 18:59:13 +0800341 {
342 close (fd2);
343 fd2 = -1;
344 }
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200345
Ray Kinsellac855b732017-04-21 12:24:43 +0100346 ret = create_packet_v2_sock (host_if_index, rx_req, tx_req, &fd, &ring);
Damjan Marion83243a02016-02-29 13:09:30 +0100347
348 if (ret != 0)
349 goto error;
350
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200351 ret = is_bridge (arg->host_if_name);
Ray Kinsellac855b732017-04-21 12:24:43 +0100352
353 if (ret == 0) /* is a bridge, ignore state */
354 host_if_index = -1;
355
Damjan Marion83243a02016-02-29 13:09:30 +0100356 /* So far everything looks good, let's create interface */
Damjan Marion048ee2e2016-03-16 22:59:21 +0100357 pool_get (apm->interfaces, apif);
Damjan Marion83243a02016-02-29 13:09:30 +0100358 if_index = apif - apm->interfaces;
359
Ray Kinsellac855b732017-04-21 12:24:43 +0100360 apif->host_if_index = host_if_index;
Damjan Marion83243a02016-02-29 13:09:30 +0100361 apif->fd = fd;
362 apif->rx_ring = ring;
363 apif->tx_ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr;
364 apif->rx_req = rx_req;
365 apif->tx_req = tx_req;
Ivan Kellybfe737a2016-10-07 18:02:43 +0200366 apif->host_if_name = host_if_name_dup;
Dave Barach13f3c452016-03-29 11:56:41 -0400367 apif->per_interface_next_index = ~0;
Peter Leidba76f22016-04-08 08:16:31 -0700368 apif->next_tx_frame = 0;
369 apif->next_rx_frame = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100370
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100371 ret = af_packet_read_mtu (apif);
372 if (ret != 0)
373 goto error;
374
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100375 if (tm->n_vlib_mains > 1)
Damjan Marion1927da22017-03-27 17:08:20 +0200376 clib_spinlock_init (&apif->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100377
Damjan Marion83243a02016-02-29 13:09:30 +0100378 /*use configured or generate random MAC address */
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200379 if (arg->hw_addr)
380 clib_memcpy (hw_addr, arg->hw_addr, 6);
Damjan Marion83243a02016-02-29 13:09:30 +0100381 else
382 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200383 f64 now = vlib_time_now (vm);
Damjan Marion83243a02016-02-29 13:09:30 +0100384 u32 rnd;
385 rnd = (u32) (now * 1e6);
386 rnd = random_u32 (&rnd);
387
Damjan Marion00a9dca2016-08-17 17:05:46 +0200388 clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd));
Damjan Marion83243a02016-02-29 13:09:30 +0100389 hw_addr[0] = 2;
390 hw_addr[1] = 0xfe;
391 }
392
Damjan Marion00a9dca2016-08-17 17:05:46 +0200393 error = ethernet_register_interface (vnm, af_packet_device_class.index,
394 if_index, hw_addr, &apif->hw_if_index,
395 af_packet_eth_flag_change);
Damjan Marion83243a02016-02-29 13:09:30 +0100396
397 if (error)
398 {
Dave Barachb7b92992018-10-17 10:38:51 -0400399 clib_memset (apif, 0, sizeof (*apif));
Damjan Marion00a9dca2016-08-17 17:05:46 +0200400 pool_put (apm->interfaces, apif);
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200401 vlib_log_err (apm->log_class, "Unable to register interface: %U",
402 format_clib_error, error);
403 clib_error_free (error);
Damjan Marion83243a02016-02-29 13:09:30 +0100404 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
405 goto error;
406 }
407
408 sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index);
Damjan Marion44036902017-04-28 12:29:15 +0200409 hw = vnet_get_hw_interface (vnm, apif->hw_if_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100410 apif->sw_if_index = sw->sw_if_index;
Mohammed Hawari85c19432020-12-18 16:29:45 +0100411 vnet_hw_if_set_input_node (vnm, apif->hw_if_index,
412 af_packet_input_node.index);
413 apif->queue_index = vnet_hw_if_register_rx_queue (vnm, apif->hw_if_index, 0,
414 VNET_HW_IF_RXQ_THREAD_ANY);
Damjan Marion44036902017-04-28 12:29:15 +0200415
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100416 hw->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_INT_MODE;
Damjan Marion83243a02016-02-29 13:09:30 +0100417 vnet_hw_interface_set_flags (vnm, apif->hw_if_index,
418 VNET_HW_INTERFACE_FLAG_LINK_UP);
419
Mohammed Hawari85c19432020-12-18 16:29:45 +0100420 vnet_hw_if_set_rx_queue_mode (vnm, apif->queue_index,
421 VNET_HW_IF_RX_MODE_INTERRUPT);
422 vnet_hw_if_update_runtime_data (vnm, apif->hw_if_index);
423 {
424 clib_file_t template = { 0 };
425 template.read_function = af_packet_fd_read_ready;
426 template.file_descriptor = fd;
427 template.private_data = if_index;
428 template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED;
429 template.description =
430 format (0, "%U", format_af_packet_device_name, if_index);
431 apif->clib_file_index = clib_file_add (&file_main, &template);
432 }
433 vnet_hw_if_set_rx_queue_file_index (vnm, apif->queue_index,
434 apif->clib_file_index);
Damjan Marion44036902017-04-28 12:29:15 +0200435
Ivan Kellybfe737a2016-10-07 18:02:43 +0200436 mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index,
437 0);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200438 arg->sw_if_index = apif->sw_if_index;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100439
Damjan Marion83243a02016-02-29 13:09:30 +0100440 return 0;
441
442error:
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200443 if (fd2 > -1)
jackiechen19857fa41602019-05-07 18:59:13 +0800444 {
445 close (fd2);
446 fd2 = -1;
447 }
Ivan Kellybfe737a2016-10-07 18:02:43 +0200448 vec_free (host_if_name_dup);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200449 vec_free (rx_req);
450 vec_free (tx_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100451 return ret;
452}
453
Peter Leidba76f22016-04-08 08:16:31 -0700454int
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200455af_packet_delete_if (u8 *host_if_name)
Peter Leidba76f22016-04-08 08:16:31 -0700456{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200457 vnet_main_t *vnm = vnet_get_main ();
Peter Leidba76f22016-04-08 08:16:31 -0700458 af_packet_main_t *apm = &af_packet_main;
459 af_packet_if_t *apif;
460 uword *p;
461 uword if_index;
462 u32 ring_sz;
463
Damjan Marion00a9dca2016-08-17 17:05:46 +0200464 p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
465 if (p == NULL)
466 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200467 vlib_log_warn (apm->log_class, "Host interface %s does not exist",
468 host_if_name);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200469 return VNET_API_ERROR_SYSCALL_ERROR_1;
470 }
471 apif = pool_elt_at_index (apm->interfaces, p[0]);
Peter Leidba76f22016-04-08 08:16:31 -0700472 if_index = apif - apm->interfaces;
473
474 /* bring down the interface */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200475 vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0);
Peter Leidba76f22016-04-08 08:16:31 -0700476
477 /* clean up */
Damjan Marion56dd5432017-09-08 19:52:02 +0200478 if (apif->clib_file_index != ~0)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200479 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200480 clib_file_del (&file_main, file_main.file_pool + apif->clib_file_index);
481 apif->clib_file_index = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200482 }
Eyal Barif298ecf2016-09-19 18:47:39 +0300483 else
484 close (apif->fd);
485
Peter Leidba76f22016-04-08 08:16:31 -0700486 ring_sz = apif->rx_req->tp_block_size * apif->rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200487 apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr;
488 if (munmap (apif->rx_ring, ring_sz))
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200489 vlib_log_warn (apm->log_class,
490 "Host interface %s could not free rx/tx ring",
491 host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700492 apif->rx_ring = NULL;
493 apif->tx_ring = NULL;
Peter Leidba76f22016-04-08 08:16:31 -0700494 apif->fd = -1;
495
Damjan Marion00a9dca2016-08-17 17:05:46 +0200496 vec_free (apif->rx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700497 apif->rx_req = NULL;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200498 vec_free (apif->tx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700499 apif->tx_req = NULL;
500
Damjan Marion00a9dca2016-08-17 17:05:46 +0200501 vec_free (apif->host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700502 apif->host_if_name = NULL;
Ray Kinsellac855b732017-04-21 12:24:43 +0100503 apif->host_if_index = -1;
Peter Leidba76f22016-04-08 08:16:31 -0700504
Damjan Marion00a9dca2016-08-17 17:05:46 +0200505 mhash_unset (&apm->if_index_by_host_if_name, host_if_name, &if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700506
Damjan Marion00a9dca2016-08-17 17:05:46 +0200507 ethernet_delete_interface (vnm, apif->hw_if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700508
Damjan Marion00a9dca2016-08-17 17:05:46 +0200509 pool_put (apm->interfaces, apif);
Peter Leidba76f22016-04-08 08:16:31 -0700510
511 return 0;
512}
513
Jakub Grajciar92b02752017-10-20 13:37:28 +0200514int
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200515af_packet_set_l4_cksum_offload (u32 sw_if_index, u8 set)
Jakub Grajciar92b02752017-10-20 13:37:28 +0200516{
517 vnet_main_t *vnm = vnet_get_main ();
518 vnet_hw_interface_t *hw;
519
520 hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
521
Jakub Grajciar64ae7782017-11-14 13:45:04 +0100522 if (hw->dev_class_index != af_packet_device_class.index)
523 return VNET_API_ERROR_INVALID_INTERFACE;
524
Jakub Grajciar92b02752017-10-20 13:37:28 +0200525 if (set)
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100526 {
527 hw->caps &= ~(VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM |
528 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM);
529 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200530 else
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100531 {
532 hw->caps |= (VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM |
533 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM);
534 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200535 return 0;
536}
537
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200538int
539af_packet_dump_ifs (af_packet_if_detail_t ** out_af_packet_ifs)
540{
541 af_packet_main_t *apm = &af_packet_main;
542 af_packet_if_t *apif;
543 af_packet_if_detail_t *r_af_packet_ifs = NULL;
544 af_packet_if_detail_t *af_packet_if = NULL;
545
Damjan Marionb2c31b62020-12-13 21:47:40 +0100546 pool_foreach (apif, apm->interfaces)
547 {
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200548 vec_add2 (r_af_packet_ifs, af_packet_if, 1);
549 af_packet_if->sw_if_index = apif->sw_if_index;
550 if (apif->host_if_name)
551 {
552 clib_memcpy (af_packet_if->host_if_name, apif->host_if_name,
553 MIN (ARRAY_LEN (af_packet_if->host_if_name) - 1,
554 strlen ((const char *) apif->host_if_name)));
555 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100556 }
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200557
558 *out_af_packet_ifs = r_af_packet_ifs;
559
560 return 0;
561}
562
Damjan Marion83243a02016-02-29 13:09:30 +0100563static clib_error_t *
564af_packet_init (vlib_main_t * vm)
565{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200566 af_packet_main_t *apm = &af_packet_main;
Damjan Marion553f6bd2016-09-07 11:54:22 +0200567 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100568
Dave Barachb7b92992018-10-17 10:38:51 -0400569 clib_memset (apm, 0, sizeof (af_packet_main_t));
Damjan Marion83243a02016-02-29 13:09:30 +0100570
571 mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword));
572
Damjan Marion553f6bd2016-09-07 11:54:22 +0200573 vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1,
574 CLIB_CACHE_LINE_BYTES);
575
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200576 apm->log_class = vlib_log_register_class ("af_packet", 0);
577 vlib_log_debug (apm->log_class, "initialized");
578
Damjan Marion83243a02016-02-29 13:09:30 +0100579 return 0;
580}
581
582VLIB_INIT_FUNCTION (af_packet_init);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200583
584/*
585 * fd.io coding-style-patch-verification: ON
586 *
587 * Local Variables:
588 * eval: (c-set-style "gnu")
589 * End:
590 */