Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 1 | /* |
| 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 Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 22 | #include <sys/ioctl.h> |
| 23 | #include <net/if.h> |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 24 | #include <dirent.h> |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 25 | #include <sys/stat.h> |
| 26 | #include <sys/types.h> |
| 27 | #include <fcntl.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 28 | |
Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 29 | #include <vppinfra/linux/sysfs.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 30 | #include <vlib/vlib.h> |
| 31 | #include <vlib/unix/unix.h> |
| 32 | #include <vnet/ip/ip.h> |
Aloys Augustin | e39376e | 2021-03-29 22:08:09 +0200 | [diff] [blame] | 33 | #include <vnet/devices/netlink.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 34 | #include <vnet/ethernet/ethernet.h> |
Mohammed Hawari | 85c1943 | 2020-12-18 16:29:45 +0100 | [diff] [blame] | 35 | #include <vnet/interface/rx_queue_funcs.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 36 | |
| 37 | #include <vnet/devices/af_packet/af_packet.h> |
| 38 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 39 | af_packet_main_t af_packet_main; |
| 40 | |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 41 | VNET_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 Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 46 | #define AF_PACKET_DEFAULT_TX_FRAMES_PER_BLOCK 1024 |
| 47 | #define AF_PACKET_DEFAULT_TX_FRAME_SIZE (2048 * 5) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 48 | #define AF_PACKET_TX_BLOCK_NR 1 |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 49 | |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 50 | #define AF_PACKET_DEFAULT_RX_FRAMES_PER_BLOCK 256 |
| 51 | #define AF_PACKET_DEFAULT_RX_FRAME_SIZE 2048 |
| 52 | #define AF_PACKET_RX_BLOCK_NR 20 |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 53 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 54 | /*defined in net/if.h but clashes with dpdk headers */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 55 | unsigned int if_nametoindex (const char *ifname); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 56 | |
Damjan Marion | 88a9c0e | 2022-01-06 21:14:08 +0100 | [diff] [blame] | 57 | static clib_error_t * |
Damjan Marion | 1cd0e5d | 2022-01-17 14:49:17 +0100 | [diff] [blame] | 58 | af_packet_eth_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hi, |
| 59 | u32 frame_size) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 60 | { |
Damjan Marion | 88a9c0e | 2022-01-06 21:14:08 +0100 | [diff] [blame] | 61 | clib_error_t *error, *rv; |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 62 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 88a9c0e | 2022-01-06 21:14:08 +0100 | [diff] [blame] | 63 | af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, hi->dev_instance); |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 64 | |
Damjan Marion | 1cd0e5d | 2022-01-17 14:49:17 +0100 | [diff] [blame] | 65 | error = vnet_netlink_set_link_mtu (apif->host_if_index, |
| 66 | frame_size + hi->frame_overhead); |
Damjan Marion | 88a9c0e | 2022-01-06 21:14:08 +0100 | [diff] [blame] | 67 | |
| 68 | if (error) |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 69 | { |
Damjan Marion | 88a9c0e | 2022-01-06 21:14:08 +0100 | [diff] [blame] | 70 | vlib_log_err (apm->log_class, "netlink failed to change MTU: %U", |
| 71 | format_clib_error, error); |
| 72 | rv = vnet_error (VNET_ERR_SYSCALL_ERROR_1, "netlink error: %U", |
| 73 | format_clib_error, error); |
| 74 | clib_error_free (error); |
| 75 | return rv; |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 76 | } |
Damjan Marion | 88a9c0e | 2022-01-06 21:14:08 +0100 | [diff] [blame] | 77 | else |
Damjan Marion | 1cd0e5d | 2022-01-17 14:49:17 +0100 | [diff] [blame] | 78 | apif->host_mtu = frame_size + hi->frame_overhead; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 79 | return 0; |
| 80 | } |
| 81 | |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 82 | static int |
| 83 | af_packet_read_mtu (af_packet_if_t *apif) |
| 84 | { |
| 85 | af_packet_main_t *apm = &af_packet_main; |
| 86 | clib_error_t *error; |
Aloys Augustin | e39376e | 2021-03-29 22:08:09 +0200 | [diff] [blame] | 87 | error = vnet_netlink_get_link_mtu (apif->host_if_index, &apif->host_mtu); |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 88 | if (error) |
| 89 | { |
Aloys Augustin | e39376e | 2021-03-29 22:08:09 +0200 | [diff] [blame] | 90 | vlib_log_err (apm->log_class, "netlink failed to get MTU: %U", |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 91 | format_clib_error, error); |
| 92 | clib_error_free (error); |
| 93 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 94 | } |
| 95 | return 0; |
| 96 | } |
| 97 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 98 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 99 | af_packet_fd_read_ready (clib_file_t * uf) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 100 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 101 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | eb743fa | 2017-03-20 16:34:15 +0100 | [diff] [blame] | 102 | vnet_main_t *vnm = vnet_get_main (); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 103 | u32 idx = uf->private_data; |
Damjan Marion | eb743fa | 2017-03-20 16:34:15 +0100 | [diff] [blame] | 104 | af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 105 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 106 | /* Schedule the rx node */ |
Mohammed Hawari | 85c1943 | 2020-12-18 16:29:45 +0100 | [diff] [blame] | 107 | vnet_hw_if_rx_queue_set_int_pending (vnm, apif->queue_index); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static int |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 112 | is_bridge (const u8 * host_if_name) |
| 113 | { |
| 114 | u8 *s; |
| 115 | DIR *dir = NULL; |
| 116 | |
| 117 | s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0); |
| 118 | dir = opendir ((char *) s); |
| 119 | vec_free (s); |
| 120 | |
| 121 | if (dir) |
| 122 | { |
| 123 | closedir (dir); |
| 124 | return 0; |
| 125 | } |
| 126 | |
| 127 | return -1; |
| 128 | } |
| 129 | |
| 130 | static int |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 131 | create_packet_v3_sock (int host_if_index, tpacket_req3_t *rx_req, |
| 132 | tpacket_req3_t *tx_req, int *fd, u8 **ring, |
| 133 | u32 *hdrlen_ptr) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 134 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 135 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 136 | struct sockaddr_ll sll; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 137 | socklen_t req_sz = sizeof (tpacket_req3_t); |
| 138 | int ret; |
| 139 | int ver = TPACKET_V3; |
| 140 | u32 hdrlen = 0; |
| 141 | u32 len = sizeof (hdrlen); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 142 | u32 ring_sz = rx_req->tp_block_size * rx_req->tp_block_nr + |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 143 | tx_req->tp_block_size * tx_req->tp_block_nr; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 144 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 145 | if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 146 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 147 | vlib_log_debug (apm->log_class, |
| 148 | "Failed to create AF_PACKET socket: %s (errno %d)", |
| 149 | strerror (errno), errno); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 150 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 151 | goto error; |
| 152 | } |
Damjan Marion | c517020 | 2017-10-11 14:15:47 +0200 | [diff] [blame] | 153 | |
Chaoyu Jin | afb1930 | 2018-03-13 07:37:41 -0700 | [diff] [blame] | 154 | /* bind before rx ring is cfged so we don't receive packets from other interfaces */ |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 155 | clib_memset (&sll, 0, sizeof (sll)); |
Chaoyu Jin | afb1930 | 2018-03-13 07:37:41 -0700 | [diff] [blame] | 156 | sll.sll_family = PF_PACKET; |
| 157 | sll.sll_protocol = htons (ETH_P_ALL); |
| 158 | sll.sll_ifindex = host_if_index; |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 159 | if (bind (*fd, (struct sockaddr *) &sll, sizeof (sll)) < 0) |
Chaoyu Jin | afb1930 | 2018-03-13 07:37:41 -0700 | [diff] [blame] | 160 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 161 | vlib_log_debug (apm->log_class, |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 162 | "Failed to bind rx packet socket: %s (errno %d)", |
| 163 | strerror (errno), errno); |
Chaoyu Jin | afb1930 | 2018-03-13 07:37:41 -0700 | [diff] [blame] | 164 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 165 | goto error; |
| 166 | } |
| 167 | |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 168 | if (setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver)) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 169 | { |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 170 | vlib_log_debug ( |
| 171 | apm->log_class, |
| 172 | "Failed to set rx packet interface version: %s (errno %d)", |
| 173 | strerror (errno), errno); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 174 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 175 | goto error; |
| 176 | } |
| 177 | |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 178 | if (getsockopt (*fd, SOL_PACKET, PACKET_HDRLEN, &hdrlen, &len) < 0) |
| 179 | { |
| 180 | vlib_log_debug ( |
| 181 | apm->log_class, |
| 182 | "Failed to get packet hdr len error handling option: %s (errno %d)", |
| 183 | strerror (errno), errno); |
| 184 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 185 | goto error; |
| 186 | } |
| 187 | else |
| 188 | *hdrlen_ptr = hdrlen; |
| 189 | |
Damjan Marion | c517020 | 2017-10-11 14:15:47 +0200 | [diff] [blame] | 190 | int opt = 1; |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 191 | if (setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt)) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 192 | { |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 193 | vlib_log_debug ( |
| 194 | apm->log_class, |
| 195 | "Failed to set packet tx ring error handling option: %s (errno %d)", |
| 196 | strerror (errno), errno); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 197 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 198 | goto error; |
| 199 | } |
| 200 | |
Florin Coras | 2dc942e | 2021-11-22 21:34:56 -0800 | [diff] [blame] | 201 | #if defined(PACKET_QDISC_BYPASS) |
| 202 | /* Introduced with Linux 3.14 so the ifdef should eventually be removed */ |
Mohammed Hawari | eed6fc9 | 2021-09-06 11:48:17 +0200 | [diff] [blame] | 203 | if (setsockopt (*fd, SOL_PACKET, PACKET_QDISC_BYPASS, &opt, sizeof (opt)) < |
| 204 | 0) |
| 205 | { |
| 206 | vlib_log_debug (apm->log_class, |
| 207 | "Failed to set qdisc bypass error " |
| 208 | "handling option: %s (errno %d)", |
| 209 | strerror (errno), errno); |
| 210 | } |
Florin Coras | 2dc942e | 2021-11-22 21:34:56 -0800 | [diff] [blame] | 211 | #endif |
Mohammed Hawari | eed6fc9 | 2021-09-06 11:48:17 +0200 | [diff] [blame] | 212 | |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 213 | if (setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 214 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 215 | vlib_log_debug (apm->log_class, |
| 216 | "Failed to set packet rx ring options: %s (errno %d)", |
| 217 | strerror (errno), errno); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 218 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 219 | goto error; |
| 220 | } |
| 221 | |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 222 | if (setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_req, req_sz) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 223 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 224 | vlib_log_debug (apm->log_class, |
| 225 | "Failed to set packet tx ring options: %s (errno %d)", |
| 226 | strerror (errno), errno); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 227 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 228 | goto error; |
| 229 | } |
| 230 | |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 231 | *ring = mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, |
| 232 | *fd, 0); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 233 | if (*ring == MAP_FAILED) |
| 234 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 235 | vlib_log_debug (apm->log_class, "mmap failure: %s (errno %d)", |
| 236 | strerror (errno), errno); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 237 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 238 | goto error; |
| 239 | } |
| 240 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 241 | return 0; |
| 242 | error: |
Dave Barach | 16ad6ae | 2016-07-28 17:55:30 -0400 | [diff] [blame] | 243 | if (*fd >= 0) |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 244 | { |
| 245 | close (*fd); |
| 246 | *fd = -1; |
| 247 | } |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | int |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 252 | af_packet_create_if (af_packet_create_if_arg_t *arg) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 253 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 254 | af_packet_main_t *apm = &af_packet_main; |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 255 | vlib_main_t *vm = vlib_get_main (); |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 256 | int ret, fd = -1, fd2 = -1; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 257 | tpacket_req3_t *rx_req = 0; |
| 258 | tpacket_req3_t *tx_req = 0; |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 259 | struct ifreq ifr; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 260 | u8 *ring = 0; |
| 261 | af_packet_if_t *apif = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 262 | u8 hw_addr[6]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 263 | vnet_sw_interface_t *sw; |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 264 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 265 | vnet_main_t *vnm = vnet_get_main (); |
| 266 | uword *p; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 267 | uword if_index; |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 268 | u8 *host_if_name_dup = 0; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 269 | int host_if_index = -1; |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 270 | u32 rx_frames_per_block, tx_frames_per_block; |
| 271 | u32 rx_frame_size, tx_frame_size; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 272 | u32 hdrlen = 0; |
| 273 | u32 i = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 274 | |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 275 | p = mhash_get (&apm->if_index_by_host_if_name, arg->host_if_name); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 276 | if (p) |
| 277 | { |
Mohsin Kazmi | 43fc688 | 2018-03-22 23:45:23 +0100 | [diff] [blame] | 278 | apif = vec_elt_at_index (apm->interfaces, p[0]); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 279 | arg->sw_if_index = apif->sw_if_index; |
Mohsin Kazmi | 43fc688 | 2018-03-22 23:45:23 +0100 | [diff] [blame] | 280 | return VNET_API_ERROR_IF_ALREADY_EXISTS; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 281 | } |
| 282 | |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 283 | host_if_name_dup = vec_dup (arg->host_if_name); |
| 284 | |
| 285 | rx_frames_per_block = arg->rx_frames_per_block ? |
| 286 | arg->rx_frames_per_block : |
| 287 | AF_PACKET_DEFAULT_RX_FRAMES_PER_BLOCK; |
| 288 | tx_frames_per_block = arg->tx_frames_per_block ? |
| 289 | arg->tx_frames_per_block : |
| 290 | AF_PACKET_DEFAULT_TX_FRAMES_PER_BLOCK; |
| 291 | rx_frame_size = |
| 292 | arg->rx_frame_size ? arg->rx_frame_size : AF_PACKET_DEFAULT_RX_FRAME_SIZE; |
| 293 | tx_frame_size = |
| 294 | arg->tx_frame_size ? arg->tx_frame_size : AF_PACKET_DEFAULT_TX_FRAME_SIZE; |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 295 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 296 | vec_validate (rx_req, 0); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 297 | rx_req->tp_block_size = rx_frame_size * rx_frames_per_block; |
| 298 | rx_req->tp_frame_size = rx_frame_size; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 299 | rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR; |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 300 | rx_req->tp_frame_nr = AF_PACKET_RX_BLOCK_NR * rx_frames_per_block; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 301 | rx_req->tp_retire_blk_tov = 0; |
| 302 | rx_req->tp_feature_req_word = 0; |
| 303 | rx_req->tp_sizeof_priv = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 304 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 305 | vec_validate (tx_req, 0); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 306 | tx_req->tp_block_size = tx_frame_size * tx_frames_per_block; |
| 307 | tx_req->tp_frame_size = tx_frame_size; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 308 | tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR; |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 309 | tx_req->tp_frame_nr = AF_PACKET_TX_BLOCK_NR * tx_frames_per_block; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 310 | tx_req->tp_retire_blk_tov = 0; |
| 311 | tx_req->tp_sizeof_priv = 0; |
| 312 | tx_req->tp_feature_req_word = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 313 | |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 314 | /* |
| 315 | * make sure host side of interface is 'UP' before binding AF_PACKET |
| 316 | * socket on it. |
| 317 | */ |
| 318 | if ((fd2 = socket (AF_UNIX, SOCK_DGRAM, 0)) < 0) |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 319 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 320 | vlib_log_debug (apm->log_class, |
| 321 | "Failed to create AF_UNIX socket: %s (errno %d)", |
| 322 | strerror (errno), errno); |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 323 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 324 | goto error; |
| 325 | } |
| 326 | |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 327 | clib_memcpy (ifr.ifr_name, (const char *) arg->host_if_name, |
| 328 | vec_len (arg->host_if_name)); |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 329 | if (ioctl (fd2, SIOCGIFINDEX, &ifr) < 0) |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 330 | { |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 331 | vlib_log_debug ( |
| 332 | apm->log_class, |
| 333 | "Failed to retrieve the interface (%s) index: %s (errno %d)", |
| 334 | arg->host_if_name, strerror (errno), errno); |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 335 | ret = VNET_API_ERROR_INVALID_INTERFACE; |
| 336 | goto error; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 337 | } |
| 338 | |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 339 | host_if_index = ifr.ifr_ifindex; |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 340 | if (ioctl (fd2, SIOCGIFFLAGS, &ifr) < 0) |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 341 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 342 | vlib_log_debug (apm->log_class, |
| 343 | "Failed to get the active flag: %s (errno %d)", |
| 344 | strerror (errno), errno); |
| 345 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 346 | goto error; |
| 347 | } |
| 348 | |
| 349 | if (!(ifr.ifr_flags & IFF_UP)) |
| 350 | { |
| 351 | ifr.ifr_flags |= IFF_UP; |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 352 | if (ioctl (fd2, SIOCSIFFLAGS, &ifr) < 0) |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 353 | { |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 354 | vlib_log_debug (apm->log_class, |
| 355 | "Failed to set the active flag: %s (errno %d)", |
| 356 | strerror (errno), errno); |
| 357 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 358 | goto error; |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | if (fd2 > -1) |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 363 | { |
| 364 | close (fd2); |
| 365 | fd2 = -1; |
| 366 | } |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 367 | |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 368 | ret = |
| 369 | create_packet_v3_sock (host_if_index, rx_req, tx_req, &fd, &ring, &hdrlen); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 370 | |
| 371 | if (ret != 0) |
| 372 | goto error; |
| 373 | |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 374 | ret = is_bridge (arg->host_if_name); |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 375 | |
| 376 | if (ret == 0) /* is a bridge, ignore state */ |
| 377 | host_if_index = -1; |
| 378 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 379 | /* So far everything looks good, let's create interface */ |
Damjan Marion | 048ee2e | 2016-03-16 22:59:21 +0100 | [diff] [blame] | 380 | pool_get (apm->interfaces, apif); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 381 | if_index = apif - apm->interfaces; |
| 382 | |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 383 | apif->host_if_index = host_if_index; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 384 | apif->fd = fd; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 385 | |
| 386 | vec_validate (apif->rx_ring, rx_req->tp_block_nr - 1); |
| 387 | vec_foreach_index (i, apif->rx_ring) |
| 388 | { |
| 389 | apif->rx_ring[i] = ring + i * rx_req->tp_block_size; |
| 390 | } |
| 391 | |
| 392 | ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr; |
| 393 | |
| 394 | vec_validate (apif->tx_ring, tx_req->tp_block_nr - 1); |
| 395 | vec_foreach_index (i, apif->tx_ring) |
| 396 | { |
| 397 | apif->tx_ring[i] = ring + i * tx_req->tp_block_size; |
| 398 | } |
| 399 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 400 | apif->rx_req = rx_req; |
| 401 | apif->tx_req = tx_req; |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 402 | apif->host_if_name = host_if_name_dup; |
Dave Barach | 13f3c45 | 2016-03-29 11:56:41 -0400 | [diff] [blame] | 403 | apif->per_interface_next_index = ~0; |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 404 | apif->next_tx_frame = 0; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 405 | apif->next_rx_block = 0; |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 406 | apif->mode = arg->mode; |
Mohsin Kazmi | 219cbcb | 2022-03-18 16:58:31 +0000 | [diff] [blame^] | 407 | apif->hdrlen = hdrlen; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 408 | |
Nathan Skrzypczak | ffc6bdc | 2021-02-01 17:13:59 +0100 | [diff] [blame] | 409 | ret = af_packet_read_mtu (apif); |
| 410 | if (ret != 0) |
| 411 | goto error; |
| 412 | |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 413 | if (tm->n_vlib_mains > 1) |
Damjan Marion | 1927da2 | 2017-03-27 17:08:20 +0200 | [diff] [blame] | 414 | clib_spinlock_init (&apif->lockp); |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 415 | |
Nathan Skrzypczak | b225b0a | 2021-10-26 16:11:38 +0200 | [diff] [blame] | 416 | if (apif->mode != AF_PACKET_IF_MODE_IP) |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 417 | { |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 418 | vnet_eth_interface_registration_t eir = {}; |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 419 | /*use configured or generate random MAC address */ |
| 420 | if (arg->hw_addr) |
| 421 | clib_memcpy (hw_addr, arg->hw_addr, 6); |
| 422 | else |
| 423 | { |
| 424 | f64 now = vlib_time_now (vm); |
| 425 | u32 rnd; |
| 426 | rnd = (u32) (now * 1e6); |
| 427 | rnd = random_u32 (&rnd); |
| 428 | |
| 429 | clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd)); |
| 430 | hw_addr[0] = 2; |
| 431 | hw_addr[1] = 0xfe; |
| 432 | } |
| 433 | |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 434 | eir.dev_class_index = af_packet_device_class.index; |
| 435 | eir.dev_instance = if_index; |
| 436 | eir.address = hw_addr; |
Damjan Marion | 1cd0e5d | 2022-01-17 14:49:17 +0100 | [diff] [blame] | 437 | eir.cb.set_max_frame_size = af_packet_eth_set_max_frame_size; |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 438 | apif->hw_if_index = vnet_eth_register_interface (vnm, &eir); |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 439 | } |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 440 | else |
| 441 | { |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 442 | apif->hw_if_index = vnet_register_interface ( |
| 443 | vnm, af_packet_device_class.index, if_index, |
| 444 | af_packet_ip_device_hw_interface_class.index, if_index); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 445 | } |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 446 | sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index); |
| 447 | apif->sw_if_index = sw->sw_if_index; |
Mohammed Hawari | 85c1943 | 2020-12-18 16:29:45 +0100 | [diff] [blame] | 448 | vnet_hw_if_set_input_node (vnm, apif->hw_if_index, |
| 449 | af_packet_input_node.index); |
| 450 | apif->queue_index = vnet_hw_if_register_rx_queue (vnm, apif->hw_if_index, 0, |
| 451 | VNET_HW_IF_RXQ_THREAD_ANY); |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 452 | |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 453 | vnet_hw_if_set_caps (vnm, apif->hw_if_index, VNET_HW_IF_CAP_INT_MODE); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 454 | vnet_hw_interface_set_flags (vnm, apif->hw_if_index, |
| 455 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
| 456 | |
Mohammed Hawari | 85c1943 | 2020-12-18 16:29:45 +0100 | [diff] [blame] | 457 | vnet_hw_if_set_rx_queue_mode (vnm, apif->queue_index, |
| 458 | VNET_HW_IF_RX_MODE_INTERRUPT); |
| 459 | vnet_hw_if_update_runtime_data (vnm, apif->hw_if_index); |
| 460 | { |
| 461 | clib_file_t template = { 0 }; |
| 462 | template.read_function = af_packet_fd_read_ready; |
| 463 | template.file_descriptor = fd; |
| 464 | template.private_data = if_index; |
| 465 | template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED; |
| 466 | template.description = |
| 467 | format (0, "%U", format_af_packet_device_name, if_index); |
| 468 | apif->clib_file_index = clib_file_add (&file_main, &template); |
| 469 | } |
| 470 | vnet_hw_if_set_rx_queue_file_index (vnm, apif->queue_index, |
| 471 | apif->clib_file_index); |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 472 | |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 473 | mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index, |
| 474 | 0); |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 475 | arg->sw_if_index = apif->sw_if_index; |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 476 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 477 | return 0; |
| 478 | |
| 479 | error: |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 480 | if (fd2 > -1) |
jackiechen1985 | 7fa4160 | 2019-05-07 18:59:13 +0800 | [diff] [blame] | 481 | { |
| 482 | close (fd2); |
| 483 | fd2 = -1; |
| 484 | } |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 485 | vec_free (host_if_name_dup); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 486 | vec_free (rx_req); |
| 487 | vec_free (tx_req); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 488 | return ret; |
| 489 | } |
| 490 | |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 491 | int |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 492 | af_packet_delete_if (u8 *host_if_name) |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 493 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 494 | vnet_main_t *vnm = vnet_get_main (); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 495 | af_packet_main_t *apm = &af_packet_main; |
| 496 | af_packet_if_t *apif; |
| 497 | uword *p; |
| 498 | uword if_index; |
| 499 | u32 ring_sz; |
| 500 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 501 | p = mhash_get (&apm->if_index_by_host_if_name, host_if_name); |
| 502 | if (p == NULL) |
| 503 | { |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 504 | vlib_log_warn (apm->log_class, "Host interface %s does not exist", |
| 505 | host_if_name); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 506 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 507 | } |
| 508 | apif = pool_elt_at_index (apm->interfaces, p[0]); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 509 | if_index = apif - apm->interfaces; |
| 510 | |
| 511 | /* bring down the interface */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 512 | vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 513 | |
| 514 | /* clean up */ |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 515 | if (apif->clib_file_index != ~0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 516 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 517 | clib_file_del (&file_main, file_main.file_pool + apif->clib_file_index); |
| 518 | apif->clib_file_index = ~0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 519 | } |
Eyal Bari | f298ecf | 2016-09-19 18:47:39 +0300 | [diff] [blame] | 520 | else |
| 521 | close (apif->fd); |
| 522 | |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 523 | ring_sz = apif->rx_req->tp_block_size * apif->rx_req->tp_block_nr + |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 524 | apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr; |
| 525 | if (munmap (apif->rx_ring, ring_sz)) |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 526 | vlib_log_warn (apm->log_class, |
| 527 | "Host interface %s could not free rx/tx ring", |
| 528 | host_if_name); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 529 | apif->rx_ring = NULL; |
| 530 | apif->tx_ring = NULL; |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 531 | apif->fd = -1; |
| 532 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 533 | vec_free (apif->rx_req); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 534 | apif->rx_req = NULL; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 535 | vec_free (apif->tx_req); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 536 | apif->tx_req = NULL; |
| 537 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 538 | vec_free (apif->host_if_name); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 539 | apif->host_if_name = NULL; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 540 | apif->host_if_index = -1; |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 541 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 542 | mhash_unset (&apm->if_index_by_host_if_name, host_if_name, &if_index); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 543 | |
Nathan Skrzypczak | b225b0a | 2021-10-26 16:11:38 +0200 | [diff] [blame] | 544 | if (apif->mode != AF_PACKET_IF_MODE_IP) |
Mohsin Kazmi | cae84fa | 2021-10-08 15:10:49 +0000 | [diff] [blame] | 545 | ethernet_delete_interface (vnm, apif->hw_if_index); |
| 546 | else |
| 547 | vnet_delete_hw_interface (vnm, apif->hw_if_index); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 548 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 549 | pool_put (apm->interfaces, apif); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 550 | |
| 551 | return 0; |
| 552 | } |
| 553 | |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 554 | int |
Nathan Skrzypczak | 7d0e30b | 2021-06-23 11:28:39 +0200 | [diff] [blame] | 555 | af_packet_set_l4_cksum_offload (u32 sw_if_index, u8 set) |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 556 | { |
| 557 | vnet_main_t *vnm = vnet_get_main (); |
| 558 | vnet_hw_interface_t *hw; |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 559 | vnet_hw_if_caps_t caps = |
| 560 | VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM; |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 561 | hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 562 | |
Jakub Grajciar | 64ae778 | 2017-11-14 13:45:04 +0100 | [diff] [blame] | 563 | if (hw->dev_class_index != af_packet_device_class.index) |
| 564 | return VNET_API_ERROR_INVALID_INTERFACE; |
| 565 | |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 566 | if (set) |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 567 | vnet_hw_if_set_caps (vnm, hw->hw_if_index, caps); |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 568 | else |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 569 | vnet_hw_if_unset_caps (vnm, hw->hw_if_index, caps); |
| 570 | |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 571 | return 0; |
| 572 | } |
| 573 | |
Mohsin Kazmi | 04e0bb2 | 2018-05-28 18:55:37 +0200 | [diff] [blame] | 574 | int |
| 575 | af_packet_dump_ifs (af_packet_if_detail_t ** out_af_packet_ifs) |
| 576 | { |
| 577 | af_packet_main_t *apm = &af_packet_main; |
| 578 | af_packet_if_t *apif; |
| 579 | af_packet_if_detail_t *r_af_packet_ifs = NULL; |
| 580 | af_packet_if_detail_t *af_packet_if = NULL; |
| 581 | |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 582 | pool_foreach (apif, apm->interfaces) |
| 583 | { |
Jakub Grajciar | 3b2db90 | 2019-08-26 11:25:52 +0200 | [diff] [blame] | 584 | vec_add2 (r_af_packet_ifs, af_packet_if, 1); |
| 585 | af_packet_if->sw_if_index = apif->sw_if_index; |
| 586 | if (apif->host_if_name) |
| 587 | { |
| 588 | clib_memcpy (af_packet_if->host_if_name, apif->host_if_name, |
| 589 | MIN (ARRAY_LEN (af_packet_if->host_if_name) - 1, |
| 590 | strlen ((const char *) apif->host_if_name))); |
| 591 | } |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 592 | } |
Mohsin Kazmi | 04e0bb2 | 2018-05-28 18:55:37 +0200 | [diff] [blame] | 593 | |
| 594 | *out_af_packet_ifs = r_af_packet_ifs; |
| 595 | |
| 596 | return 0; |
| 597 | } |
| 598 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 599 | static clib_error_t * |
| 600 | af_packet_init (vlib_main_t * vm) |
| 601 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 602 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 553f6bd | 2016-09-07 11:54:22 +0200 | [diff] [blame] | 603 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 604 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 605 | clib_memset (apm, 0, sizeof (af_packet_main_t)); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 606 | |
| 607 | mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword)); |
| 608 | |
Damjan Marion | 553f6bd | 2016-09-07 11:54:22 +0200 | [diff] [blame] | 609 | vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1, |
| 610 | CLIB_CACHE_LINE_BYTES); |
| 611 | |
Mohsin Kazmi | acba9f7 | 2018-05-17 15:42:27 +0200 | [diff] [blame] | 612 | apm->log_class = vlib_log_register_class ("af_packet", 0); |
| 613 | vlib_log_debug (apm->log_class, "initialized"); |
| 614 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 615 | return 0; |
| 616 | } |
| 617 | |
| 618 | VLIB_INIT_FUNCTION (af_packet_init); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 619 | |
| 620 | /* |
| 621 | * fd.io coding-style-patch-verification: ON |
| 622 | * |
| 623 | * Local Variables: |
| 624 | * eval: (c-set-style "gnu") |
| 625 | * End: |
| 626 | */ |