blob: 76677a430926fe4f7f91ecf1350bdc3f3958bee2 [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
Damjan Marion83243a02016-02-29 13:09:30 +010041#define AF_PACKET_TX_FRAMES_PER_BLOCK 1024
42#define AF_PACKET_TX_FRAME_SIZE (2048 * 5)
43#define AF_PACKET_TX_BLOCK_NR 1
44#define AF_PACKET_TX_FRAME_NR (AF_PACKET_TX_BLOCK_NR * \
45 AF_PACKET_TX_FRAMES_PER_BLOCK)
46#define AF_PACKET_TX_BLOCK_SIZE (AF_PACKET_TX_FRAME_SIZE * \
47 AF_PACKET_TX_FRAMES_PER_BLOCK)
48
49#define AF_PACKET_RX_FRAMES_PER_BLOCK 1024
50#define AF_PACKET_RX_FRAME_SIZE (2048 * 5)
51#define AF_PACKET_RX_BLOCK_NR 1
52#define AF_PACKET_RX_FRAME_NR (AF_PACKET_RX_BLOCK_NR * \
53 AF_PACKET_RX_FRAMES_PER_BLOCK)
54#define AF_PACKET_RX_BLOCK_SIZE (AF_PACKET_RX_FRAME_SIZE * \
55 AF_PACKET_RX_FRAMES_PER_BLOCK)
56
Damjan Marion83243a02016-02-29 13:09:30 +010057/*defined in net/if.h but clashes with dpdk headers */
Damjan Marion00a9dca2016-08-17 17:05:46 +020058unsigned int if_nametoindex (const char *ifname);
Damjan Marion83243a02016-02-29 13:09:30 +010059
60typedef struct tpacket_req tpacket_req_t;
61
62static u32
Damjan Marion00a9dca2016-08-17 17:05:46 +020063af_packet_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi,
64 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +010065{
Ray Kinsella7bfa1192017-05-15 11:52:43 +010066 clib_error_t *error;
Ray Kinsella7bfa1192017-05-15 11:52:43 +010067 af_packet_main_t *apm = &af_packet_main;
68 af_packet_if_t *apif =
69 pool_elt_at_index (apm->interfaces, hi->dev_instance);
70
John Lo4a302ee2020-05-12 22:34:39 -040071 if (flags == ETHERNET_INTERFACE_FLAG_MTU)
Ray Kinsella7bfa1192017-05-15 11:52:43 +010072 {
Aloys Augustine39376e2021-03-29 22:08:09 +020073 error =
74 vnet_netlink_set_link_mtu (apif->host_if_index, hi->max_packet_bytes);
Ray Kinsella7bfa1192017-05-15 11:52:43 +010075
76 if (error)
77 {
Aloys Augustine39376e2021-03-29 22:08:09 +020078 vlib_log_err (apm->log_class, "netlink failed to change MTU: %U",
Mohsin Kazmiacba9f72018-05-17 15:42:27 +020079 format_clib_error, error);
80 clib_error_free (error);
Ray Kinsella7bfa1192017-05-15 11:52:43 +010081 return VNET_API_ERROR_SYSCALL_ERROR_1;
82 }
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010083 else
84 apif->host_mtu = hi->max_packet_bytes;
Ray Kinsella7bfa1192017-05-15 11:52:43 +010085 }
86
Damjan Marion83243a02016-02-29 13:09:30 +010087 return 0;
88}
89
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010090static int
91af_packet_read_mtu (af_packet_if_t *apif)
92{
93 af_packet_main_t *apm = &af_packet_main;
94 clib_error_t *error;
Aloys Augustine39376e2021-03-29 22:08:09 +020095 error = vnet_netlink_get_link_mtu (apif->host_if_index, &apif->host_mtu);
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010096 if (error)
97 {
Aloys Augustine39376e2021-03-29 22:08:09 +020098 vlib_log_err (apm->log_class, "netlink failed to get MTU: %U",
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +010099 format_clib_error, error);
100 clib_error_free (error);
101 return VNET_API_ERROR_SYSCALL_ERROR_1;
102 }
103 return 0;
104}
105
Damjan Marion00a9dca2016-08-17 17:05:46 +0200106static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +0200107af_packet_fd_read_ready (clib_file_t * uf)
Damjan Marion83243a02016-02-29 13:09:30 +0100108{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200109 af_packet_main_t *apm = &af_packet_main;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100110 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100111 u32 idx = uf->private_data;
Damjan Marioneb743fa2017-03-20 16:34:15 +0100112 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx);
Damjan Marion83243a02016-02-29 13:09:30 +0100113
Damjan Marion00a9dca2016-08-17 17:05:46 +0200114 apm->pending_input_bitmap =
115 clib_bitmap_set (apm->pending_input_bitmap, idx, 1);
Damjan Marion83243a02016-02-29 13:09:30 +0100116
117 /* Schedule the rx node */
Mohammed Hawari85c19432020-12-18 16:29:45 +0100118 vnet_hw_if_rx_queue_set_int_pending (vnm, apif->queue_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100119 return 0;
120}
121
122static int
Ray Kinsellac855b732017-04-21 12:24:43 +0100123is_bridge (const u8 * host_if_name)
124{
125 u8 *s;
126 DIR *dir = NULL;
127
128 s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0);
129 dir = opendir ((char *) s);
130 vec_free (s);
131
132 if (dir)
133 {
134 closedir (dir);
135 return 0;
136 }
137
138 return -1;
139}
140
141static int
142create_packet_v2_sock (int host_if_index, tpacket_req_t * rx_req,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200143 tpacket_req_t * tx_req, int *fd, u8 ** ring)
Damjan Marion83243a02016-02-29 13:09:30 +0100144{
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200145 af_packet_main_t *apm = &af_packet_main;
jackiechen19857fa41602019-05-07 18:59:13 +0800146 int ret;
Damjan Marion83243a02016-02-29 13:09:30 +0100147 struct sockaddr_ll sll;
Damjan Marion83243a02016-02-29 13:09:30 +0100148 int ver = TPACKET_V2;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200149 socklen_t req_sz = sizeof (struct tpacket_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100150 u32 ring_sz = rx_req->tp_block_size * rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200151 tx_req->tp_block_size * tx_req->tp_block_nr;
Damjan Marion83243a02016-02-29 13:09:30 +0100152
Damjan Marion00a9dca2016-08-17 17:05:46 +0200153 if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100154 {
jackiechen19857fa41602019-05-07 18:59:13 +0800155 vlib_log_debug (apm->log_class,
156 "Failed to create AF_PACKET socket: %s (errno %d)",
157 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100158 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
159 goto error;
160 }
Damjan Marionc5170202017-10-11 14:15:47 +0200161
Chaoyu Jinafb19302018-03-13 07:37:41 -0700162 /* bind before rx ring is cfged so we don't receive packets from other interfaces */
Dave Barachb7b92992018-10-17 10:38:51 -0400163 clib_memset (&sll, 0, sizeof (sll));
Chaoyu Jinafb19302018-03-13 07:37:41 -0700164 sll.sll_family = PF_PACKET;
165 sll.sll_protocol = htons (ETH_P_ALL);
166 sll.sll_ifindex = host_if_index;
jackiechen19857fa41602019-05-07 18:59:13 +0800167 if (bind (*fd, (struct sockaddr *) &sll, sizeof (sll)) < 0)
Chaoyu Jinafb19302018-03-13 07:37:41 -0700168 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200169 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800170 "Failed to bind rx packet socket: %s (errno %d)",
171 strerror (errno), errno);
Chaoyu Jinafb19302018-03-13 07:37:41 -0700172 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
173 goto error;
174 }
175
jackiechen19857fa41602019-05-07 18:59:13 +0800176 if (setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100177 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200178 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800179 "Failed to set rx packet interface version: %s (errno %d)",
180 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100181 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
182 goto error;
183 }
184
Damjan Marionc5170202017-10-11 14:15:47 +0200185 int opt = 1;
jackiechen19857fa41602019-05-07 18:59:13 +0800186 if (setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100187 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200188 vlib_log_debug (apm->log_class,
jackiechen19857fa41602019-05-07 18:59:13 +0800189 "Failed to set packet tx ring error handling option: %s (errno %d)",
190 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100191 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
192 goto error;
193 }
194
jackiechen19857fa41602019-05-07 18:59:13 +0800195 if (setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100196 {
jackiechen19857fa41602019-05-07 18:59:13 +0800197 vlib_log_debug (apm->log_class,
198 "Failed to set packet rx ring options: %s (errno %d)",
199 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100200 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
201 goto error;
202 }
203
jackiechen19857fa41602019-05-07 18:59:13 +0800204 if (setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_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 tx 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
Damjan Marion00a9dca2016-08-17 17:05:46 +0200213 *ring =
214 mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, *fd,
215 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100216 if (*ring == MAP_FAILED)
217 {
jackiechen19857fa41602019-05-07 18:59:13 +0800218 vlib_log_debug (apm->log_class, "mmap failure: %s (errno %d)",
219 strerror (errno), errno);
Damjan Marion83243a02016-02-29 13:09:30 +0100220 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
221 goto error;
222 }
223
Damjan Marion83243a02016-02-29 13:09:30 +0100224 return 0;
225error:
Dave Barach16ad6ae2016-07-28 17:55:30 -0400226 if (*fd >= 0)
jackiechen19857fa41602019-05-07 18:59:13 +0800227 {
228 close (*fd);
229 *fd = -1;
230 }
Damjan Marion83243a02016-02-29 13:09:30 +0100231 return ret;
232}
233
234int
Damjan Marion00a9dca2016-08-17 17:05:46 +0200235af_packet_create_if (vlib_main_t * vm, u8 * host_if_name, u8 * hw_addr_set,
236 u32 * sw_if_index)
Damjan Marion83243a02016-02-29 13:09:30 +0100237{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200238 af_packet_main_t *apm = &af_packet_main;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200239 int ret, fd = -1, fd2 = -1;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200240 struct tpacket_req *rx_req = 0;
241 struct tpacket_req *tx_req = 0;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200242 struct ifreq ifr;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200243 u8 *ring = 0;
244 af_packet_if_t *apif = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100245 u8 hw_addr[6];
Damjan Marion00a9dca2016-08-17 17:05:46 +0200246 clib_error_t *error;
247 vnet_sw_interface_t *sw;
Damjan Marion44036902017-04-28 12:29:15 +0200248 vnet_hw_interface_t *hw;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100249 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion00a9dca2016-08-17 17:05:46 +0200250 vnet_main_t *vnm = vnet_get_main ();
251 uword *p;
Damjan Marion83243a02016-02-29 13:09:30 +0100252 uword if_index;
jackiechen19857fa41602019-05-07 18:59:13 +0800253 u8 *host_if_name_dup = 0;
Ray Kinsellac855b732017-04-21 12:24:43 +0100254 int host_if_index = -1;
Damjan Marion83243a02016-02-29 13:09:30 +0100255
256 p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
257 if (p)
258 {
Mohsin Kazmi43fc6882018-03-22 23:45:23 +0100259 apif = vec_elt_at_index (apm->interfaces, p[0]);
260 *sw_if_index = apif->sw_if_index;
261 return VNET_API_ERROR_IF_ALREADY_EXISTS;
Damjan Marion83243a02016-02-29 13:09:30 +0100262 }
263
jackiechen19857fa41602019-05-07 18:59:13 +0800264 host_if_name_dup = vec_dup (host_if_name);
265
Damjan Marion00a9dca2016-08-17 17:05:46 +0200266 vec_validate (rx_req, 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100267 rx_req->tp_block_size = AF_PACKET_RX_BLOCK_SIZE;
268 rx_req->tp_frame_size = AF_PACKET_RX_FRAME_SIZE;
269 rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR;
270 rx_req->tp_frame_nr = AF_PACKET_RX_FRAME_NR;
271
Damjan Marion00a9dca2016-08-17 17:05:46 +0200272 vec_validate (tx_req, 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100273 tx_req->tp_block_size = AF_PACKET_TX_BLOCK_SIZE;
274 tx_req->tp_frame_size = AF_PACKET_TX_FRAME_SIZE;
275 tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR;
276 tx_req->tp_frame_nr = AF_PACKET_TX_FRAME_NR;
277
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200278 /*
279 * make sure host side of interface is 'UP' before binding AF_PACKET
280 * socket on it.
281 */
282 if ((fd2 = socket (AF_UNIX, SOCK_DGRAM, 0)) < 0)
Ray Kinsellac855b732017-04-21 12:24:43 +0100283 {
jackiechen19857fa41602019-05-07 18:59:13 +0800284 vlib_log_debug (apm->log_class,
285 "Failed to create AF_UNIX socket: %s (errno %d)",
286 strerror (errno), errno);
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200287 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
288 goto error;
289 }
290
291 clib_memcpy (ifr.ifr_name, (const char *) host_if_name,
292 vec_len (host_if_name));
jackiechen19857fa41602019-05-07 18:59:13 +0800293 if (ioctl (fd2, SIOCGIFINDEX, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200294 {
jackiechen19857fa41602019-05-07 18:59:13 +0800295 vlib_log_debug (apm->log_class,
296 "Failed to retrieve the interface (%s) index: %s (errno %d)",
297 host_if_name, strerror (errno), errno);
298 ret = VNET_API_ERROR_INVALID_INTERFACE;
299 goto error;
Ray Kinsellac855b732017-04-21 12:24:43 +0100300 }
301
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200302 host_if_index = ifr.ifr_ifindex;
jackiechen19857fa41602019-05-07 18:59:13 +0800303 if (ioctl (fd2, SIOCGIFFLAGS, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200304 {
jackiechen19857fa41602019-05-07 18:59:13 +0800305 vlib_log_debug (apm->log_class,
306 "Failed to get the active flag: %s (errno %d)",
307 strerror (errno), errno);
308 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200309 goto error;
310 }
311
312 if (!(ifr.ifr_flags & IFF_UP))
313 {
314 ifr.ifr_flags |= IFF_UP;
jackiechen19857fa41602019-05-07 18:59:13 +0800315 if (ioctl (fd2, SIOCSIFFLAGS, &ifr) < 0)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200316 {
jackiechen19857fa41602019-05-07 18:59:13 +0800317 vlib_log_debug (apm->log_class,
318 "Failed to set the active flag: %s (errno %d)",
319 strerror (errno), errno);
320 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200321 goto error;
322 }
323 }
324
325 if (fd2 > -1)
jackiechen19857fa41602019-05-07 18:59:13 +0800326 {
327 close (fd2);
328 fd2 = -1;
329 }
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200330
Ray Kinsellac855b732017-04-21 12:24:43 +0100331 ret = create_packet_v2_sock (host_if_index, rx_req, tx_req, &fd, &ring);
Damjan Marion83243a02016-02-29 13:09:30 +0100332
333 if (ret != 0)
334 goto error;
335
Ray Kinsellac855b732017-04-21 12:24:43 +0100336 ret = is_bridge (host_if_name);
337
338 if (ret == 0) /* is a bridge, ignore state */
339 host_if_index = -1;
340
Damjan Marion83243a02016-02-29 13:09:30 +0100341 /* So far everything looks good, let's create interface */
Damjan Marion048ee2e2016-03-16 22:59:21 +0100342 pool_get (apm->interfaces, apif);
Damjan Marion83243a02016-02-29 13:09:30 +0100343 if_index = apif - apm->interfaces;
344
Ray Kinsellac855b732017-04-21 12:24:43 +0100345 apif->host_if_index = host_if_index;
Damjan Marion83243a02016-02-29 13:09:30 +0100346 apif->fd = fd;
347 apif->rx_ring = ring;
348 apif->tx_ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr;
349 apif->rx_req = rx_req;
350 apif->tx_req = tx_req;
Ivan Kellybfe737a2016-10-07 18:02:43 +0200351 apif->host_if_name = host_if_name_dup;
Dave Barach13f3c452016-03-29 11:56:41 -0400352 apif->per_interface_next_index = ~0;
Peter Leidba76f22016-04-08 08:16:31 -0700353 apif->next_tx_frame = 0;
354 apif->next_rx_frame = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100355
Nathan Skrzypczakffc6bdc2021-02-01 17:13:59 +0100356 ret = af_packet_read_mtu (apif);
357 if (ret != 0)
358 goto error;
359
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100360 if (tm->n_vlib_mains > 1)
Damjan Marion1927da22017-03-27 17:08:20 +0200361 clib_spinlock_init (&apif->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100362
Damjan Marion83243a02016-02-29 13:09:30 +0100363 /*use configured or generate random MAC address */
364 if (hw_addr_set)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200365 clib_memcpy (hw_addr, hw_addr_set, 6);
Damjan Marion83243a02016-02-29 13:09:30 +0100366 else
367 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200368 f64 now = vlib_time_now (vm);
Damjan Marion83243a02016-02-29 13:09:30 +0100369 u32 rnd;
370 rnd = (u32) (now * 1e6);
371 rnd = random_u32 (&rnd);
372
Damjan Marion00a9dca2016-08-17 17:05:46 +0200373 clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd));
Damjan Marion83243a02016-02-29 13:09:30 +0100374 hw_addr[0] = 2;
375 hw_addr[1] = 0xfe;
376 }
377
Damjan Marion00a9dca2016-08-17 17:05:46 +0200378 error = ethernet_register_interface (vnm, af_packet_device_class.index,
379 if_index, hw_addr, &apif->hw_if_index,
380 af_packet_eth_flag_change);
Damjan Marion83243a02016-02-29 13:09:30 +0100381
382 if (error)
383 {
Dave Barachb7b92992018-10-17 10:38:51 -0400384 clib_memset (apif, 0, sizeof (*apif));
Damjan Marion00a9dca2016-08-17 17:05:46 +0200385 pool_put (apm->interfaces, apif);
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200386 vlib_log_err (apm->log_class, "Unable to register interface: %U",
387 format_clib_error, error);
388 clib_error_free (error);
Damjan Marion83243a02016-02-29 13:09:30 +0100389 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
390 goto error;
391 }
392
393 sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index);
Damjan Marion44036902017-04-28 12:29:15 +0200394 hw = vnet_get_hw_interface (vnm, apif->hw_if_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100395 apif->sw_if_index = sw->sw_if_index;
Mohammed Hawari85c19432020-12-18 16:29:45 +0100396 vnet_hw_if_set_input_node (vnm, apif->hw_if_index,
397 af_packet_input_node.index);
398 apif->queue_index = vnet_hw_if_register_rx_queue (vnm, apif->hw_if_index, 0,
399 VNET_HW_IF_RXQ_THREAD_ANY);
Damjan Marion44036902017-04-28 12:29:15 +0200400
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100401 hw->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_INT_MODE;
Damjan Marion83243a02016-02-29 13:09:30 +0100402 vnet_hw_interface_set_flags (vnm, apif->hw_if_index,
403 VNET_HW_INTERFACE_FLAG_LINK_UP);
404
Mohammed Hawari85c19432020-12-18 16:29:45 +0100405 vnet_hw_if_set_rx_queue_mode (vnm, apif->queue_index,
406 VNET_HW_IF_RX_MODE_INTERRUPT);
407 vnet_hw_if_update_runtime_data (vnm, apif->hw_if_index);
408 {
409 clib_file_t template = { 0 };
410 template.read_function = af_packet_fd_read_ready;
411 template.file_descriptor = fd;
412 template.private_data = if_index;
413 template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED;
414 template.description =
415 format (0, "%U", format_af_packet_device_name, if_index);
416 apif->clib_file_index = clib_file_add (&file_main, &template);
417 }
418 vnet_hw_if_set_rx_queue_file_index (vnm, apif->queue_index,
419 apif->clib_file_index);
Damjan Marion44036902017-04-28 12:29:15 +0200420
Ivan Kellybfe737a2016-10-07 18:02:43 +0200421 mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index,
422 0);
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100423 if (sw_if_index)
424 *sw_if_index = apif->sw_if_index;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100425
Damjan Marion83243a02016-02-29 13:09:30 +0100426 return 0;
427
428error:
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200429 if (fd2 > -1)
jackiechen19857fa41602019-05-07 18:59:13 +0800430 {
431 close (fd2);
432 fd2 = -1;
433 }
Ivan Kellybfe737a2016-10-07 18:02:43 +0200434 vec_free (host_if_name_dup);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200435 vec_free (rx_req);
436 vec_free (tx_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100437 return ret;
438}
439
Peter Leidba76f22016-04-08 08:16:31 -0700440int
Damjan Marion00a9dca2016-08-17 17:05:46 +0200441af_packet_delete_if (vlib_main_t * vm, u8 * host_if_name)
Peter Leidba76f22016-04-08 08:16:31 -0700442{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200443 vnet_main_t *vnm = vnet_get_main ();
Peter Leidba76f22016-04-08 08:16:31 -0700444 af_packet_main_t *apm = &af_packet_main;
445 af_packet_if_t *apif;
446 uword *p;
447 uword if_index;
448 u32 ring_sz;
449
Damjan Marion00a9dca2016-08-17 17:05:46 +0200450 p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
451 if (p == NULL)
452 {
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200453 vlib_log_warn (apm->log_class, "Host interface %s does not exist",
454 host_if_name);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200455 return VNET_API_ERROR_SYSCALL_ERROR_1;
456 }
457 apif = pool_elt_at_index (apm->interfaces, p[0]);
Peter Leidba76f22016-04-08 08:16:31 -0700458 if_index = apif - apm->interfaces;
459
460 /* bring down the interface */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200461 vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0);
Peter Leidba76f22016-04-08 08:16:31 -0700462
463 /* clean up */
Damjan Marion56dd5432017-09-08 19:52:02 +0200464 if (apif->clib_file_index != ~0)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200465 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200466 clib_file_del (&file_main, file_main.file_pool + apif->clib_file_index);
467 apif->clib_file_index = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200468 }
Eyal Barif298ecf2016-09-19 18:47:39 +0300469 else
470 close (apif->fd);
471
Peter Leidba76f22016-04-08 08:16:31 -0700472 ring_sz = apif->rx_req->tp_block_size * apif->rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200473 apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr;
474 if (munmap (apif->rx_ring, ring_sz))
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200475 vlib_log_warn (apm->log_class,
476 "Host interface %s could not free rx/tx ring",
477 host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700478 apif->rx_ring = NULL;
479 apif->tx_ring = NULL;
Peter Leidba76f22016-04-08 08:16:31 -0700480 apif->fd = -1;
481
Damjan Marion00a9dca2016-08-17 17:05:46 +0200482 vec_free (apif->rx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700483 apif->rx_req = NULL;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200484 vec_free (apif->tx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700485 apif->tx_req = NULL;
486
Damjan Marion00a9dca2016-08-17 17:05:46 +0200487 vec_free (apif->host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700488 apif->host_if_name = NULL;
Ray Kinsellac855b732017-04-21 12:24:43 +0100489 apif->host_if_index = -1;
Peter Leidba76f22016-04-08 08:16:31 -0700490
Damjan Marion00a9dca2016-08-17 17:05:46 +0200491 mhash_unset (&apm->if_index_by_host_if_name, host_if_name, &if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700492
Damjan Marion00a9dca2016-08-17 17:05:46 +0200493 ethernet_delete_interface (vnm, apif->hw_if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700494
Damjan Marion00a9dca2016-08-17 17:05:46 +0200495 pool_put (apm->interfaces, apif);
Peter Leidba76f22016-04-08 08:16:31 -0700496
497 return 0;
498}
499
Jakub Grajciar92b02752017-10-20 13:37:28 +0200500int
501af_packet_set_l4_cksum_offload (vlib_main_t * vm, u32 sw_if_index, u8 set)
502{
503 vnet_main_t *vnm = vnet_get_main ();
504 vnet_hw_interface_t *hw;
505
506 hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
507
Jakub Grajciar64ae7782017-11-14 13:45:04 +0100508 if (hw->dev_class_index != af_packet_device_class.index)
509 return VNET_API_ERROR_INVALID_INTERFACE;
510
Jakub Grajciar92b02752017-10-20 13:37:28 +0200511 if (set)
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100512 {
513 hw->caps &= ~(VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM |
514 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM);
515 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200516 else
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100517 {
518 hw->caps |= (VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM |
519 VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM);
520 }
Jakub Grajciar92b02752017-10-20 13:37:28 +0200521 return 0;
522}
523
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200524int
525af_packet_dump_ifs (af_packet_if_detail_t ** out_af_packet_ifs)
526{
527 af_packet_main_t *apm = &af_packet_main;
528 af_packet_if_t *apif;
529 af_packet_if_detail_t *r_af_packet_ifs = NULL;
530 af_packet_if_detail_t *af_packet_if = NULL;
531
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200532 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100533 pool_foreach (apif, apm->interfaces)
534 {
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200535 vec_add2 (r_af_packet_ifs, af_packet_if, 1);
536 af_packet_if->sw_if_index = apif->sw_if_index;
537 if (apif->host_if_name)
538 {
539 clib_memcpy (af_packet_if->host_if_name, apif->host_if_name,
540 MIN (ARRAY_LEN (af_packet_if->host_if_name) - 1,
541 strlen ((const char *) apif->host_if_name)));
542 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100543 }
Jakub Grajciar3b2db902019-08-26 11:25:52 +0200544 /* *INDENT-ON* */
Mohsin Kazmi04e0bb22018-05-28 18:55:37 +0200545
546 *out_af_packet_ifs = r_af_packet_ifs;
547
548 return 0;
549}
550
Damjan Marion83243a02016-02-29 13:09:30 +0100551static clib_error_t *
552af_packet_init (vlib_main_t * vm)
553{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200554 af_packet_main_t *apm = &af_packet_main;
Damjan Marion553f6bd2016-09-07 11:54:22 +0200555 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100556
Dave Barachb7b92992018-10-17 10:38:51 -0400557 clib_memset (apm, 0, sizeof (af_packet_main_t));
Damjan Marion83243a02016-02-29 13:09:30 +0100558
559 mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword));
560
Damjan Marion553f6bd2016-09-07 11:54:22 +0200561 vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1,
562 CLIB_CACHE_LINE_BYTES);
563
Mohsin Kazmiacba9f72018-05-17 15:42:27 +0200564 apm->log_class = vlib_log_register_class ("af_packet", 0);
565 vlib_log_debug (apm->log_class, "initialized");
566
Damjan Marion83243a02016-02-29 13:09:30 +0100567 return 0;
568}
569
570VLIB_INIT_FUNCTION (af_packet_init);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200571
572/*
573 * fd.io coding-style-patch-verification: ON
574 *
575 * Local Variables:
576 * eval: (c-set-style "gnu")
577 * End:
578 */