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