blob: 4c52cf1d5f48fb6dc04e37190162f3d30760b999 [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
Mohsin Kazmicae84fa2021-10-08 15:10:49 +000041VNET_HW_INTERFACE_CLASS (af_packet_ip_device_hw_interface_class, static) = {
42 .name = "af-packet-ip-device",
43 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
44};
45
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020046#define AF_PACKET_DEFAULT_TX_FRAMES_PER_BLOCK 1024
47#define AF_PACKET_DEFAULT_TX_FRAME_SIZE (2048 * 5)
Damjan Marion83243a02016-02-29 13:09:30 +010048#define AF_PACKET_TX_BLOCK_NR 1
Damjan Marion83243a02016-02-29 13:09:30 +010049
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +020050#define AF_PACKET_DEFAULT_RX_FRAMES_PER_BLOCK 1024
51#define AF_PACKET_DEFAULT_RX_FRAME_SIZE (2048 * 5)
Damjan Marion83243a02016-02-29 13:09:30 +010052#define AF_PACKET_RX_BLOCK_NR 1
Damjan Marion83243a02016-02-29 13:09:30 +010053
Damjan Marion83243a02016-02-29 13:09:30 +010054/*defined in net/if.h but clashes with dpdk headers */
Damjan Marion00a9dca2016-08-17 17:05:46 +020055unsigned int if_nametoindex (const char *ifname);
Damjan Marion83243a02016-02-29 13:09:30 +010056
57typedef struct tpacket_req tpacket_req_t;
58
59static u32
Damjan Marion00a9dca2016-08-17 17:05:46 +020060af_packet_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi,
61 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +010062{
Ray Kinsella7bfa1192017-05-15 11:52:43 +010063 clib_error_t *error;
Ray Kinsella7bfa1192017-05-15 11:52:43 +010064 af_packet_main_t *apm = &af_packet_main;
65 af_packet_if_t *apif =
66 pool_elt_at_index (apm->interfaces, hi->dev_instance);
67
John Lo4a302ee2020-05-12 22:34:39 -040068 if (flags == ETHERNET_INTERFACE_FLAG_MTU)
Ray Kinsella7bfa1192017-05-15 11:52:43 +010069 {
Aloys Augustine39376e2021-03-29 22:08:09 +020070 error =
71 vnet_netlink_set_link_mtu (apif->host_if_index, hi->max_packet_bytes);
Ray Kinsella7bfa1192017-05-15 11:52:43 +010072
73 if (error)
74 {
Aloys Augustine39376e2021-03-29 22:08:09 +020075 vlib_log_err (apm->log_class, "netlink failed to change MTU: %U",
Mohsin Kazmiacba9f72018-05-17 15:42:27 +020076 format_clib_error, error);
77 clib_error_free (error);
Ray Kinsella7bfa1192017-05-15 11:52:43 +010078 return VNET_API_ERROR_SYSCALL_ERROR_1;
79 }
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010080 else
81 apif->host_mtu = hi->max_packet_bytes;
Ray Kinsella7bfa1192017-05-15 11:52:43 +010082 }
83
Damjan Marion83243a02016-02-29 13:09:30 +010084 return 0;
85}
86
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010087static int
88af_packet_read_mtu (af_packet_if_t *apif)
89{
90 af_packet_main_t *apm = &af_packet_main;
91 clib_error_t *error;
Aloys Augustine39376e2021-03-29 22:08:09 +020092 error = vnet_netlink_get_link_mtu (apif->host_if_index, &apif->host_mtu);
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010093 if (error)
94 {
Aloys Augustine39376e2021-03-29 22:08:09 +020095 vlib_log_err (apm->log_class, "netlink failed to get MTU: %U",
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010096 format_clib_error, error);
97 clib_error_free (error);
98 return VNET_API_ERROR_SYSCALL_ERROR_1;
99 }
100 return 0;
101}
102
Damjan Marion00a9dca2016-08-17 17:05:46 +0200103static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +0200104af_packet_fd_read_ready (clib_file_t * uf)
Damjan Marion83243a02016-02-29 13:09:30 +0100105{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200106 af_packet_main_t *apm = &af_packet_main;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100107 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100108 u32 idx = uf->private_data;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100109 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx);
Damjan Marion83243a02016-02-29 13:09:30 +0100110
Damjan Marion00a9dca2016-08-17 17:05:46 +0200111 apm->pending_input_bitmap =
112 clib_bitmap_set (apm->pending_input_bitmap, idx, 1);
Damjan Marion83243a02016-02-29 13:09:30 +0100113
114 /* Schedule the rx node */
Mohammed Hawari85c19432020-12-18 16:29:45 +0100115 vnet_hw_if_rx_queue_set_int_pending (vnm, apif->queue_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100116 return 0;
117}
118
119static int
Ray Kinsellac855b732017-04-21 12:24:43 +0100120is_bridge (const u8 * host_if_name)
121{
122 u8 *s;
123 DIR *dir = NULL;
124
125 s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0);
126 dir = opendir ((char *) s);
127 vec_free (s);
128
129 if (dir)
130 {
131 closedir (dir);
132 return 0;
133 }
134
135 return -1;
136}
137
138static int
139create_packet_v2_sock (int host_if_index, tpacket_req_t * rx_req,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200140 tpacket_req_t * tx_req, int *fd, u8 ** ring)
Damjan Marion83243a02016-02-29 13:09:30 +0100141{
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200142 af_packet_main_t *apm = &af_packet_main;
jackiechen19857fa41602019-05-07 18:59:13 +0800143 int ret;
Damjan Marion83243a02016-02-29 13:09:30 +0100144 struct sockaddr_ll sll;
Damjan Marion83243a02016-02-29 13:09:30 +0100145 int ver = TPACKET_V2;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200146 socklen_t req_sz = sizeof (struct tpacket_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100147 u32 ring_sz = rx_req->tp_block_size * rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200148 tx_req->tp_block_size * tx_req->tp_block_nr;
Damjan Marion83243a02016-02-29 13:09:30 +0100149
Damjan Marion00a9dca2016-08-17 17:05:46 +0200150 if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100151 {
jackiechen19857fa41602019-05-07 18:59:13 +0800152 vlib_log_debug (apm->log_class,
153 "Failed to create AF_PACKET socket: %s (errno %d)",
154 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100155 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
156 goto error;
157 }
Damjan Marionc5170202017-10-11 14:15:47 +0200158
Chaoyu Jinafb19302018-03-13 07:37:41 -0700159 /* bind before rx ring is cfged so we don't receive packets from other interfaces */
Dave Barachb7b92992018-10-17 10:38:51 -0400160 clib_memset (&sll, 0, sizeof (sll));
Chaoyu Jinafb19302018-03-13 07:37:41 -0700161 sll.sll_family = PF_PACKET;
162 sll.sll_protocol = htons (ETH_P_ALL);
163 sll.sll_ifindex = host_if_index;
jackiechen19857fa41602019-05-07 18:59:13 +0800164 if (bind (*fd, (struct sockaddr *) &sll, sizeof (sll)) < 0)
Chaoyu Jinafb19302018-03-13 07:37:41 -0700165 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200166 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800167 "Failed to bind rx packet socket: %s (errno %d)",
168 strerror (errno), errno);
Chaoyu Jinafb19302018-03-13 07:37:41 -0700169 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
170 goto error;
171 }
172
jackiechen19857fa41602019-05-07 18:59:13 +0800173 if (setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100174 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200175 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800176 "Failed to set rx packet interface version: %s (errno %d)",
177 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100178 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
179 goto error;
180 }
181
Damjan Marionc5170202017-10-11 14:15:47 +0200182 int opt = 1;
jackiechen19857fa41602019-05-07 18:59:13 +0800183 if (setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100184 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200185 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800186 "Failed to set packet tx ring error handling option: %s (errno %d)",
187 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100188 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
189 goto error;
190 }
191
Florin Coras2dc942e2021-11-22 21:34:56 -0800192#if defined(PACKET_QDISC_BYPASS)
193 /* Introduced with Linux 3.14 so the ifdef should eventually be removed */
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200194 if (setsockopt (*fd, SOL_PACKET, PACKET_QDISC_BYPASS, &opt, sizeof (opt)) <
195 0)
196 {
197 vlib_log_debug (apm->log_class,
198 "Failed to set qdisc bypass error "
199 "handling option: %s (errno %d)",
200 strerror (errno), errno);
201 }
Florin Coras2dc942e2021-11-22 21:34:56 -0800202#endif
Mohammed Hawarieed6fc92021-09-06 11:48:17 +0200203
jackiechen19857fa41602019-05-07 18:59:13 +0800204 if (setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100205 {
jackiechen19857fa41602019-05-07 18:59:13 +0800206 vlib_log_debug (apm->log_class,
207 "Failed to set packet rx ring options: %s (errno %d)",
208 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100209 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
210 goto error;
211 }
212
jackiechen19857fa41602019-05-07 18:59:13 +0800213 if (setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_req, req_sz) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100214 {
jackiechen19857fa41602019-05-07 18:59:13 +0800215 vlib_log_debug (apm->log_class,
216 "Failed to set packet tx ring options: %s (errno %d)",
217 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100218 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
219 goto error;
220 }
221
Damjan Marion00a9dca2016-08-17 17:05:46 +0200222 *ring =
223 mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, *fd,
224 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100225 if (*ring == MAP_FAILED)
226 {
jackiechen19857fa41602019-05-07 18:59:13 +0800227 vlib_log_debug (apm->log_class, "mmap failure: %s (errno %d)",
228 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100229 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
230 goto error;
231 }
232
Damjan Marion83243a02016-02-29 13:09:30 +0100233 return 0;
234error:
Dave Barach16ad6ae2016-07-28 17:55:30 -0400235 if (*fd >= 0)
jackiechen19857fa41602019-05-07 18:59:13 +0800236 {
237 close (*fd);
238 *fd = -1;
239 }
Damjan Marion83243a02016-02-29 13:09:30 +0100240 return ret;
241}
242
243int
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200244af_packet_create_if (af_packet_create_if_arg_t *arg)
Damjan Marion83243a02016-02-29 13:09:30 +0100245{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200246 af_packet_main_t *apm = &af_packet_main;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200247 vlib_main_t *vm = vlib_get_main ();
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200248 int ret, fd = -1, fd2 = -1;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200249 struct tpacket_req *rx_req = 0;
250 struct tpacket_req *tx_req = 0;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200251 struct ifreq ifr;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200252 u8 *ring = 0;
253 af_packet_if_t *apif = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100254 u8 hw_addr[6];
Damjan Marion00a9dca2016-08-17 17:05:46 +0200255 vnet_sw_interface_t *sw;
Damjan Marion44036902017-04-28 12:29:15 +0200256 vnet_hw_interface_t *hw;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100257 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion00a9dca2016-08-17 17:05:46 +0200258 vnet_main_t *vnm = vnet_get_main ();
259 uword *p;
Damjan Marion83243a02016-02-29 13:09:30 +0100260 uword if_index;
jackiechen19857fa41602019-05-07 18:59:13 +0800261 u8 *host_if_name_dup = 0;
Ray Kinsellac855b732017-04-21 12:24:43 +0100262 int host_if_index = -1;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200263 u32 rx_frames_per_block, tx_frames_per_block;
264 u32 rx_frame_size, tx_frame_size;
Damjan Marion83243a02016-02-29 13:09:30 +0100265
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200266 p = mhash_get (&apm->if_index_by_host_if_name, arg->host_if_name);
Damjan Marion83243a02016-02-29 13:09:30 +0100267 if (p)
268 {
Mohsin Kazmi43fc6882018-03-22 23:45:23 +0100269 apif = vec_elt_at_index (apm->interfaces, p[0]);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200270 arg->sw_if_index = apif->sw_if_index;
Mohsin Kazmi43fc6882018-03-22 23:45:23 +0100271 return VNET_API_ERROR_IF_ALREADY_EXISTS;
Damjan Marion83243a02016-02-29 13:09:30 +0100272 }
273
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200274 host_if_name_dup = vec_dup (arg->host_if_name);
275
276 rx_frames_per_block = arg->rx_frames_per_block ?
277 arg->rx_frames_per_block :
278 AF_PACKET_DEFAULT_RX_FRAMES_PER_BLOCK;
279 tx_frames_per_block = arg->tx_frames_per_block ?
280 arg->tx_frames_per_block :
281 AF_PACKET_DEFAULT_TX_FRAMES_PER_BLOCK;
282 rx_frame_size =
283 arg->rx_frame_size ? arg->rx_frame_size : AF_PACKET_DEFAULT_RX_FRAME_SIZE;
284 tx_frame_size =
285 arg->tx_frame_size ? arg->tx_frame_size : AF_PACKET_DEFAULT_TX_FRAME_SIZE;
jackiechen19857fa41602019-05-07 18:59:13 +0800286
Damjan Marion00a9dca2016-08-17 17:05:46 +0200287 vec_validate (rx_req, 0);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200288 rx_req->tp_block_size = rx_frame_size * rx_frames_per_block;
289 rx_req->tp_frame_size = rx_frame_size;
Damjan Marion83243a02016-02-29 13:09:30 +0100290 rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200291 rx_req->tp_frame_nr = AF_PACKET_RX_BLOCK_NR * rx_frames_per_block;
Damjan Marion83243a02016-02-29 13:09:30 +0100292
Damjan Marion00a9dca2016-08-17 17:05:46 +0200293 vec_validate (tx_req, 0);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200294 tx_req->tp_block_size = tx_frame_size * tx_frames_per_block;
295 tx_req->tp_frame_size = tx_frame_size;
Damjan Marion83243a02016-02-29 13:09:30 +0100296 tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR;
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200297 tx_req->tp_frame_nr = AF_PACKET_TX_BLOCK_NR * tx_frames_per_block;
Damjan Marion83243a02016-02-29 13:09:30 +0100298
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200299 /*
300 * make sure host side of interface is 'UP' before binding AF_PACKET
301 * socket on it.
302 */
303 if ((fd2 = socket (AF_UNIX, SOCK_DGRAM, 0)) < 0)
Ray Kinsellac855b732017-04-21 12:24:43 +0100304 {
jackiechen19857fa41602019-05-07 18:59:13 +0800305 vlib_log_debug (apm->log_class,
306 "Failed to create AF_UNIX socket: %s (errno %d)",
307 strerror (errno), errno);
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200308 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
309 goto error;
310 }
311
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200312 clib_memcpy (ifr.ifr_name, (const char *) arg->host_if_name,
313 vec_len (arg->host_if_name));
jackiechen19857fa41602019-05-07 18:59:13 +0800314 if (ioctl (fd2, SIOCGIFINDEX, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200315 {
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200316 vlib_log_debug (
317 apm->log_class,
318 "Failed to retrieve the interface (%s) index: %s (errno %d)",
319 arg->host_if_name, strerror (errno), errno);
jackiechen19857fa41602019-05-07 18:59:13 +0800320 ret = VNET_API_ERROR_INVALID_INTERFACE;
321 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100322 }
323
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200324 host_if_index = ifr.ifr_ifindex;
jackiechen19857fa41602019-05-07 18:59:13 +0800325 if (ioctl (fd2, SIOCGIFFLAGS, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200326 {
jackiechen19857fa41602019-05-07 18:59:13 +0800327 vlib_log_debug (apm->log_class,
328 "Failed to get the active flag: %s (errno %d)",
329 strerror (errno), errno);
330 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200331 goto error;
332 }
333
334 if (!(ifr.ifr_flags & IFF_UP))
335 {
336 ifr.ifr_flags |= IFF_UP;
jackiechen19857fa41602019-05-07 18:59:13 +0800337 if (ioctl (fd2, SIOCSIFFLAGS, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200338 {
jackiechen19857fa41602019-05-07 18:59:13 +0800339 vlib_log_debug (apm->log_class,
340 "Failed to set the active flag: %s (errno %d)",
341 strerror (errno), errno);
342 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200343 goto error;
344 }
345 }
346
347 if (fd2 > -1)
jackiechen19857fa41602019-05-07 18:59:13 +0800348 {
349 close (fd2);
350 fd2 = -1;
351 }
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200352
Ray Kinsellac855b732017-04-21 12:24:43 +0100353 ret = create_packet_v2_sock (host_if_index, rx_req, tx_req, &fd, &ring);
Damjan Marion83243a02016-02-29 13:09:30 +0100354
355 if (ret != 0)
356 goto error;
357
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200358 ret = is_bridge (arg->host_if_name);
Ray Kinsellac855b732017-04-21 12:24:43 +0100359
360 if (ret == 0) /* is a bridge, ignore state */
361 host_if_index = -1;
362
Damjan Marion83243a02016-02-29 13:09:30 +0100363 /* So far everything looks good, let's create interface */
Damjan Marion048ee2e2016-03-16 22:59:21 +0100364 pool_get (apm->interfaces, apif);
Damjan Marion83243a02016-02-29 13:09:30 +0100365 if_index = apif - apm->interfaces;
366
Ray Kinsellac855b732017-04-21 12:24:43 +0100367 apif->host_if_index = host_if_index;
Damjan Marion83243a02016-02-29 13:09:30 +0100368 apif->fd = fd;
369 apif->rx_ring = ring;
370 apif->tx_ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr;
371 apif->rx_req = rx_req;
372 apif->tx_req = tx_req;
Ivan Kellybfe737a2016-10-07 18:02:43 +0200373 apif->host_if_name = host_if_name_dup;
Dave Barach13f3c452016-03-29 11:56:41 -0400374 apif->per_interface_next_index = ~0;
Peter Leidba76f22016-04-08 08:16:31 -0700375 apif->next_tx_frame = 0;
376 apif->next_rx_frame = 0;
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000377 apif->mode = arg->mode;
Damjan Marion83243a02016-02-29 13:09:30 +0100378
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100379 ret = af_packet_read_mtu (apif);
380 if (ret != 0)
381 goto error;
382
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100383 if (tm->n_vlib_mains > 1)
Damjan Marion1927da22017-03-27 17:08:20 +0200384 clib_spinlock_init (&apif->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100385
Nathan Skrzypczakb225b0a2021-10-26 16:11:38 +0200386 if (apif->mode != AF_PACKET_IF_MODE_IP)
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000387 {
Damjan Marion5c954c42022-01-06 20:36:14 +0100388 vnet_eth_interface_registration_t eir = {};
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000389 /*use configured or generate random MAC address */
390 if (arg->hw_addr)
391 clib_memcpy (hw_addr, arg->hw_addr, 6);
392 else
393 {
394 f64 now = vlib_time_now (vm);
395 u32 rnd;
396 rnd = (u32) (now * 1e6);
397 rnd = random_u32 (&rnd);
398
399 clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd));
400 hw_addr[0] = 2;
401 hw_addr[1] = 0xfe;
402 }
403
Damjan Marion5c954c42022-01-06 20:36:14 +0100404 eir.dev_class_index = af_packet_device_class.index;
405 eir.dev_instance = if_index;
406 eir.address = hw_addr;
407 eir.cb.flag_change = af_packet_eth_flag_change;
408 apif->hw_if_index = vnet_eth_register_interface (vnm, &eir);
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000409 }
Damjan Marion83243a02016-02-29 13:09:30 +0100410 else
411 {
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000412 apif->hw_if_index = vnet_register_interface (
413 vnm, af_packet_device_class.index, if_index,
414 af_packet_ip_device_hw_interface_class.index, if_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100415 }
Damjan Marion83243a02016-02-29 13:09:30 +0100416 sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index);
Damjan Marion44036902017-04-28 12:29:15 +0200417 hw = vnet_get_hw_interface (vnm, apif->hw_if_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100418 apif->sw_if_index = sw->sw_if_index;
Mohammed Hawari85c19432020-12-18 16:29:45 +0100419 vnet_hw_if_set_input_node (vnm, apif->hw_if_index,
420 af_packet_input_node.index);
421 apif->queue_index = vnet_hw_if_register_rx_queue (vnm, apif->hw_if_index, 0,
422 VNET_HW_IF_RXQ_THREAD_ANY);
Damjan Marion44036902017-04-28 12:29:15 +0200423
Damjan Mariond4f88cc2022-01-05 01:52:38 +0100424 hw->caps |= VNET_HW_IF_CAP_INT_MODE;
Damjan Marion83243a02016-02-29 13:09:30 +0100425 vnet_hw_interface_set_flags (vnm, apif->hw_if_index,
426 VNET_HW_INTERFACE_FLAG_LINK_UP);
427
Mohammed Hawari85c19432020-12-18 16:29:45 +0100428 vnet_hw_if_set_rx_queue_mode (vnm, apif->queue_index,
429 VNET_HW_IF_RX_MODE_INTERRUPT);
430 vnet_hw_if_update_runtime_data (vnm, apif->hw_if_index);
431 {
432 clib_file_t template = { 0 };
433 template.read_function = af_packet_fd_read_ready;
434 template.file_descriptor = fd;
435 template.private_data = if_index;
436 template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED;
437 template.description =
438 format (0, "%U", format_af_packet_device_name, if_index);
439 apif->clib_file_index = clib_file_add (&file_main, &template);
440 }
441 vnet_hw_if_set_rx_queue_file_index (vnm, apif->queue_index,
442 apif->clib_file_index);
Damjan Marion44036902017-04-28 12:29:15 +0200443
Ivan Kellybfe737a2016-10-07 18:02:43 +0200444 mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index,
445 0);
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200446 arg->sw_if_index = apif->sw_if_index;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100447
Damjan Marion83243a02016-02-29 13:09:30 +0100448 return 0;
449
450error:
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200451 if (fd2 > -1)
jackiechen19857fa41602019-05-07 18:59:13 +0800452 {
453 close (fd2);
454 fd2 = -1;
455 }
Ivan Kellybfe737a2016-10-07 18:02:43 +0200456 vec_free (host_if_name_dup);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200457 vec_free (rx_req);
458 vec_free (tx_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100459 return ret;
460}
461
Peter Leidba76f22016-04-08 08:16:31 -0700462int
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200463af_packet_delete_if (u8 *host_if_name)
Peter Leidba76f22016-04-08 08:16:31 -0700464{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200465 vnet_main_t *vnm = vnet_get_main ();
Peter Leidba76f22016-04-08 08:16:31 -0700466 af_packet_main_t *apm = &af_packet_main;
467 af_packet_if_t *apif;
468 uword *p;
469 uword if_index;
470 u32 ring_sz;
471
Damjan Marion00a9dca2016-08-17 17:05:46 +0200472 p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
473 if (p == NULL)
474 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200475 vlib_log_warn (apm->log_class, "Host interface %s does not exist",
476 host_if_name);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200477 return VNET_API_ERROR_SYSCALL_ERROR_1;
478 }
479 apif = pool_elt_at_index (apm->interfaces, p[0]);
Peter Leidba76f22016-04-08 08:16:31 -0700480 if_index = apif - apm->interfaces;
481
482 /* bring down the interface */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200483 vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0);
Peter Leidba76f22016-04-08 08:16:31 -0700484
485 /* clean up */
Damjan Marion56dd5432017-09-08 19:52:02 +0200486 if (apif->clib_file_index != ~0)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200487 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200488 clib_file_del (&file_main, file_main.file_pool + apif->clib_file_index);
489 apif->clib_file_index = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200490 }
Eyal Barif298ecf2016-09-19 18:47:39 +0300491 else
492 close (apif->fd);
493
Peter Leidba76f22016-04-08 08:16:31 -0700494 ring_sz = apif->rx_req->tp_block_size * apif->rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200495 apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr;
496 if (munmap (apif->rx_ring, ring_sz))
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200497 vlib_log_warn (apm->log_class,
498 "Host interface %s could not free rx/tx ring",
499 host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700500 apif->rx_ring = NULL;
501 apif->tx_ring = NULL;
Peter Leidba76f22016-04-08 08:16:31 -0700502 apif->fd = -1;
503
Damjan Marion00a9dca2016-08-17 17:05:46 +0200504 vec_free (apif->rx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700505 apif->rx_req = NULL;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200506 vec_free (apif->tx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700507 apif->tx_req = NULL;
508
Damjan Marion00a9dca2016-08-17 17:05:46 +0200509 vec_free (apif->host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700510 apif->host_if_name = NULL;
Ray Kinsellac855b732017-04-21 12:24:43 +0100511 apif->host_if_index = -1;
Peter Leidba76f22016-04-08 08:16:31 -0700512
Damjan Marion00a9dca2016-08-17 17:05:46 +0200513 mhash_unset (&apm->if_index_by_host_if_name, host_if_name, &if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700514
Nathan Skrzypczakb225b0a2021-10-26 16:11:38 +0200515 if (apif->mode != AF_PACKET_IF_MODE_IP)
Mohsin Kazmicae84fa2021-10-08 15:10:49 +0000516 ethernet_delete_interface (vnm, apif->hw_if_index);
517 else
518 vnet_delete_hw_interface (vnm, apif->hw_if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700519
Damjan Marion00a9dca2016-08-17 17:05:46 +0200520 pool_put (apm->interfaces, apif);
Peter Leidba76f22016-04-08 08:16:31 -0700521
522 return 0;
523}
524
Jakub Grajciar92b02752017-10-20 13:37:28 +0200525int
Nathan Skrzypczak7d0e30b2021-06-23 11:28:39 +0200526af_packet_set_l4_cksum_offload (u32 sw_if_index, u8 set)
Jakub Grajciar92b02752017-10-20 13:37:28 +0200527{
528 vnet_main_t *vnm = vnet_get_main ();
529 vnet_hw_interface_t *hw;
530
531 hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
532
Jakub Grajciar64ae7782017-11-14 13:45:04 +0100533 if (hw->dev_class_index != af_packet_device_class.index)
534 return VNET_API_ERROR_INVALID_INTERFACE;
535
Jakub Grajciar92b02752017-10-20 13:37:28 +0200536 if (set)
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100537 {
Damjan Mariond4f88cc2022-01-05 01:52:38 +0100538 hw->caps &= ~(VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM);
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100539 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200540 else
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100541 {
Damjan Mariond4f88cc2022-01-05 01:52:38 +0100542 hw->caps |= (VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM);
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100543 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200544 return 0;
545}
546
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200547int
548af_packet_dump_ifs (af_packet_if_detail_t ** out_af_packet_ifs)
549{
550 af_packet_main_t *apm = &af_packet_main;
551 af_packet_if_t *apif;
552 af_packet_if_detail_t *r_af_packet_ifs = NULL;
553 af_packet_if_detail_t *af_packet_if = NULL;
554
Damjan Marionb2c31b62020-12-13 21:47:40 +0100555 pool_foreach (apif, apm->interfaces)
556 {
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200557 vec_add2 (r_af_packet_ifs, af_packet_if, 1);
558 af_packet_if->sw_if_index = apif->sw_if_index;
559 if (apif->host_if_name)
560 {
561 clib_memcpy (af_packet_if->host_if_name, apif->host_if_name,
562 MIN (ARRAY_LEN (af_packet_if->host_if_name) - 1,
563 strlen ((const char *) apif->host_if_name)));
564 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100565 }
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200566
567 *out_af_packet_ifs = r_af_packet_ifs;
568
569 return 0;
570}
571
Damjan Marion83243a02016-02-29 13:09:30 +0100572static clib_error_t *
573af_packet_init (vlib_main_t * vm)
574{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200575 af_packet_main_t *apm = &af_packet_main;
Damjan Marion553f6bd2016-09-07 11:54:22 +0200576 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100577
Dave Barachb7b92992018-10-17 10:38:51 -0400578 clib_memset (apm, 0, sizeof (af_packet_main_t));
Damjan Marion83243a02016-02-29 13:09:30 +0100579
580 mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword));
581
Damjan Marion553f6bd2016-09-07 11:54:22 +0200582 vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1,
583 CLIB_CACHE_LINE_BYTES);
584
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200585 apm->log_class = vlib_log_register_class ("af_packet", 0);
586 vlib_log_debug (apm->log_class, "initialized");
587
Damjan Marion83243a02016-02-29 13:09:30 +0100588 return 0;
589}
590
591VLIB_INIT_FUNCTION (af_packet_init);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200592
593/*
594 * fd.io coding-style-patch-verification: ON
595 *
596 * Local Variables:
597 * eval: (c-set-style "gnu")
598 * End:
599 */