Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * Copyright (c) 2017 Cisco and/or its affiliates. |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | *------------------------------------------------------------------ |
| 16 | */ |
| 17 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 18 | #define _GNU_SOURCE |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 19 | #include <sys/types.h> |
| 20 | #include <sys/stat.h> |
Alexander Chernavin | a6c34a1 | 2020-09-04 09:24:20 -0400 | [diff] [blame] | 21 | #include <sys/socket.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 22 | #include <fcntl.h> |
| 23 | #include <net/if.h> |
| 24 | #include <linux/if_tun.h> |
| 25 | #include <sys/ioctl.h> |
Alexander Chernavin | a6c34a1 | 2020-09-04 09:24:20 -0400 | [diff] [blame] | 26 | #include <linux/ethtool.h> |
| 27 | #include <linux/sockios.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 28 | #include <sys/eventfd.h> |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 29 | #include <net/if_arp.h> |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 30 | #include <limits.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 31 | |
| 32 | #include <linux/netlink.h> |
| 33 | #include <linux/rtnetlink.h> |
| 34 | |
| 35 | #include <vlib/vlib.h> |
Lijian.Zhang | ba0da57 | 2019-08-21 17:51:16 +0800 | [diff] [blame] | 36 | #include <vlib/physmem.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 37 | #include <vlib/unix/unix.h> |
Nathan Skrzypczak | 4cef6de | 2021-07-19 18:21:43 +0200 | [diff] [blame] | 38 | #include <vppinfra/linux/netns.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 39 | #include <vnet/ethernet/ethernet.h> |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 40 | #include <vnet/ip/ip4_packet.h> |
| 41 | #include <vnet/ip/ip6_packet.h> |
Damjan Marion | 17fdae7 | 2017-11-30 20:56:37 +0100 | [diff] [blame] | 42 | #include <vnet/devices/netlink.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 43 | #include <vnet/devices/virtio/virtio.h> |
Damjan Marion | c99b4cd | 2017-12-04 15:25:58 +0100 | [diff] [blame] | 44 | #include <vnet/devices/tap/tap.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 45 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 46 | tap_main_t tap_main; |
| 47 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 48 | #define tap_log_err(dev, f, ...) \ |
| 49 | vlib_log (VLIB_LOG_LEVEL_ERR, tap_main.log_default, "tap%u: " f, dev->dev_instance, ## __VA_ARGS__) |
| 50 | #define tap_log_dbg(dev, f, ...) \ |
| 51 | vlib_log (VLIB_LOG_LEVEL_DEBUG, tap_main.log_default, "tap%u: " f, dev->dev_instance, ## __VA_ARGS__) |
| 52 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 53 | #define _IOCTL(fd,a,...) \ |
| 54 | if (ioctl (fd, a, __VA_ARGS__) < 0) \ |
| 55 | { \ |
| 56 | err = clib_error_return_unix (0, "ioctl(" #a ")"); \ |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 57 | tap_log_err (vif, "%U", format_clib_error, err); \ |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 58 | goto error; \ |
| 59 | } |
| 60 | |
Mohsin Kazmi | 0d05c0d | 2021-11-09 17:44:10 +0000 | [diff] [blame] | 61 | VNET_HW_INTERFACE_CLASS (tun_device_hw_interface_class, static) = { |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 62 | .name = "tun-device", |
| 63 | .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P, |
Mohsin Kazmi | 0d05c0d | 2021-11-09 17:44:10 +0000 | [diff] [blame] | 64 | .tx_hash_fn_type = VNET_HASH_FN_TYPE_IP, |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 65 | }; |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 66 | |
Neale Ranns | 0cc23b7 | 2021-05-20 16:09:40 +0000 | [diff] [blame] | 67 | #define TUN_MAX_PACKET_BYTES 65355 |
| 68 | #define TUN_MIN_PACKET_BYTES 64 |
| 69 | #define TUN_DEFAULT_PACKET_BYTES 1500 |
| 70 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 71 | static u32 |
| 72 | virtio_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, |
| 73 | u32 flags) |
| 74 | { |
| 75 | /* nothing for now */ |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 76 | //TODO On MTU change call vnet_netlink_set_if_mtu |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 77 | return 0; |
| 78 | } |
| 79 | |
Artem Glazychev | 66593a6 | 2022-02-18 12:23:20 +0700 | [diff] [blame] | 80 | static clib_error_t * |
| 81 | virtio_eth_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hi, |
| 82 | u32 frame_size) |
| 83 | { |
| 84 | /* nothing for now */ |
| 85 | return 0; |
| 86 | } |
| 87 | |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 88 | #define TAP_MAX_INSTANCE 1024 |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 89 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 90 | static void |
| 91 | tap_free (vlib_main_t * vm, virtio_if_t * vif) |
| 92 | { |
| 93 | virtio_main_t *mm = &virtio_main; |
| 94 | tap_main_t *tm = &tap_main; |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 95 | clib_error_t *err = 0; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 96 | int i; |
| 97 | |
Mohsin Kazmi | b7e4e6d | 2021-12-13 18:32:42 +0000 | [diff] [blame] | 98 | virtio_pre_input_node_disable (vm, vif); |
| 99 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 100 | vec_foreach_index (i, vif->vhost_fds) if (vif->vhost_fds[i] != -1) |
| 101 | close (vif->vhost_fds[i]); |
| 102 | vec_foreach_index (i, vif->rxq_vrings) |
| 103 | virtio_vring_free_rx (vm, vif, RX_QUEUE (i)); |
| 104 | vec_foreach_index (i, vif->txq_vrings) |
| 105 | virtio_vring_free_tx (vm, vif, TX_QUEUE (i)); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 106 | |
Mohsin Kazmi | 108b15b | 2020-10-28 19:35:53 +0100 | [diff] [blame] | 107 | if (vif->tap_fds) |
| 108 | { |
| 109 | _IOCTL (vif->tap_fds[0], TUNSETPERSIST, (void *) (uintptr_t) 0); |
| 110 | tap_log_dbg (vif, "TUNSETPERSIST: unset"); |
| 111 | } |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 112 | error: |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 113 | vec_foreach_index (i, vif->tap_fds) close (vif->tap_fds[i]); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 114 | |
Mohsin Kazmi | efd967f | 2021-10-01 12:34:42 +0200 | [diff] [blame] | 115 | vec_free (vif->tap_fds); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 116 | vec_free (vif->vhost_fds); |
| 117 | vec_free (vif->rxq_vrings); |
| 118 | vec_free (vif->txq_vrings); |
| 119 | vec_free (vif->host_if_name); |
| 120 | vec_free (vif->net_ns); |
| 121 | vec_free (vif->host_bridge); |
| 122 | clib_error_free (vif->error); |
| 123 | |
| 124 | tm->tap_ids = clib_bitmap_set (tm->tap_ids, vif->id, 0); |
| 125 | clib_memset (vif, 0, sizeof (*vif)); |
| 126 | pool_put (mm->interfaces, vif); |
| 127 | } |
| 128 | |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 129 | void |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 130 | tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args) |
| 131 | { |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 132 | vlib_thread_main_t *thm = vlib_get_thread_main (); |
Lijian.Zhang | ba0da57 | 2019-08-21 17:51:16 +0800 | [diff] [blame] | 133 | vlib_physmem_main_t *vpm = &vm->physmem_main; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 134 | vnet_main_t *vnm = vnet_get_main (); |
| 135 | virtio_main_t *vim = &virtio_main; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 136 | tap_main_t *tm = &tap_main; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 137 | vnet_sw_interface_t *sw; |
| 138 | vnet_hw_interface_t *hw; |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 139 | vnet_hw_if_caps_change_t cc; |
Mohsin Kazmi | 4834a66 | 2020-07-06 18:03:41 +0000 | [diff] [blame] | 140 | int i, num_vhost_queues; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 141 | int old_netns_fd = -1; |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 142 | struct ifreq ifr = {.ifr_flags = IFF_NO_PI | IFF_VNET_HDR }; |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 143 | struct ifreq get_ifr = {.ifr_flags = 0 }; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 144 | size_t hdrsz; |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 145 | vhost_memory_t *vhost_mem = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 146 | virtio_if_t *vif = 0; |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 147 | clib_error_t *err = 0; |
Damjan Marion | 39807d0 | 2019-11-08 13:52:28 +0100 | [diff] [blame] | 148 | unsigned int tap_features; |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 149 | int tfd = -1, qfd = -1, vfd = -1, nfd = -1; |
Mohsin Kazmi | 19b697f | 2019-07-29 13:21:17 +0200 | [diff] [blame] | 150 | char *host_if_name = 0; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 151 | unsigned int offload = 0; |
Mohsin Kazmi | 4834a66 | 2020-07-06 18:03:41 +0000 | [diff] [blame] | 152 | int sndbuf = 0; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 153 | |
| 154 | if (args->id != ~0) |
| 155 | { |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 156 | if (clib_bitmap_get (tm->tap_ids, args->id)) |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 157 | { |
| 158 | args->rv = VNET_API_ERROR_INVALID_INTERFACE; |
| 159 | args->error = clib_error_return (0, "interface already exists"); |
| 160 | return; |
| 161 | } |
| 162 | } |
| 163 | else |
| 164 | { |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 165 | args->id = clib_bitmap_first_clear (tm->tap_ids); |
| 166 | } |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 167 | |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 168 | if (args->id > TAP_MAX_INSTANCE) |
| 169 | { |
| 170 | args->rv = VNET_API_ERROR_UNSPECIFIED; |
| 171 | args->error = clib_error_return (0, "cannot find free interface id"); |
| 172 | return; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 173 | } |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 174 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 175 | pool_get_zero (vim->interfaces, vif); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 176 | |
| 177 | if (args->tap_flags & TAP_FLAG_TUN) |
| 178 | { |
| 179 | vif->type = VIRTIO_IF_TYPE_TUN; |
| 180 | ifr.ifr_flags |= IFF_TUN; |
Mohsin Kazmi | 4834a66 | 2020-07-06 18:03:41 +0000 | [diff] [blame] | 181 | |
| 182 | /* |
| 183 | * From kernel 4.20, xdp support has been added in tun_sendmsg. |
| 184 | * If sndbuf == INT_MAX, vhost batches the packet and processes |
| 185 | * them using xdp data path for tun driver. It assumes packets |
| 186 | * are ethernet frames (It needs to be fixed). |
| 187 | * To avoid xdp data path in tun driver, sndbuf value should |
| 188 | * be < INT_MAX. |
| 189 | */ |
| 190 | sndbuf = INT_MAX - 1; |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 191 | } |
| 192 | else |
| 193 | { |
| 194 | vif->type = VIRTIO_IF_TYPE_TAP; |
| 195 | ifr.ifr_flags |= IFF_TAP; |
Mohsin Kazmi | 4834a66 | 2020-07-06 18:03:41 +0000 | [diff] [blame] | 196 | sndbuf = INT_MAX; |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 197 | } |
| 198 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 199 | vif->dev_instance = vif - vim->interfaces; |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 200 | vif->id = args->id; |
Nathan Skrzypczak | 40edaf6 | 2021-12-15 18:45:59 +0100 | [diff] [blame] | 201 | vif->num_txqs = clib_max (args->num_tx_queues, thm->n_vlib_mains); |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 202 | vif->num_rxqs = clib_max (args->num_rx_queues, 1); |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 203 | |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 204 | if (args->tap_flags & TAP_FLAG_ATTACH) |
| 205 | { |
Duncan Eastoe | 764a878 | 2021-09-08 19:11:33 +0100 | [diff] [blame] | 206 | if (args->host_if_name == NULL) |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 207 | { |
| 208 | args->rv = VNET_API_ERROR_NO_MATCHING_INTERFACE; |
| 209 | err = clib_error_return (0, "host_if_name is not provided"); |
| 210 | goto error; |
| 211 | } |
Nathan Skrzypczak | 979545e | 2021-09-22 17:46:02 +0200 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | /* if namespace is specified, all further netlink messages should be executed |
| 215 | * after we change our net namespace */ |
| 216 | if (args->host_namespace) |
| 217 | { |
| 218 | old_netns_fd = clib_netns_open (NULL /* self */); |
| 219 | if ((nfd = clib_netns_open (args->host_namespace)) == -1) |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 220 | { |
Nathan Skrzypczak | 979545e | 2021-09-22 17:46:02 +0200 | [diff] [blame] | 221 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 222 | args->error = clib_error_return_unix (0, "clib_netns_open '%s'", |
| 223 | args->host_namespace); |
| 224 | goto error; |
| 225 | } |
| 226 | if (clib_setns (nfd) == -1) |
| 227 | { |
| 228 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_3; |
| 229 | args->error = |
| 230 | clib_error_return_unix (0, "setns '%s'", args->host_namespace); |
| 231 | goto error; |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 232 | } |
| 233 | } |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 234 | |
Duncan Eastoe | 764a878 | 2021-09-08 19:11:33 +0100 | [diff] [blame] | 235 | if (args->host_if_name != NULL) |
| 236 | { |
| 237 | host_if_name = (char *) args->host_if_name; |
| 238 | clib_memcpy (ifr.ifr_name, host_if_name, |
| 239 | clib_min (IFNAMSIZ, vec_len (host_if_name))); |
| 240 | } |
| 241 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 242 | if ((tfd = open ("/dev/net/tun", O_RDWR | O_NONBLOCK)) < 0) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 243 | { |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 244 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 245 | args->error = clib_error_return_unix (0, "open '/dev/net/tun'"); |
| 246 | goto error; |
| 247 | } |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 248 | vec_add1 (vif->tap_fds, tfd); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 249 | tap_log_dbg (vif, "open tap fd %d", tfd); |
| 250 | |
| 251 | _IOCTL (tfd, TUNGETFEATURES, &tap_features); |
| 252 | tap_log_dbg (vif, "TUNGETFEATURES: features 0x%lx", tap_features); |
| 253 | if ((tap_features & IFF_VNET_HDR) == 0) |
| 254 | { |
| 255 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 256 | args->error = clib_error_return (0, "vhost-net backend not available"); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 257 | goto error; |
| 258 | } |
| 259 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 260 | if ((tap_features & IFF_MULTI_QUEUE) == 0) |
| 261 | { |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 262 | if (vif->num_rxqs > 1) |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 263 | { |
| 264 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 265 | args->error = clib_error_return (0, "multiqueue not supported"); |
| 266 | goto error; |
| 267 | } |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 268 | vif->num_rxqs = vif->num_txqs = 1; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 269 | } |
| 270 | else |
| 271 | ifr.ifr_flags |= IFF_MULTI_QUEUE; |
| 272 | |
Mohsin Kazmi | 0f8912f | 2022-02-01 18:35:59 +0000 | [diff] [blame] | 273 | hdrsz = sizeof (vnet_virtio_net_hdr_v1_t); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 274 | if (args->tap_flags & TAP_FLAG_GSO) |
| 275 | { |
| 276 | offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6; |
| 277 | vif->gso_enabled = 1; |
| 278 | } |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 279 | else if (args->tap_flags & TAP_FLAG_CSUM_OFFLOAD) |
| 280 | { |
| 281 | offload = TUN_F_CSUM; |
| 282 | vif->csum_offload_enabled = 1; |
| 283 | } |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 284 | |
| 285 | _IOCTL (tfd, TUNSETIFF, (void *) &ifr); |
| 286 | tap_log_dbg (vif, "TUNSETIFF fd %d name %s flags 0x%x", tfd, |
| 287 | ifr.ifr_ifrn.ifrn_name, ifr.ifr_flags); |
| 288 | |
| 289 | vif->ifindex = if_nametoindex (ifr.ifr_ifrn.ifrn_name); |
| 290 | tap_log_dbg (vif, "ifindex %d", vif->ifindex); |
| 291 | |
| 292 | if (!args->host_if_name) |
| 293 | host_if_name = ifr.ifr_ifrn.ifrn_name; |
| 294 | else |
| 295 | host_if_name = (char *) args->host_if_name; |
| 296 | |
Mohsin Kazmi | b49bc1a | 2020-02-14 17:51:04 +0000 | [diff] [blame] | 297 | /* |
| 298 | * unset the persistence when attaching to existing |
| 299 | * interface |
| 300 | */ |
| 301 | if (args->tap_flags & TAP_FLAG_ATTACH) |
| 302 | { |
| 303 | _IOCTL (tfd, TUNSETPERSIST, (void *) (uintptr_t) 0); |
| 304 | tap_log_dbg (vif, "TUNSETPERSIST: unset"); |
| 305 | } |
| 306 | |
| 307 | /* set the persistence */ |
| 308 | if (args->tap_flags & TAP_FLAG_PERSIST) |
| 309 | { |
| 310 | _IOCTL (tfd, TUNSETPERSIST, (void *) (uintptr_t) 1); |
| 311 | tap_log_dbg (vif, "TUNSETPERSIST: set"); |
| 312 | |
| 313 | /* verify persistence is set, read the flags */ |
| 314 | _IOCTL (tfd, TUNGETIFF, (void *) &get_ifr); |
| 315 | tap_log_dbg (vif, "TUNGETIFF: flags 0x%lx", get_ifr.ifr_flags); |
| 316 | if ((get_ifr.ifr_flags & IFF_PERSIST) == 0) |
| 317 | { |
| 318 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 319 | args->error = clib_error_return (0, "persistence not supported"); |
| 320 | goto error; |
| 321 | } |
| 322 | } |
| 323 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 324 | /* create additional queues on the linux side. |
| 325 | * we create as many linux queue pairs as we have rx queues |
| 326 | */ |
| 327 | for (i = 1; i < vif->num_rxqs; i++) |
| 328 | { |
| 329 | if ((qfd = open ("/dev/net/tun", O_RDWR | O_NONBLOCK)) < 0) |
| 330 | { |
| 331 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 332 | args->error = clib_error_return_unix (0, "open '/dev/net/tun'"); |
| 333 | goto error; |
| 334 | } |
Mohsin Kazmi | 0c740a6 | 2022-04-05 11:12:33 +0000 | [diff] [blame] | 335 | vec_add1 (vif->tap_fds, qfd); |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 336 | _IOCTL (qfd, TUNSETIFF, (void *) &ifr); |
| 337 | tap_log_dbg (vif, "TUNSETIFF fd %d name %s flags 0x%x", qfd, |
| 338 | ifr.ifr_ifrn.ifrn_name, ifr.ifr_flags); |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 339 | } |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 340 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 341 | for (i = 0; i < vif->num_rxqs; i++) |
| 342 | { |
| 343 | tap_log_dbg (vif, "TUNSETVNETHDRSZ: fd %d vnet_hdr_sz %u", |
| 344 | vif->tap_fds[i], hdrsz); |
| 345 | _IOCTL (vif->tap_fds[i], TUNSETVNETHDRSZ, &hdrsz); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 346 | |
Mohsin Kazmi | 4834a66 | 2020-07-06 18:03:41 +0000 | [diff] [blame] | 347 | tap_log_dbg (vif, "TUNSETSNDBUF: fd %d sndbuf %d", vif->tap_fds[i], |
| 348 | sndbuf); |
| 349 | _IOCTL (vif->tap_fds[i], TUNSETSNDBUF, &sndbuf); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 350 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 351 | tap_log_dbg (vif, "TUNSETOFFLOAD: fd %d offload 0x%lx", vif->tap_fds[i], |
| 352 | offload); |
| 353 | _IOCTL (vif->tap_fds[i], TUNSETOFFLOAD, offload); |
| 354 | |
| 355 | if (fcntl (vif->tap_fds[i], F_SETFL, O_NONBLOCK) < 0) |
| 356 | { |
| 357 | err = clib_error_return_unix (0, "fcntl(tfd, F_SETFL, O_NONBLOCK)"); |
| 358 | tap_log_err (vif, "set nonblocking: %U", format_clib_error, err); |
| 359 | goto error; |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | /* open as many vhost-net fds as required and set ownership */ |
| 364 | num_vhost_queues = clib_max (vif->num_rxqs, vif->num_txqs); |
| 365 | for (i = 0; i < num_vhost_queues; i++) |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 366 | { |
| 367 | if ((vfd = open ("/dev/vhost-net", O_RDWR | O_NONBLOCK)) < 0) |
| 368 | { |
| 369 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_1; |
| 370 | args->error = clib_error_return_unix (0, "open '/dev/vhost-net'"); |
| 371 | goto error; |
| 372 | } |
| 373 | vec_add1 (vif->vhost_fds, vfd); |
| 374 | virtio_log_debug (vif, "open vhost-net fd %d qpair %u", vfd, i); |
| 375 | _IOCTL (vfd, VHOST_SET_OWNER, 0); |
| 376 | virtio_log_debug (vif, "VHOST_SET_OWNER: fd %u", vfd); |
| 377 | } |
| 378 | |
| 379 | _IOCTL (vif->vhost_fds[0], VHOST_GET_FEATURES, &vif->remote_features); |
| 380 | virtio_log_debug (vif, "VHOST_GET_FEATURES: features 0x%lx", |
| 381 | vif->remote_features); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 382 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 383 | if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF)) == 0) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 384 | { |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 385 | args->rv = VNET_API_ERROR_UNSUPPORTED; |
| 386 | args->error = clib_error_return (0, "vhost-net backend doesn't support " |
| 387 | "VIRTIO_NET_F_MRG_RXBUF feature"); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 388 | goto error; |
| 389 | } |
| 390 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 391 | if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC)) == |
| 392 | 0) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 393 | { |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 394 | args->rv = VNET_API_ERROR_UNSUPPORTED; |
| 395 | args->error = clib_error_return (0, "vhost-net backend doesn't support " |
| 396 | "VIRTIO_RING_F_INDIRECT_DESC feature"); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 397 | goto error; |
| 398 | } |
| 399 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 400 | if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_F_VERSION_1)) == 0) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 401 | { |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 402 | args->rv = VNET_API_ERROR_UNSUPPORTED; |
| 403 | args->error = clib_error_return (0, "vhost-net backend doesn't support " |
| 404 | "VIRTIO_F_VERSION_1 features"); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 405 | goto error; |
| 406 | } |
| 407 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 408 | vif->features |= VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF); |
| 409 | vif->features |= VIRTIO_FEATURE (VIRTIO_F_VERSION_1); |
| 410 | vif->features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC); |
| 411 | |
| 412 | virtio_set_net_hdr_size (vif); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 413 | |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 414 | if (vif->type == VIRTIO_IF_TYPE_TAP) |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 415 | { |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 416 | if (ethernet_mac_address_is_zero (args->host_mac_addr.bytes)) |
| 417 | ethernet_mac_address_generate (args->host_mac_addr.bytes); |
| 418 | args->error = vnet_netlink_set_link_addr (vif->ifindex, |
| 419 | args->host_mac_addr.bytes); |
| 420 | if (args->error) |
| 421 | { |
| 422 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 423 | goto error; |
| 424 | } |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 425 | |
Mohsin Kazmi | add4a41 | 2020-06-26 13:47:21 +0000 | [diff] [blame] | 426 | if (args->host_bridge) |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 427 | { |
Mohsin Kazmi | add4a41 | 2020-06-26 13:47:21 +0000 | [diff] [blame] | 428 | args->error = vnet_netlink_set_link_master (vif->ifindex, |
| 429 | (char *) |
| 430 | args->host_bridge); |
| 431 | if (args->error) |
| 432 | { |
| 433 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 434 | goto error; |
| 435 | } |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 436 | } |
| 437 | } |
| 438 | |
| 439 | if (args->host_ip4_prefix_len) |
| 440 | { |
| 441 | args->error = vnet_netlink_add_ip4_addr (vif->ifindex, |
| 442 | &args->host_ip4_addr, |
| 443 | args->host_ip4_prefix_len); |
| 444 | if (args->error) |
| 445 | { |
| 446 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 447 | goto error; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | if (args->host_ip6_prefix_len) |
| 452 | { |
| 453 | args->error = vnet_netlink_add_ip6_addr (vif->ifindex, |
| 454 | &args->host_ip6_addr, |
| 455 | args->host_ip6_prefix_len); |
| 456 | if (args->error) |
| 457 | { |
| 458 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 459 | goto error; |
| 460 | } |
| 461 | } |
| 462 | |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 463 | args->error = vnet_netlink_set_link_state (vif->ifindex, 1 /* UP */ ); |
| 464 | if (args->error) |
| 465 | { |
| 466 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 467 | goto error; |
| 468 | } |
| 469 | |
Damjan Marion | 7866c45 | 2018-01-18 13:35:11 +0100 | [diff] [blame] | 470 | if (args->host_ip4_gw_set) |
| 471 | { |
| 472 | args->error = vnet_netlink_add_ip4_route (0, 0, &args->host_ip4_gw); |
| 473 | if (args->error) |
| 474 | { |
| 475 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 476 | goto error; |
| 477 | } |
| 478 | } |
| 479 | |
| 480 | if (args->host_ip6_gw_set) |
| 481 | { |
| 482 | args->error = vnet_netlink_add_ip6_route (0, 0, &args->host_ip6_gw); |
| 483 | if (args->error) |
| 484 | { |
| 485 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 486 | goto error; |
| 487 | } |
| 488 | } |
| 489 | |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 490 | if (args->host_mtu_set) |
| 491 | { |
| 492 | args->error = |
| 493 | vnet_netlink_set_link_mtu (vif->ifindex, args->host_mtu_size); |
| 494 | if (args->error) |
| 495 | { |
| 496 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 497 | goto error; |
| 498 | } |
| 499 | } |
| 500 | else if (tm->host_mtu_size != 0) |
| 501 | { |
| 502 | args->error = |
| 503 | vnet_netlink_set_link_mtu (vif->ifindex, tm->host_mtu_size); |
| 504 | if (args->error) |
| 505 | { |
| 506 | args->rv = VNET_API_ERROR_NETLINK_ERROR; |
| 507 | goto error; |
| 508 | } |
| 509 | args->host_mtu_set = 1; |
| 510 | args->host_mtu_size = tm->host_mtu_size; |
| 511 | } |
| 512 | |
Mohsin Kazmi | 91592c0 | 2020-01-30 16:08:08 +0100 | [diff] [blame] | 513 | /* switch back to old net namespace */ |
| 514 | if (args->host_namespace) |
| 515 | { |
Nathan Skrzypczak | 4cef6de | 2021-07-19 18:21:43 +0200 | [diff] [blame] | 516 | if (clib_setns (old_netns_fd) == -1) |
Mohsin Kazmi | 91592c0 | 2020-01-30 16:08:08 +0100 | [diff] [blame] | 517 | { |
| 518 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 519 | args->error = clib_error_return_unix (0, "setns '%s'", |
| 520 | args->host_namespace); |
| 521 | goto error; |
| 522 | } |
| 523 | } |
| 524 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 525 | for (i = 0; i < num_vhost_queues; i++) |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 526 | { |
| 527 | if (i < vif->num_rxqs && (args->error = |
| 528 | virtio_vring_init (vm, vif, RX_QUEUE (i), |
| 529 | args->rx_ring_sz))) |
| 530 | { |
| 531 | args->rv = VNET_API_ERROR_INIT_FAILED; |
| 532 | goto error; |
| 533 | } |
| 534 | |
| 535 | if (i < vif->num_txqs && (args->error = |
| 536 | virtio_vring_init (vm, vif, TX_QUEUE (i), |
| 537 | args->tx_ring_sz))) |
| 538 | { |
| 539 | args->rv = VNET_API_ERROR_INIT_FAILED; |
| 540 | goto error; |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | /* setup features and memtable */ |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 545 | i = sizeof (vhost_memory_t) + sizeof (vhost_memory_region_t); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 546 | vhost_mem = clib_mem_alloc (i); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 547 | clib_memset (vhost_mem, 0, i); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 548 | vhost_mem->nregions = 1; |
Lijian.Zhang | ba0da57 | 2019-08-21 17:51:16 +0800 | [diff] [blame] | 549 | vhost_mem->regions[0].memory_size = vpm->max_size; |
| 550 | vhost_mem->regions[0].guest_phys_addr = vpm->base_addr; |
| 551 | vhost_mem->regions[0].userspace_addr = |
| 552 | vhost_mem->regions[0].guest_phys_addr; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 553 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 554 | for (i = 0; i < vhost_mem->nregions; i++) |
| 555 | virtio_log_debug (vif, "memtable region %u memory_size 0x%lx " |
| 556 | "guest_phys_addr 0x%lx userspace_addr 0x%lx", i, |
| 557 | vhost_mem->regions[0].memory_size, |
| 558 | vhost_mem->regions[0].guest_phys_addr, |
| 559 | vhost_mem->regions[0].userspace_addr); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 560 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 561 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 562 | for (i = 0; i < num_vhost_queues; i++) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 563 | { |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 564 | int fd = vif->vhost_fds[i]; |
| 565 | _IOCTL (fd, VHOST_SET_FEATURES, &vif->features); |
| 566 | virtio_log_debug (vif, "VHOST_SET_FEATURES: fd %u features 0x%lx", |
| 567 | fd, vif->features); |
| 568 | _IOCTL (fd, VHOST_SET_MEM_TABLE, vhost_mem); |
| 569 | virtio_log_debug (vif, "VHOST_SET_MEM_TABLE: fd %u", fd); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 570 | } |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 571 | |
| 572 | /* finish initializing queue pair */ |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 573 | for (i = 0; i < num_vhost_queues * 2; i++) |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 574 | { |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 575 | vhost_vring_addr_t addr = { 0 }; |
| 576 | vhost_vring_state_t state = { 0 }; |
| 577 | vhost_vring_file_t file = { 0 }; |
Mohsin Kazmi | 0f8912f | 2022-02-01 18:35:59 +0000 | [diff] [blame] | 578 | vnet_virtio_vring_t *vring; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 579 | u16 qp = i >> 1; |
| 580 | int fd = vif->vhost_fds[qp]; |
| 581 | |
| 582 | if (i & 1) |
| 583 | { |
| 584 | if (qp >= vif->num_txqs) |
| 585 | continue; |
| 586 | vring = vec_elt_at_index (vif->txq_vrings, qp); |
| 587 | } |
| 588 | else |
| 589 | { |
| 590 | if (qp >= vif->num_rxqs) |
| 591 | continue; |
| 592 | vring = vec_elt_at_index (vif->rxq_vrings, qp); |
| 593 | } |
| 594 | |
| 595 | addr.index = state.index = file.index = vring->queue_id & 1; |
Mohsin Kazmi | 0f8912f | 2022-02-01 18:35:59 +0000 | [diff] [blame] | 596 | state.num = vring->queue_size; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 597 | virtio_log_debug (vif, "VHOST_SET_VRING_NUM fd %d index %u num %u", fd, |
| 598 | state.index, state.num); |
| 599 | _IOCTL (fd, VHOST_SET_VRING_NUM, &state); |
| 600 | |
| 601 | addr.flags = 0; |
| 602 | addr.desc_user_addr = pointer_to_uword (vring->desc); |
| 603 | addr.avail_user_addr = pointer_to_uword (vring->avail); |
| 604 | addr.used_user_addr = pointer_to_uword (vring->used); |
| 605 | |
| 606 | virtio_log_debug (vif, "VHOST_SET_VRING_ADDR fd %d index %u flags 0x%x " |
| 607 | "desc_user_addr 0x%lx avail_user_addr 0x%lx " |
| 608 | "used_user_addr 0x%lx", fd, addr.index, |
| 609 | addr.flags, addr.desc_user_addr, addr.avail_user_addr, |
| 610 | addr.used_user_addr); |
| 611 | _IOCTL (fd, VHOST_SET_VRING_ADDR, &addr); |
| 612 | |
| 613 | file.fd = vring->call_fd; |
| 614 | virtio_log_debug (vif, "VHOST_SET_VRING_CALL fd %d index %u call_fd %d", |
| 615 | fd, file.index, file.fd); |
| 616 | _IOCTL (fd, VHOST_SET_VRING_CALL, &file); |
| 617 | |
| 618 | file.fd = vring->kick_fd; |
| 619 | virtio_log_debug (vif, "VHOST_SET_VRING_KICK fd %d index %u kick_fd %d", |
| 620 | fd, file.index, file.fd); |
| 621 | _IOCTL (fd, VHOST_SET_VRING_KICK, &file); |
| 622 | |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 623 | file.fd = vif->tap_fds[qp % vif->num_rxqs]; |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 624 | virtio_log_debug (vif, "VHOST_NET_SET_BACKEND fd %d index %u tap_fd %d", |
| 625 | fd, file.index, file.fd); |
| 626 | _IOCTL (fd, VHOST_NET_SET_BACKEND, &file); |
| 627 | } |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 628 | |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 629 | if (vif->type == VIRTIO_IF_TYPE_TAP) |
| 630 | { |
| 631 | if (!args->mac_addr_set) |
| 632 | ethernet_mac_address_generate (args->mac_addr.bytes); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 633 | |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 634 | clib_memcpy (vif->mac_addr, args->mac_addr.bytes, 6); |
Matthew Smith | 2b716b1 | 2021-10-22 09:53:44 -0500 | [diff] [blame] | 635 | if (args->host_bridge) |
| 636 | vif->host_bridge = format (0, "%s%c", args->host_bridge, 0); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 637 | } |
Mohsin Kazmi | 19b697f | 2019-07-29 13:21:17 +0200 | [diff] [blame] | 638 | vif->host_if_name = format (0, "%s%c", host_if_name, 0); |
Matthew Smith | 2b716b1 | 2021-10-22 09:53:44 -0500 | [diff] [blame] | 639 | if (args->host_namespace) |
| 640 | vif->net_ns = format (0, "%s%c", args->host_namespace, 0); |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 641 | vif->host_mtu_size = args->host_mtu_size; |
Mohsin Kazmi | 86f281a | 2020-06-30 15:28:01 +0200 | [diff] [blame] | 642 | vif->tap_flags = args->tap_flags; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 643 | clib_memcpy (vif->host_mac_addr, args->host_mac_addr.bytes, 6); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 644 | vif->host_ip4_prefix_len = args->host_ip4_prefix_len; |
| 645 | vif->host_ip6_prefix_len = args->host_ip6_prefix_len; |
| 646 | if (args->host_ip4_prefix_len) |
| 647 | clib_memcpy (&vif->host_ip4_addr, &args->host_ip4_addr, 4); |
| 648 | if (args->host_ip6_prefix_len) |
| 649 | clib_memcpy (&vif->host_ip6_addr, &args->host_ip6_addr, 16); |
| 650 | |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 651 | if (vif->type != VIRTIO_IF_TYPE_TUN) |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 652 | { |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 653 | vnet_eth_interface_registration_t eir = {}; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 654 | |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 655 | eir.dev_class_index = virtio_device_class.index; |
| 656 | eir.dev_instance = vif->dev_instance; |
| 657 | eir.address = vif->mac_addr; |
| 658 | eir.cb.flag_change = virtio_eth_flag_change; |
Artem Glazychev | 66593a6 | 2022-02-18 12:23:20 +0700 | [diff] [blame] | 659 | eir.cb.set_max_frame_size = virtio_eth_set_max_frame_size; |
Damjan Marion | 5c954c4 | 2022-01-06 20:36:14 +0100 | [diff] [blame] | 660 | vif->hw_if_index = vnet_eth_register_interface (vnm, &eir); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 661 | } |
| 662 | else |
| 663 | { |
| 664 | vif->hw_if_index = vnet_register_interface |
| 665 | (vnm, virtio_device_class.index, |
| 666 | vif->dev_instance /* device instance */ , |
| 667 | tun_device_hw_interface_class.index, vif->dev_instance); |
| 668 | |
| 669 | } |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 670 | tm->tap_ids = clib_bitmap_set (tm->tap_ids, vif->id, 1); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 671 | sw = vnet_get_hw_sw_interface (vnm, vif->hw_if_index); |
| 672 | vif->sw_if_index = sw->sw_if_index; |
| 673 | args->sw_if_index = vif->sw_if_index; |
Mohsin Kazmi | c5d5327 | 2019-07-01 10:26:43 +0200 | [diff] [blame] | 674 | args->rv = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 675 | hw = vnet_get_hw_interface (vnm, vif->hw_if_index); |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 676 | cc.mask = VNET_HW_IF_CAP_INT_MODE | VNET_HW_IF_CAP_TCP_GSO | |
| 677 | VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM; |
| 678 | cc.val = VNET_HW_IF_CAP_INT_MODE; |
| 679 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 680 | if (args->tap_flags & TAP_FLAG_GSO) |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 681 | cc.val |= VNET_HW_IF_CAP_TCP_GSO | VNET_HW_IF_CAP_TX_TCP_CKSUM | |
| 682 | VNET_HW_IF_CAP_TX_UDP_CKSUM; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 683 | else if (args->tap_flags & TAP_FLAG_CSUM_OFFLOAD) |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 684 | cc.val |= VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM; |
| 685 | |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 686 | if ((args->tap_flags & TAP_FLAG_GSO) |
| 687 | && (args->tap_flags & TAP_FLAG_GRO_COALESCE)) |
| 688 | { |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 689 | virtio_set_packet_coalesce (vif); |
| 690 | } |
Neale Ranns | 0cc23b7 | 2021-05-20 16:09:40 +0000 | [diff] [blame] | 691 | if (vif->type == VIRTIO_IF_TYPE_TUN) |
| 692 | { |
Damjan Marion | 1cd0e5d | 2022-01-17 14:49:17 +0100 | [diff] [blame] | 693 | hw->min_frame_size = TUN_MIN_PACKET_BYTES; |
| 694 | vnet_hw_interface_set_mtu ( |
Benoît Ganne | 30a6f82 | 2022-03-01 16:48:40 +0100 | [diff] [blame] | 695 | vnm, hw->hw_if_index, |
Damjan Marion | 1cd0e5d | 2022-01-17 14:49:17 +0100 | [diff] [blame] | 696 | args->host_mtu_size ? args->host_mtu_size : TUN_DEFAULT_PACKET_BYTES); |
Neale Ranns | 0cc23b7 | 2021-05-20 16:09:40 +0000 | [diff] [blame] | 697 | } |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 698 | |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 699 | vnet_hw_if_change_caps (vnm, vif->hw_if_index, &cc); |
Mohsin Kazmi | b7e4e6d | 2021-12-13 18:32:42 +0000 | [diff] [blame] | 700 | virtio_pre_input_node_enable (vm, vif); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 701 | virtio_vring_set_rx_queues (vm, vif); |
Mohsin Kazmi | b7e4e6d | 2021-12-13 18:32:42 +0000 | [diff] [blame] | 702 | virtio_vring_set_tx_queues (vm, vif); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 703 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 704 | vif->per_interface_next_index = ~0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 705 | vnet_hw_interface_set_flags (vnm, vif->hw_if_index, |
| 706 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
Matthew Smith | bd50ed1 | 2020-07-24 13:38:03 -0500 | [diff] [blame] | 707 | /* |
| 708 | * Host tun/tap driver link carrier state is "up" at creation. The |
| 709 | * driver never changes this unless the backend (VPP) changes it using |
| 710 | * TUNSETCARRIER ioctl(). See tap_set_carrier(). |
| 711 | */ |
| 712 | vif->host_carrier_up = 1; |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 713 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 714 | goto done; |
| 715 | |
| 716 | error: |
Damjan Marion | 91c6ef7 | 2017-12-01 13:34:24 +0100 | [diff] [blame] | 717 | if (err) |
| 718 | { |
| 719 | ASSERT (args->error == 0); |
| 720 | args->error = err; |
| 721 | args->rv = VNET_API_ERROR_SYSCALL_ERROR_3; |
| 722 | } |
Benoît Ganne | c30d87e | 2019-07-15 17:16:49 +0200 | [diff] [blame] | 723 | |
Mohsin Kazmi | 91592c0 | 2020-01-30 16:08:08 +0100 | [diff] [blame] | 724 | tap_log_err (vif, "%U", format_clib_error, args->error); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 725 | tap_free (vm, vif); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 726 | done: |
| 727 | if (vhost_mem) |
| 728 | clib_mem_free (vhost_mem); |
Damjan Marion | 4e671d2 | 2017-12-09 21:19:01 +0100 | [diff] [blame] | 729 | if (old_netns_fd != -1) |
Nathan Skrzypczak | 979545e | 2021-09-22 17:46:02 +0200 | [diff] [blame] | 730 | { |
| 731 | /* in case we errored with a switched netns */ |
| 732 | clib_setns (old_netns_fd); |
| 733 | close (old_netns_fd); |
| 734 | } |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 735 | if (nfd != -1) |
| 736 | close (nfd); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | int |
| 740 | tap_delete_if (vlib_main_t * vm, u32 sw_if_index) |
| 741 | { |
| 742 | vnet_main_t *vnm = vnet_get_main (); |
| 743 | virtio_main_t *mm = &virtio_main; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 744 | virtio_if_t *vif; |
| 745 | vnet_hw_interface_t *hw; |
| 746 | |
Dave Barach | 3940de3 | 2019-07-23 16:28:36 -0400 | [diff] [blame] | 747 | hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 748 | if (hw == NULL || virtio_device_class.index != hw->dev_class_index) |
| 749 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 750 | |
| 751 | vif = pool_elt_at_index (mm->interfaces, hw->dev_instance); |
| 752 | |
Matthew Smith | 3d18fbf | 2020-04-29 11:17:08 -0500 | [diff] [blame] | 753 | if ((vif->type != VIRTIO_IF_TYPE_TAP) && (vif->type != VIRTIO_IF_TYPE_TUN)) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 754 | return VNET_API_ERROR_INVALID_INTERFACE; |
| 755 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 756 | /* bring down the interface */ |
| 757 | vnet_hw_interface_set_flags (vnm, vif->hw_if_index, 0); |
| 758 | vnet_sw_interface_set_flags (vnm, vif->sw_if_index, 0); |
| 759 | |
Matthew Smith | 3d18fbf | 2020-04-29 11:17:08 -0500 | [diff] [blame] | 760 | if (vif->type == VIRTIO_IF_TYPE_TAP) |
| 761 | ethernet_delete_interface (vnm, vif->hw_if_index); |
| 762 | else /* VIRTIO_IF_TYPE_TUN */ |
| 763 | vnet_delete_hw_interface (vnm, vif->hw_if_index); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 764 | vif->hw_if_index = ~0; |
| 765 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 766 | tap_free (vm, vif); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 767 | |
| 768 | return 0; |
| 769 | } |
| 770 | |
| 771 | int |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 772 | tap_csum_offload_enable_disable (vlib_main_t * vm, u32 sw_if_index, |
| 773 | int enable_disable) |
| 774 | { |
| 775 | vnet_main_t *vnm = vnet_get_main (); |
| 776 | virtio_main_t *mm = &virtio_main; |
| 777 | virtio_if_t *vif; |
| 778 | vnet_hw_interface_t *hw; |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 779 | vnet_hw_if_caps_change_t cc; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 780 | clib_error_t *err = 0; |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 781 | int i = 0; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 782 | |
| 783 | hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index); |
| 784 | |
| 785 | if (hw == NULL || virtio_device_class.index != hw->dev_class_index) |
| 786 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 787 | |
| 788 | vif = pool_elt_at_index (mm->interfaces, hw->dev_instance); |
| 789 | |
| 790 | const unsigned int csum_offload_on = TUN_F_CSUM; |
| 791 | const unsigned int csum_offload_off = 0; |
| 792 | unsigned int offload = enable_disable ? csum_offload_on : csum_offload_off; |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 793 | vec_foreach_index (i, vif->tap_fds) |
| 794 | _IOCTL (vif->tap_fds[i], TUNSETOFFLOAD, offload); |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 795 | vif->gso_enabled = 0; |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 796 | vif->packet_coalesce = 0; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 797 | |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 798 | cc.mask = VNET_HW_IF_CAP_TCP_GSO | VNET_HW_IF_CAP_L4_TX_CKSUM; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 799 | if (enable_disable) |
| 800 | { |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 801 | cc.val = VNET_HW_IF_CAP_L4_TX_CKSUM; |
| 802 | vif->csum_offload_enabled = 1; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 803 | } |
| 804 | else |
| 805 | { |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 806 | cc.val = 0; |
| 807 | vif->csum_offload_enabled = 0; |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 808 | } |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 809 | vnet_hw_if_change_caps (vnm, vif->hw_if_index, &cc); |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 810 | |
| 811 | error: |
| 812 | if (err) |
| 813 | { |
| 814 | clib_warning ("Error %s checksum offload on sw_if_index %d", |
| 815 | enable_disable ? "enabling" : "disabling", sw_if_index); |
| 816 | return VNET_API_ERROR_SYSCALL_ERROR_3; |
| 817 | } |
| 818 | return 0; |
| 819 | } |
| 820 | |
| 821 | int |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 822 | tap_gso_enable_disable (vlib_main_t * vm, u32 sw_if_index, int enable_disable, |
| 823 | int is_packet_coalesce) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 824 | { |
| 825 | vnet_main_t *vnm = vnet_get_main (); |
| 826 | virtio_main_t *mm = &virtio_main; |
| 827 | virtio_if_t *vif; |
Dave Barach | 3940de3 | 2019-07-23 16:28:36 -0400 | [diff] [blame] | 828 | vnet_hw_interface_t *hw; |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 829 | vnet_hw_if_caps_change_t cc; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 830 | clib_error_t *err = 0; |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 831 | int i = 0; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 832 | |
Dave Barach | 3940de3 | 2019-07-23 16:28:36 -0400 | [diff] [blame] | 833 | hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index); |
| 834 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 835 | if (hw == NULL || virtio_device_class.index != hw->dev_class_index) |
| 836 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 837 | |
| 838 | vif = pool_elt_at_index (mm->interfaces, hw->dev_instance); |
| 839 | |
| 840 | const unsigned int gso_on = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6; |
| 841 | const unsigned int gso_off = 0; |
| 842 | unsigned int offload = enable_disable ? gso_on : gso_off; |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 843 | vec_foreach_index (i, vif->tap_fds) |
| 844 | _IOCTL (vif->tap_fds[i], TUNSETOFFLOAD, offload); |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 845 | |
| 846 | cc.mask = VNET_HW_IF_CAP_TCP_GSO | VNET_HW_IF_CAP_L4_TX_CKSUM; |
| 847 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 848 | if (enable_disable) |
| 849 | { |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 850 | cc.val = cc.mask; |
| 851 | vif->gso_enabled = 1; |
| 852 | vif->csum_offload_enabled = 1; |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 853 | if (is_packet_coalesce) |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 854 | virtio_set_packet_coalesce (vif); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 855 | } |
| 856 | else |
| 857 | { |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 858 | cc.val = 0; |
| 859 | vif->gso_enabled = 0; |
| 860 | vif->csum_offload_enabled = 0; |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 861 | vif->packet_coalesce = 0; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 862 | } |
Damjan Marion | c48ec5d | 2022-01-10 19:38:57 +0000 | [diff] [blame] | 863 | vnet_hw_if_change_caps (vnm, vif->hw_if_index, &cc); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 864 | |
| 865 | error: |
| 866 | if (err) |
| 867 | { |
| 868 | clib_warning ("Error %s gso on sw_if_index %d", |
| 869 | enable_disable ? "enabling" : "disabling", sw_if_index); |
| 870 | return VNET_API_ERROR_SYSCALL_ERROR_3; |
| 871 | } |
| 872 | return 0; |
| 873 | } |
| 874 | |
| 875 | int |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 876 | tap_dump_ifs (tap_interface_details_t ** out_tapids) |
| 877 | { |
| 878 | vnet_main_t *vnm = vnet_get_main (); |
| 879 | virtio_main_t *mm = &virtio_main; |
| 880 | virtio_if_t *vif; |
Mohsin Kazmi | 0f8912f | 2022-02-01 18:35:59 +0000 | [diff] [blame] | 881 | vnet_virtio_vring_t *vring; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 882 | vnet_hw_interface_t *hi; |
| 883 | tap_interface_details_t *r_tapids = NULL; |
| 884 | tap_interface_details_t *tapid = NULL; |
| 885 | |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 886 | pool_foreach (vif, mm->interfaces) { |
Mohsin Kazmi | 86f281a | 2020-06-30 15:28:01 +0200 | [diff] [blame] | 887 | if ((vif->type != VIRTIO_IF_TYPE_TAP) |
| 888 | && (vif->type != VIRTIO_IF_TYPE_TUN)) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 889 | continue; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 890 | vec_add2(r_tapids, tapid, 1); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 891 | clib_memset (tapid, 0, sizeof (*tapid)); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 892 | tapid->id = vif->id; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 893 | tapid->sw_if_index = vif->sw_if_index; |
| 894 | hi = vnet_get_hw_interface (vnm, vif->hw_if_index); |
| 895 | clib_memcpy(tapid->dev_name, hi->name, |
Vladimir Isaev | 84f3d9f | 2020-09-18 14:43:29 +0300 | [diff] [blame] | 896 | MIN (ARRAY_LEN (tapid->dev_name) - 1, vec_len (hi->name))); |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 897 | vring = vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS(0)); |
Mohsin Kazmi | 0f8912f | 2022-02-01 18:35:59 +0000 | [diff] [blame] | 898 | tapid->rx_ring_sz = vring->queue_size; |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 899 | vring = vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS(0)); |
Mohsin Kazmi | 0f8912f | 2022-02-01 18:35:59 +0000 | [diff] [blame] | 900 | tapid->tx_ring_sz = vring->queue_size; |
Mohsin Kazmi | 86f281a | 2020-06-30 15:28:01 +0200 | [diff] [blame] | 901 | tapid->tap_flags = vif->tap_flags; |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 902 | clib_memcpy(&tapid->host_mac_addr, vif->host_mac_addr, 6); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 903 | if (vif->host_if_name) |
| 904 | { |
| 905 | clib_memcpy(tapid->host_if_name, vif->host_if_name, |
| 906 | MIN (ARRAY_LEN (tapid->host_if_name) - 1, |
Mohsin Kazmi | 03b76a2 | 2020-10-08 17:44:36 +0200 | [diff] [blame] | 907 | vec_len (vif->host_if_name))); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 908 | } |
| 909 | if (vif->net_ns) |
| 910 | { |
| 911 | clib_memcpy(tapid->host_namespace, vif->net_ns, |
| 912 | MIN (ARRAY_LEN (tapid->host_namespace) - 1, |
Mohsin Kazmi | 03b76a2 | 2020-10-08 17:44:36 +0200 | [diff] [blame] | 913 | vec_len (vif->net_ns))); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 914 | } |
| 915 | if (vif->host_bridge) |
| 916 | { |
| 917 | clib_memcpy(tapid->host_bridge, vif->host_bridge, |
| 918 | MIN (ARRAY_LEN (tapid->host_bridge) - 1, |
Mohsin Kazmi | 03b76a2 | 2020-10-08 17:44:36 +0200 | [diff] [blame] | 919 | vec_len (vif->host_bridge))); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 920 | } |
| 921 | if (vif->host_ip4_prefix_len) |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 922 | clib_memcpy(tapid->host_ip4_addr.as_u8, &vif->host_ip4_addr, 4); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 923 | tapid->host_ip4_prefix_len = vif->host_ip4_prefix_len; |
| 924 | if (vif->host_ip6_prefix_len) |
Jakub Grajciar | 5de4fb7 | 2019-09-03 10:40:01 +0200 | [diff] [blame] | 925 | clib_memcpy(tapid->host_ip6_addr.as_u8, &vif->host_ip6_addr, 16); |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 926 | tapid->host_ip6_prefix_len = vif->host_ip6_prefix_len; |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 927 | tapid->host_mtu_size = vif->host_mtu_size; |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 928 | } |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 929 | |
| 930 | *out_tapids = r_tapids; |
| 931 | |
| 932 | return 0; |
| 933 | } |
| 934 | |
Matthew Smith | bd50ed1 | 2020-07-24 13:38:03 -0500 | [diff] [blame] | 935 | /* |
| 936 | * Set host tap/tun interface carrier state so it will appear to host |
| 937 | * applications that the interface's link state changed. |
| 938 | * |
| 939 | * If the kernel we're building against does not have support for the |
| 940 | * TUNSETCARRIER ioctl command, do nothing. |
| 941 | */ |
| 942 | int |
| 943 | tap_set_carrier (u32 hw_if_index, u32 carrier_up) |
| 944 | { |
| 945 | int ret = 0; |
| 946 | #ifdef TUNSETCARRIER |
| 947 | vnet_main_t *vnm = vnet_get_main (); |
| 948 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 949 | virtio_main_t *mm = &virtio_main; |
| 950 | virtio_if_t *vif; |
| 951 | int *fd; |
| 952 | |
| 953 | vif = pool_elt_at_index (mm->interfaces, hi->dev_instance); |
| 954 | vec_foreach (fd, vif->tap_fds) |
| 955 | { |
| 956 | ret = ioctl (*fd, TUNSETCARRIER, &carrier_up); |
| 957 | if (ret < 0) |
| 958 | { |
| 959 | clib_warning ("ioctl (TUNSETCARRIER) returned %d", ret); |
| 960 | break; |
| 961 | } |
| 962 | } |
| 963 | if (!ret) |
| 964 | vif->host_carrier_up = (carrier_up != 0); |
| 965 | #endif |
| 966 | |
| 967 | return ret; |
| 968 | } |
| 969 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 970 | static clib_error_t * |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 971 | tap_mtu_config (vlib_main_t * vm, unformat_input_t * input) |
| 972 | { |
| 973 | tap_main_t *tm = &tap_main; |
| 974 | |
| 975 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 976 | { |
| 977 | if (unformat (input, "host-mtu %d", &tm->host_mtu_size)) |
| 978 | ; |
| 979 | else |
| 980 | return clib_error_return (0, "unknown input `%U'", |
| 981 | format_unformat_error, input); |
| 982 | } |
| 983 | |
| 984 | return 0; |
| 985 | } |
| 986 | |
Alexander Chernavin | a6c34a1 | 2020-09-04 09:24:20 -0400 | [diff] [blame] | 987 | /* |
| 988 | * Set host tap/tun interface speed in Mbps. |
| 989 | */ |
| 990 | int |
| 991 | tap_set_speed (u32 hw_if_index, u32 speed) |
| 992 | { |
| 993 | vnet_main_t *vnm = vnet_get_main (); |
| 994 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 995 | virtio_main_t *mm = &virtio_main; |
| 996 | virtio_if_t *vif; |
| 997 | int old_netns_fd = -1; |
| 998 | int nfd = -1; |
| 999 | int ctl_fd = -1; |
| 1000 | struct ifreq ifr; |
| 1001 | struct ethtool_cmd ecmd; |
| 1002 | int ret = -1; |
| 1003 | |
| 1004 | vif = pool_elt_at_index (mm->interfaces, hi->dev_instance); |
| 1005 | |
| 1006 | if (vif->net_ns) |
| 1007 | { |
Nathan Skrzypczak | 4cef6de | 2021-07-19 18:21:43 +0200 | [diff] [blame] | 1008 | old_netns_fd = clib_netns_open (NULL /* self */); |
| 1009 | if ((nfd = clib_netns_open (vif->net_ns)) == -1) |
Alexander Chernavin | a6c34a1 | 2020-09-04 09:24:20 -0400 | [diff] [blame] | 1010 | { |
| 1011 | clib_warning ("Cannot open netns"); |
| 1012 | goto done; |
| 1013 | } |
Nathan Skrzypczak | 4cef6de | 2021-07-19 18:21:43 +0200 | [diff] [blame] | 1014 | if (clib_setns (nfd) == -1) |
Alexander Chernavin | a6c34a1 | 2020-09-04 09:24:20 -0400 | [diff] [blame] | 1015 | { |
| 1016 | clib_warning ("Cannot set ns"); |
| 1017 | goto done; |
| 1018 | } |
| 1019 | } |
| 1020 | |
| 1021 | if ((ctl_fd = socket (AF_INET, SOCK_STREAM, 0)) == -1) |
| 1022 | { |
| 1023 | clib_warning ("Cannot open control socket"); |
| 1024 | goto done; |
| 1025 | } |
| 1026 | |
| 1027 | ecmd.cmd = ETHTOOL_GSET; |
| 1028 | clib_memset (&ifr, 0, sizeof (ifr)); |
| 1029 | clib_memcpy (ifr.ifr_name, vif->host_if_name, |
| 1030 | strlen ((const char *) vif->host_if_name)); |
| 1031 | ifr.ifr_data = (void *) &ecmd; |
| 1032 | if ((ret = ioctl (ctl_fd, SIOCETHTOOL, &ifr)) < 0) |
| 1033 | { |
| 1034 | clib_warning ("Cannot get device settings"); |
| 1035 | goto done; |
| 1036 | } |
| 1037 | |
| 1038 | if (ethtool_cmd_speed (&ecmd) != speed) |
| 1039 | { |
| 1040 | ecmd.cmd = ETHTOOL_SSET; |
| 1041 | ethtool_cmd_speed_set (&ecmd, speed); |
| 1042 | if ((ret = ioctl (ctl_fd, SIOCETHTOOL, &ifr)) < 0) |
| 1043 | { |
| 1044 | clib_warning ("Cannot set device settings"); |
| 1045 | goto done; |
| 1046 | } |
| 1047 | } |
| 1048 | |
| 1049 | done: |
| 1050 | if (old_netns_fd != -1) |
| 1051 | { |
Nathan Skrzypczak | 4cef6de | 2021-07-19 18:21:43 +0200 | [diff] [blame] | 1052 | if (clib_setns (old_netns_fd) == -1) |
Alexander Chernavin | a6c34a1 | 2020-09-04 09:24:20 -0400 | [diff] [blame] | 1053 | { |
| 1054 | clib_warning ("Cannot set old ns"); |
| 1055 | } |
| 1056 | close (old_netns_fd); |
| 1057 | } |
| 1058 | if (nfd != -1) |
| 1059 | close (nfd); |
| 1060 | if (ctl_fd != -1) |
| 1061 | close (ctl_fd); |
| 1062 | |
| 1063 | return ret; |
| 1064 | } |
| 1065 | |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 1066 | /* tap { host-mtu <size> } configuration. */ |
| 1067 | VLIB_CONFIG_FUNCTION (tap_mtu_config, "tap"); |
| 1068 | |
| 1069 | static clib_error_t * |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1070 | tap_init (vlib_main_t * vm) |
| 1071 | { |
Damjan Marion | 2df3909 | 2017-12-04 20:03:37 +0100 | [diff] [blame] | 1072 | tap_main_t *tm = &tap_main; |
Mohsin Kazmi | a23b615 | 2018-05-17 17:21:39 +0200 | [diff] [blame] | 1073 | clib_error_t *error = 0; |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 1074 | |
Damjan Marion | 07a3857 | 2018-01-21 06:44:18 -0800 | [diff] [blame] | 1075 | tm->log_default = vlib_log_register_class ("tap", 0); |
Mohsin Kazmi | a23b615 | 2018-05-17 17:21:39 +0200 | [diff] [blame] | 1076 | vlib_log_debug (tm->log_default, "initialized"); |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 1077 | |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 1078 | tm->host_mtu_size = 0; |
| 1079 | |
Mohsin Kazmi | a23b615 | 2018-05-17 17:21:39 +0200 | [diff] [blame] | 1080 | return error; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | VLIB_INIT_FUNCTION (tap_init); |
| 1084 | |
| 1085 | /* |
| 1086 | * fd.io coding-style-patch-verification: ON |
| 1087 | * |
| 1088 | * Local Variables: |
| 1089 | * eval: (c-set-style "gnu") |
| 1090 | * End: |
| 1091 | */ |