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> |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 22 | #include <dirent.h> |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
| 25 | #include <fcntl.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 26 | |
Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 27 | #include <vppinfra/linux/sysfs.h> |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 28 | #include <vlib/vlib.h> |
| 29 | #include <vlib/unix/unix.h> |
| 30 | #include <vnet/ip/ip.h> |
| 31 | #include <vnet/ethernet/ethernet.h> |
| 32 | |
| 33 | #include <vnet/devices/af_packet/af_packet.h> |
| 34 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 35 | af_packet_main_t af_packet_main; |
| 36 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 37 | #define AF_PACKET_DEBUG_SOCKET 0 |
| 38 | |
| 39 | #define AF_PACKET_TX_FRAMES_PER_BLOCK 1024 |
| 40 | #define AF_PACKET_TX_FRAME_SIZE (2048 * 5) |
| 41 | #define AF_PACKET_TX_BLOCK_NR 1 |
| 42 | #define AF_PACKET_TX_FRAME_NR (AF_PACKET_TX_BLOCK_NR * \ |
| 43 | AF_PACKET_TX_FRAMES_PER_BLOCK) |
| 44 | #define AF_PACKET_TX_BLOCK_SIZE (AF_PACKET_TX_FRAME_SIZE * \ |
| 45 | AF_PACKET_TX_FRAMES_PER_BLOCK) |
| 46 | |
| 47 | #define AF_PACKET_RX_FRAMES_PER_BLOCK 1024 |
| 48 | #define AF_PACKET_RX_FRAME_SIZE (2048 * 5) |
| 49 | #define AF_PACKET_RX_BLOCK_NR 1 |
| 50 | #define AF_PACKET_RX_FRAME_NR (AF_PACKET_RX_BLOCK_NR * \ |
| 51 | AF_PACKET_RX_FRAMES_PER_BLOCK) |
| 52 | #define AF_PACKET_RX_BLOCK_SIZE (AF_PACKET_RX_FRAME_SIZE * \ |
| 53 | AF_PACKET_RX_FRAMES_PER_BLOCK) |
| 54 | |
| 55 | #if AF_PACKET_DEBUG_SOCKET == 1 |
| 56 | #define DBG_SOCK(args...) clib_warning(args); |
| 57 | #else |
| 58 | #define DBG_SOCK(args...) |
| 59 | #endif |
| 60 | |
| 61 | /*defined in net/if.h but clashes with dpdk headers */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 62 | unsigned int if_nametoindex (const char *ifname); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 63 | |
| 64 | typedef struct tpacket_req tpacket_req_t; |
| 65 | |
| 66 | static u32 |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 67 | af_packet_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, |
| 68 | u32 flags) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 69 | { |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 70 | clib_error_t *error; |
| 71 | u8 *s; |
| 72 | af_packet_main_t *apm = &af_packet_main; |
| 73 | af_packet_if_t *apif = |
| 74 | pool_elt_at_index (apm->interfaces, hi->dev_instance); |
| 75 | |
| 76 | if (ETHERNET_INTERFACE_FLAG_MTU == (flags & ETHERNET_INTERFACE_FLAG_MTU)) |
| 77 | { |
| 78 | s = format (0, "/sys/class/net/%s/mtu%c", apif->host_if_name, 0); |
| 79 | |
Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 80 | error = clib_sysfs_write ((char *) s, "%d", hi->max_packet_bytes); |
Ray Kinsella | 7bfa119 | 2017-05-15 11:52:43 +0100 | [diff] [blame] | 81 | vec_free (s); |
| 82 | |
| 83 | if (error) |
| 84 | { |
| 85 | clib_error_report (error); |
| 86 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 87 | } |
| 88 | } |
| 89 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 90 | return 0; |
| 91 | } |
| 92 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 93 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 94 | af_packet_fd_read_ready (clib_file_t * uf) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 95 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 96 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | eb743fa | 2017-03-20 16:34:15 +0100 | [diff] [blame] | 97 | vnet_main_t *vnm = vnet_get_main (); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 98 | u32 idx = uf->private_data; |
Damjan Marion | eb743fa | 2017-03-20 16:34:15 +0100 | [diff] [blame] | 99 | af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx); |
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 | apm->pending_input_bitmap = |
| 102 | clib_bitmap_set (apm->pending_input_bitmap, idx, 1); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 103 | |
| 104 | /* Schedule the rx node */ |
Damjan Marion | eb743fa | 2017-03-20 16:34:15 +0100 | [diff] [blame] | 105 | vnet_device_input_set_interrupt_pending (vnm, apif->hw_if_index, 0); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 106 | |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | static int |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 111 | is_bridge (const u8 * host_if_name) |
| 112 | { |
| 113 | u8 *s; |
| 114 | DIR *dir = NULL; |
| 115 | |
| 116 | s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0); |
| 117 | dir = opendir ((char *) s); |
| 118 | vec_free (s); |
| 119 | |
| 120 | if (dir) |
| 121 | { |
| 122 | closedir (dir); |
| 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | return -1; |
| 127 | } |
| 128 | |
| 129 | static int |
| 130 | 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] | 131 | tpacket_req_t * tx_req, int *fd, u8 ** ring) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 132 | { |
| 133 | int ret, err; |
| 134 | struct sockaddr_ll sll; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 135 | int ver = TPACKET_V2; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 136 | socklen_t req_sz = sizeof (struct tpacket_req); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 137 | 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] | 138 | tx_req->tp_block_size * tx_req->tp_block_nr; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 139 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 140 | if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 141 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 142 | DBG_SOCK ("Failed to create socket"); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 143 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 144 | goto error; |
| 145 | } |
Damjan Marion | c517020 | 2017-10-11 14:15:47 +0200 | [diff] [blame] | 146 | |
Chaoyu Jin | afb1930 | 2018-03-13 07:37:41 -0700 | [diff] [blame^] | 147 | /* bind before rx ring is cfged so we don't receive packets from other interfaces */ |
| 148 | memset (&sll, 0, sizeof (sll)); |
| 149 | sll.sll_family = PF_PACKET; |
| 150 | sll.sll_protocol = htons (ETH_P_ALL); |
| 151 | sll.sll_ifindex = host_if_index; |
| 152 | if ((err = bind (*fd, (struct sockaddr *) &sll, sizeof (sll))) < 0) |
| 153 | { |
| 154 | DBG_SOCK ("Failed to bind rx packet socket (error %d)", err); |
| 155 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 156 | goto error; |
| 157 | } |
| 158 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 159 | if ((err = |
| 160 | setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver))) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 161 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 162 | DBG_SOCK ("Failed to set rx packet interface version"); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 163 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 164 | goto error; |
| 165 | } |
| 166 | |
Damjan Marion | c517020 | 2017-10-11 14:15:47 +0200 | [diff] [blame] | 167 | int opt = 1; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 168 | if ((err = |
| 169 | setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt))) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 170 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 171 | DBG_SOCK ("Failed to set packet tx ring error handling option"); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 172 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 173 | goto error; |
| 174 | } |
| 175 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 176 | if ((err = |
| 177 | setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz)) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 178 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 179 | DBG_SOCK ("Failed to set packet rx ring options"); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 180 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 181 | goto error; |
| 182 | } |
| 183 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 184 | if ((err = |
| 185 | setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_req, req_sz)) < 0) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 186 | { |
zhaoqingling | d363833 | 2018-01-05 13:33:37 +0800 | [diff] [blame] | 187 | DBG_SOCK ("Failed to set packet tx ring options"); |
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 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 192 | *ring = |
| 193 | mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, *fd, |
| 194 | 0); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 195 | if (*ring == MAP_FAILED) |
| 196 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 197 | DBG_SOCK ("mmap failure"); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 198 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 199 | goto error; |
| 200 | } |
| 201 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 202 | return 0; |
| 203 | error: |
Dave Barach | 16ad6ae | 2016-07-28 17:55:30 -0400 | [diff] [blame] | 204 | if (*fd >= 0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 205 | close (*fd); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 206 | *fd = -1; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 207 | return ret; |
| 208 | } |
| 209 | |
| 210 | int |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 211 | af_packet_create_if (vlib_main_t * vm, u8 * host_if_name, u8 * hw_addr_set, |
| 212 | u32 * sw_if_index) |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 213 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 214 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 215 | int ret, fd = -1; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 216 | struct tpacket_req *rx_req = 0; |
| 217 | struct tpacket_req *tx_req = 0; |
| 218 | u8 *ring = 0; |
| 219 | af_packet_if_t *apif = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 220 | u8 hw_addr[6]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 221 | clib_error_t *error; |
| 222 | vnet_sw_interface_t *sw; |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 223 | vnet_hw_interface_t *hw; |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 224 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 225 | vnet_main_t *vnm = vnet_get_main (); |
| 226 | uword *p; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 227 | uword if_index; |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 228 | u8 *host_if_name_dup = vec_dup (host_if_name); |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 229 | int host_if_index = -1; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 230 | |
| 231 | p = mhash_get (&apm->if_index_by_host_if_name, host_if_name); |
| 232 | if (p) |
| 233 | { |
| 234 | return VNET_API_ERROR_SUBIF_ALREADY_EXISTS; |
| 235 | } |
| 236 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 237 | vec_validate (rx_req, 0); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 238 | rx_req->tp_block_size = AF_PACKET_RX_BLOCK_SIZE; |
| 239 | rx_req->tp_frame_size = AF_PACKET_RX_FRAME_SIZE; |
| 240 | rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR; |
| 241 | rx_req->tp_frame_nr = AF_PACKET_RX_FRAME_NR; |
| 242 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 243 | vec_validate (tx_req, 0); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 244 | tx_req->tp_block_size = AF_PACKET_TX_BLOCK_SIZE; |
| 245 | tx_req->tp_frame_size = AF_PACKET_TX_FRAME_SIZE; |
| 246 | tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR; |
| 247 | tx_req->tp_frame_nr = AF_PACKET_TX_FRAME_NR; |
| 248 | |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 249 | host_if_index = if_nametoindex ((const char *) host_if_name); |
| 250 | |
| 251 | if (!host_if_index) |
| 252 | { |
| 253 | DBG_SOCK ("Wrong host interface name"); |
| 254 | return VNET_API_ERROR_INVALID_INTERFACE; |
| 255 | } |
| 256 | |
| 257 | 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] | 258 | |
| 259 | if (ret != 0) |
| 260 | goto error; |
| 261 | |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 262 | ret = is_bridge (host_if_name); |
| 263 | |
| 264 | if (ret == 0) /* is a bridge, ignore state */ |
| 265 | host_if_index = -1; |
| 266 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 267 | /* So far everything looks good, let's create interface */ |
Damjan Marion | 048ee2e | 2016-03-16 22:59:21 +0100 | [diff] [blame] | 268 | pool_get (apm->interfaces, apif); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 269 | if_index = apif - apm->interfaces; |
| 270 | |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 271 | apif->host_if_index = host_if_index; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 272 | apif->fd = fd; |
| 273 | apif->rx_ring = ring; |
| 274 | apif->tx_ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr; |
| 275 | apif->rx_req = rx_req; |
| 276 | apif->tx_req = tx_req; |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 277 | apif->host_if_name = host_if_name_dup; |
Dave Barach | 13f3c45 | 2016-03-29 11:56:41 -0400 | [diff] [blame] | 278 | apif->per_interface_next_index = ~0; |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 279 | apif->next_tx_frame = 0; |
| 280 | apif->next_rx_frame = 0; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 281 | |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 282 | if (tm->n_vlib_mains > 1) |
Damjan Marion | 1927da2 | 2017-03-27 17:08:20 +0200 | [diff] [blame] | 283 | clib_spinlock_init (&apif->lockp); |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 284 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 285 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 286 | clib_file_t template = { 0 }; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 287 | template.read_function = af_packet_fd_read_ready; |
| 288 | template.file_descriptor = fd; |
| 289 | template.private_data = if_index; |
| 290 | template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 291 | template.description = format (0, "%U", format_af_packet_device_name, |
| 292 | if_index); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 293 | apif->clib_file_index = clib_file_add (&file_main, &template); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /*use configured or generate random MAC address */ |
| 297 | if (hw_addr_set) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 298 | clib_memcpy (hw_addr, hw_addr_set, 6); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 299 | else |
| 300 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 301 | f64 now = vlib_time_now (vm); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 302 | u32 rnd; |
| 303 | rnd = (u32) (now * 1e6); |
| 304 | rnd = random_u32 (&rnd); |
| 305 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 306 | clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd)); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 307 | hw_addr[0] = 2; |
| 308 | hw_addr[1] = 0xfe; |
| 309 | } |
| 310 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 311 | error = ethernet_register_interface (vnm, af_packet_device_class.index, |
| 312 | if_index, hw_addr, &apif->hw_if_index, |
| 313 | af_packet_eth_flag_change); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 314 | |
| 315 | if (error) |
| 316 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 317 | memset (apif, 0, sizeof (*apif)); |
| 318 | pool_put (apm->interfaces, apif); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 319 | clib_error_report (error); |
| 320 | ret = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 321 | goto error; |
| 322 | } |
| 323 | |
| 324 | sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index); |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 325 | hw = vnet_get_hw_interface (vnm, apif->hw_if_index); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 326 | apif->sw_if_index = sw->sw_if_index; |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 327 | vnet_hw_interface_set_input_node (vnm, apif->hw_if_index, |
| 328 | af_packet_input_node.index); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 329 | |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 330 | vnet_hw_interface_assign_rx_thread (vnm, apif->hw_if_index, 0, /* queue */ |
| 331 | ~0 /* any cpu */ ); |
| 332 | |
| 333 | hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE; |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 334 | vnet_hw_interface_set_flags (vnm, apif->hw_if_index, |
| 335 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
| 336 | |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 337 | vnet_hw_interface_set_rx_mode (vnm, apif->hw_if_index, 0, |
| 338 | VNET_HW_INTERFACE_RX_MODE_INTERRUPT); |
| 339 | |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 340 | mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index, |
| 341 | 0); |
Pierre Pfister | 78ea9c2 | 2016-05-23 12:51:54 +0100 | [diff] [blame] | 342 | if (sw_if_index) |
| 343 | *sw_if_index = apif->sw_if_index; |
Mohsin KAZMI | cf751ec | 2017-01-18 11:59:45 +0100 | [diff] [blame] | 344 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 345 | return 0; |
| 346 | |
| 347 | error: |
Ivan Kelly | bfe737a | 2016-10-07 18:02:43 +0200 | [diff] [blame] | 348 | vec_free (host_if_name_dup); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 349 | vec_free (rx_req); |
| 350 | vec_free (tx_req); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 351 | return ret; |
| 352 | } |
| 353 | |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 354 | int |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 355 | af_packet_delete_if (vlib_main_t * vm, u8 * host_if_name) |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 356 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 357 | vnet_main_t *vnm = vnet_get_main (); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 358 | af_packet_main_t *apm = &af_packet_main; |
| 359 | af_packet_if_t *apif; |
| 360 | uword *p; |
| 361 | uword if_index; |
| 362 | u32 ring_sz; |
| 363 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 364 | p = mhash_get (&apm->if_index_by_host_if_name, host_if_name); |
| 365 | if (p == NULL) |
| 366 | { |
| 367 | clib_warning ("Host interface %s does not exist", host_if_name); |
| 368 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
| 369 | } |
| 370 | apif = pool_elt_at_index (apm->interfaces, p[0]); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 371 | if_index = apif - apm->interfaces; |
| 372 | |
| 373 | /* bring down the interface */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 374 | vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0); |
Damjan Marion | 4403690 | 2017-04-28 12:29:15 +0200 | [diff] [blame] | 375 | vnet_hw_interface_unassign_rx_thread (vnm, apif->hw_if_index, 0); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 376 | |
| 377 | /* clean up */ |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 378 | if (apif->clib_file_index != ~0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 379 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 380 | clib_file_del (&file_main, file_main.file_pool + apif->clib_file_index); |
| 381 | apif->clib_file_index = ~0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 382 | } |
Eyal Bari | f298ecf | 2016-09-19 18:47:39 +0300 | [diff] [blame] | 383 | else |
| 384 | close (apif->fd); |
| 385 | |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 386 | 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] | 387 | apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr; |
| 388 | if (munmap (apif->rx_ring, ring_sz)) |
| 389 | clib_warning ("Host interface %s could not free rx/tx ring", |
| 390 | host_if_name); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 391 | apif->rx_ring = NULL; |
| 392 | apif->tx_ring = NULL; |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 393 | apif->fd = -1; |
| 394 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 395 | vec_free (apif->rx_req); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 396 | apif->rx_req = NULL; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 397 | vec_free (apif->tx_req); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 398 | apif->tx_req = NULL; |
| 399 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 400 | vec_free (apif->host_if_name); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 401 | apif->host_if_name = NULL; |
Ray Kinsella | c855b73 | 2017-04-21 12:24:43 +0100 | [diff] [blame] | 402 | apif->host_if_index = -1; |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 403 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 404 | 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] | 405 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 406 | ethernet_delete_interface (vnm, apif->hw_if_index); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 407 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 408 | pool_put (apm->interfaces, apif); |
Peter Lei | dba76f2 | 2016-04-08 08:16:31 -0700 | [diff] [blame] | 409 | |
| 410 | return 0; |
| 411 | } |
| 412 | |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 413 | int |
| 414 | af_packet_set_l4_cksum_offload (vlib_main_t * vm, u32 sw_if_index, u8 set) |
| 415 | { |
| 416 | vnet_main_t *vnm = vnet_get_main (); |
| 417 | vnet_hw_interface_t *hw; |
| 418 | |
| 419 | hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 420 | |
Jakub Grajciar | 64ae778 | 2017-11-14 13:45:04 +0100 | [diff] [blame] | 421 | if (hw->dev_class_index != af_packet_device_class.index) |
| 422 | return VNET_API_ERROR_INVALID_INTERFACE; |
| 423 | |
Jakub Grajciar | 92b0275 | 2017-10-20 13:37:28 +0200 | [diff] [blame] | 424 | if (set) |
| 425 | hw->flags &= ~VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD; |
| 426 | else |
| 427 | hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD; |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 432 | static clib_error_t * |
| 433 | af_packet_init (vlib_main_t * vm) |
| 434 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 435 | af_packet_main_t *apm = &af_packet_main; |
Damjan Marion | 553f6bd | 2016-09-07 11:54:22 +0200 | [diff] [blame] | 436 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 437 | |
| 438 | memset (apm, 0, sizeof (af_packet_main_t)); |
| 439 | |
| 440 | mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword)); |
| 441 | |
Damjan Marion | 553f6bd | 2016-09-07 11:54:22 +0200 | [diff] [blame] | 442 | vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1, |
| 443 | CLIB_CACHE_LINE_BYTES); |
| 444 | |
Damjan Marion | 83243a0 | 2016-02-29 13:09:30 +0100 | [diff] [blame] | 445 | return 0; |
| 446 | } |
| 447 | |
| 448 | VLIB_INIT_FUNCTION (af_packet_init); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 449 | |
| 450 | /* |
| 451 | * fd.io coding-style-patch-verification: ON |
| 452 | * |
| 453 | * Local Variables: |
| 454 | * eval: (c-set-style "gnu") |
| 455 | * End: |
| 456 | */ |