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