blob: f5ed30ad7b06b7aefa1b6b742611776765d53145 [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
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 Marion2df39092017-12-04 20:03:37 +010018#define _GNU_SOURCE
Damjan Marion8389fb92017-10-13 18:29:53 +020019#include <sys/types.h>
20#include <sys/stat.h>
Alexander Chernavina6c34a12020-09-04 09:24:20 -040021#include <sys/socket.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020022#include <fcntl.h>
23#include <net/if.h>
24#include <linux/if_tun.h>
25#include <sys/ioctl.h>
Alexander Chernavina6c34a12020-09-04 09:24:20 -040026#include <linux/ethtool.h>
27#include <linux/sockios.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020028#include <sys/eventfd.h>
Damjan Marion7c6102b2019-11-08 17:59:56 +010029#include <net/if_arp.h>
Damjan Marion7c6102b2019-11-08 17:59:56 +010030#include <limits.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020031
32#include <linux/netlink.h>
33#include <linux/rtnetlink.h>
34
35#include <vlib/vlib.h>
Lijian.Zhangba0da572019-08-21 17:51:16 +080036#include <vlib/physmem.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020037#include <vlib/unix/unix.h>
Nathan Skrzypczak4cef6de2021-07-19 18:21:43 +020038#include <vppinfra/linux/netns.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020039#include <vnet/ethernet/ethernet.h>
Damjan Marion91c6ef72017-12-01 13:34:24 +010040#include <vnet/ip/ip4_packet.h>
41#include <vnet/ip/ip6_packet.h>
Damjan Marion17fdae72017-11-30 20:56:37 +010042#include <vnet/devices/netlink.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020043#include <vnet/devices/virtio/virtio.h>
Damjan Marionc99b4cd2017-12-04 15:25:58 +010044#include <vnet/devices/tap/tap.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020045
Damjan Marion2df39092017-12-04 20:03:37 +010046tap_main_t tap_main;
47
Damjan Marion7c6102b2019-11-08 17:59:56 +010048#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 Marion8389fb92017-10-13 18:29:53 +020053#define _IOCTL(fd,a,...) \
54 if (ioctl (fd, a, __VA_ARGS__) < 0) \
55 { \
56 err = clib_error_return_unix (0, "ioctl(" #a ")"); \
Damjan Marion7c6102b2019-11-08 17:59:56 +010057 tap_log_err (vif, "%U", format_clib_error, err); \
Damjan Marion8389fb92017-10-13 18:29:53 +020058 goto error; \
59 }
60
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +000061VNET_HW_INTERFACE_CLASS (tun_device_hw_interface_class, static) = {
Mohsin Kazmi206acf82020-04-06 14:19:54 +020062 .name = "tun-device",
63 .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +000064 .tx_hash_fn_type = VNET_HASH_FN_TYPE_IP,
Mohsin Kazmi206acf82020-04-06 14:19:54 +020065};
Mohsin Kazmi206acf82020-04-06 14:19:54 +020066
Neale Ranns0cc23b72021-05-20 16:09:40 +000067#define TUN_MAX_PACKET_BYTES 65355
68#define TUN_MIN_PACKET_BYTES 64
69#define TUN_DEFAULT_PACKET_BYTES 1500
70
Damjan Marion8389fb92017-10-13 18:29:53 +020071static u32
72virtio_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi,
73 u32 flags)
74{
75 /* nothing for now */
Damjan Marion91c6ef72017-12-01 13:34:24 +010076 //TODO On MTU change call vnet_netlink_set_if_mtu
Damjan Marion8389fb92017-10-13 18:29:53 +020077 return 0;
78}
79
Neale Rannscbe8d652018-04-27 04:42:47 -070080#define TAP_MAX_INSTANCE 1024
Damjan Marion2df39092017-12-04 20:03:37 +010081
Damjan Marion7c6102b2019-11-08 17:59:56 +010082static void
83tap_free (vlib_main_t * vm, virtio_if_t * vif)
84{
85 virtio_main_t *mm = &virtio_main;
86 tap_main_t *tm = &tap_main;
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +000087 clib_error_t *err = 0;
Damjan Marion7c6102b2019-11-08 17:59:56 +010088 int i;
89
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +000090 virtio_pre_input_node_disable (vm, vif);
91
Damjan Marion7c6102b2019-11-08 17:59:56 +010092 /* *INDENT-OFF* */
93 vec_foreach_index (i, vif->vhost_fds) if (vif->vhost_fds[i] != -1)
94 close (vif->vhost_fds[i]);
95 vec_foreach_index (i, vif->rxq_vrings)
96 virtio_vring_free_rx (vm, vif, RX_QUEUE (i));
97 vec_foreach_index (i, vif->txq_vrings)
98 virtio_vring_free_tx (vm, vif, TX_QUEUE (i));
99 /* *INDENT-ON* */
100
Mohsin Kazmi108b15b2020-10-28 19:35:53 +0100101 if (vif->tap_fds)
102 {
103 _IOCTL (vif->tap_fds[0], TUNSETPERSIST, (void *) (uintptr_t) 0);
104 tap_log_dbg (vif, "TUNSETPERSIST: unset");
105 }
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000106error:
Aloys Augustin2857e782020-03-16 17:29:52 +0100107 vec_foreach_index (i, vif->tap_fds) close (vif->tap_fds[i]);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100108
Mohsin Kazmiefd967f2021-10-01 12:34:42 +0200109 vec_free (vif->tap_fds);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100110 vec_free (vif->vhost_fds);
111 vec_free (vif->rxq_vrings);
112 vec_free (vif->txq_vrings);
113 vec_free (vif->host_if_name);
114 vec_free (vif->net_ns);
115 vec_free (vif->host_bridge);
116 clib_error_free (vif->error);
117
118 tm->tap_ids = clib_bitmap_set (tm->tap_ids, vif->id, 0);
119 clib_memset (vif, 0, sizeof (*vif));
120 pool_put (mm->interfaces, vif);
121}
122
Damjan Marion91c6ef72017-12-01 13:34:24 +0100123void
Damjan Marion8389fb92017-10-13 18:29:53 +0200124tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args)
125{
Damjan Marion7c6102b2019-11-08 17:59:56 +0100126 vlib_thread_main_t *thm = vlib_get_thread_main ();
Lijian.Zhangba0da572019-08-21 17:51:16 +0800127 vlib_physmem_main_t *vpm = &vm->physmem_main;
Damjan Marion8389fb92017-10-13 18:29:53 +0200128 vnet_main_t *vnm = vnet_get_main ();
129 virtio_main_t *vim = &virtio_main;
Damjan Marion2df39092017-12-04 20:03:37 +0100130 tap_main_t *tm = &tap_main;
Damjan Marion8389fb92017-10-13 18:29:53 +0200131 vnet_sw_interface_t *sw;
132 vnet_hw_interface_t *hw;
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000133 vnet_hw_if_caps_change_t cc;
Mohsin Kazmi4834a662020-07-06 18:03:41 +0000134 int i, num_vhost_queues;
Damjan Marion2df39092017-12-04 20:03:37 +0100135 int old_netns_fd = -1;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200136 struct ifreq ifr = {.ifr_flags = IFF_NO_PI | IFF_VNET_HDR };
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000137 struct ifreq get_ifr = {.ifr_flags = 0 };
Damjan Marion8389fb92017-10-13 18:29:53 +0200138 size_t hdrsz;
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200139 vhost_memory_t *vhost_mem = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200140 virtio_if_t *vif = 0;
Damjan Marion91c6ef72017-12-01 13:34:24 +0100141 clib_error_t *err = 0;
Damjan Marion39807d02019-11-08 13:52:28 +0100142 unsigned int tap_features;
Aloys Augustin2857e782020-03-16 17:29:52 +0100143 int tfd = -1, qfd = -1, vfd = -1, nfd = -1;
Mohsin Kazmi19b697f2019-07-29 13:21:17 +0200144 char *host_if_name = 0;
Damjan Marion7c6102b2019-11-08 17:59:56 +0100145 unsigned int offload = 0;
Mohsin Kazmi4834a662020-07-06 18:03:41 +0000146 int sndbuf = 0;
Damjan Marion2df39092017-12-04 20:03:37 +0100147
148 if (args->id != ~0)
149 {
Neale Rannscbe8d652018-04-27 04:42:47 -0700150 if (clib_bitmap_get (tm->tap_ids, args->id))
Damjan Marion2df39092017-12-04 20:03:37 +0100151 {
152 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
153 args->error = clib_error_return (0, "interface already exists");
154 return;
155 }
156 }
157 else
158 {
Neale Rannscbe8d652018-04-27 04:42:47 -0700159 args->id = clib_bitmap_first_clear (tm->tap_ids);
160 }
Damjan Marion2df39092017-12-04 20:03:37 +0100161
Neale Rannscbe8d652018-04-27 04:42:47 -0700162 if (args->id > TAP_MAX_INSTANCE)
163 {
164 args->rv = VNET_API_ERROR_UNSPECIFIED;
165 args->error = clib_error_return (0, "cannot find free interface id");
166 return;
Damjan Marion2df39092017-12-04 20:03:37 +0100167 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200168
Damjan Marion7c6102b2019-11-08 17:59:56 +0100169 pool_get_zero (vim->interfaces, vif);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200170
171 if (args->tap_flags & TAP_FLAG_TUN)
172 {
173 vif->type = VIRTIO_IF_TYPE_TUN;
174 ifr.ifr_flags |= IFF_TUN;
Mohsin Kazmi4834a662020-07-06 18:03:41 +0000175
176 /*
177 * From kernel 4.20, xdp support has been added in tun_sendmsg.
178 * If sndbuf == INT_MAX, vhost batches the packet and processes
179 * them using xdp data path for tun driver. It assumes packets
180 * are ethernet frames (It needs to be fixed).
181 * To avoid xdp data path in tun driver, sndbuf value should
182 * be < INT_MAX.
183 */
184 sndbuf = INT_MAX - 1;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200185 }
186 else
187 {
188 vif->type = VIRTIO_IF_TYPE_TAP;
189 ifr.ifr_flags |= IFF_TAP;
Mohsin Kazmi4834a662020-07-06 18:03:41 +0000190 sndbuf = INT_MAX;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200191 }
192
Damjan Marion8389fb92017-10-13 18:29:53 +0200193 vif->dev_instance = vif - vim->interfaces;
Damjan Marion2df39092017-12-04 20:03:37 +0100194 vif->id = args->id;
Nathan Skrzypczak40edaf62021-12-15 18:45:59 +0100195 vif->num_txqs = clib_max (args->num_tx_queues, thm->n_vlib_mains);
Aloys Augustin2857e782020-03-16 17:29:52 +0100196 vif->num_rxqs = clib_max (args->num_rx_queues, 1);
Damjan Marion2df39092017-12-04 20:03:37 +0100197
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000198 if (args->tap_flags & TAP_FLAG_ATTACH)
199 {
Duncan Eastoe764a8782021-09-08 19:11:33 +0100200 if (args->host_if_name == NULL)
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000201 {
202 args->rv = VNET_API_ERROR_NO_MATCHING_INTERFACE;
203 err = clib_error_return (0, "host_if_name is not provided");
204 goto error;
205 }
Nathan Skrzypczak979545e2021-09-22 17:46:02 +0200206 }
207
208 /* if namespace is specified, all further netlink messages should be executed
209 * after we change our net namespace */
210 if (args->host_namespace)
211 {
212 old_netns_fd = clib_netns_open (NULL /* self */);
213 if ((nfd = clib_netns_open (args->host_namespace)) == -1)
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000214 {
Nathan Skrzypczak979545e2021-09-22 17:46:02 +0200215 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
216 args->error = clib_error_return_unix (0, "clib_netns_open '%s'",
217 args->host_namespace);
218 goto error;
219 }
220 if (clib_setns (nfd) == -1)
221 {
222 args->rv = VNET_API_ERROR_SYSCALL_ERROR_3;
223 args->error =
224 clib_error_return_unix (0, "setns '%s'", args->host_namespace);
225 goto error;
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000226 }
227 }
Aloys Augustin2857e782020-03-16 17:29:52 +0100228
Duncan Eastoe764a8782021-09-08 19:11:33 +0100229 if (args->host_if_name != NULL)
230 {
231 host_if_name = (char *) args->host_if_name;
232 clib_memcpy (ifr.ifr_name, host_if_name,
233 clib_min (IFNAMSIZ, vec_len (host_if_name)));
234 }
235
Aloys Augustin2857e782020-03-16 17:29:52 +0100236 if ((tfd = open ("/dev/net/tun", O_RDWR | O_NONBLOCK)) < 0)
Damjan Marion8389fb92017-10-13 18:29:53 +0200237 {
Damjan Marion7c6102b2019-11-08 17:59:56 +0100238 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
239 args->error = clib_error_return_unix (0, "open '/dev/net/tun'");
240 goto error;
241 }
Aloys Augustin2857e782020-03-16 17:29:52 +0100242 vec_add1 (vif->tap_fds, tfd);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100243 tap_log_dbg (vif, "open tap fd %d", tfd);
244
245 _IOCTL (tfd, TUNGETFEATURES, &tap_features);
246 tap_log_dbg (vif, "TUNGETFEATURES: features 0x%lx", tap_features);
247 if ((tap_features & IFF_VNET_HDR) == 0)
248 {
249 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
250 args->error = clib_error_return (0, "vhost-net backend not available");
Damjan Marion8389fb92017-10-13 18:29:53 +0200251 goto error;
252 }
253
Damjan Marion7c6102b2019-11-08 17:59:56 +0100254 if ((tap_features & IFF_MULTI_QUEUE) == 0)
255 {
Aloys Augustin2857e782020-03-16 17:29:52 +0100256 if (vif->num_rxqs > 1)
Damjan Marion7c6102b2019-11-08 17:59:56 +0100257 {
258 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
259 args->error = clib_error_return (0, "multiqueue not supported");
260 goto error;
261 }
Aloys Augustin2857e782020-03-16 17:29:52 +0100262 vif->num_rxqs = vif->num_txqs = 1;
Damjan Marion7c6102b2019-11-08 17:59:56 +0100263 }
264 else
265 ifr.ifr_flags |= IFF_MULTI_QUEUE;
266
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200267 hdrsz = sizeof (virtio_net_hdr_v1_t);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100268 if (args->tap_flags & TAP_FLAG_GSO)
269 {
270 offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6;
271 vif->gso_enabled = 1;
272 }
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100273 else if (args->tap_flags & TAP_FLAG_CSUM_OFFLOAD)
274 {
275 offload = TUN_F_CSUM;
276 vif->csum_offload_enabled = 1;
277 }
Damjan Marion7c6102b2019-11-08 17:59:56 +0100278
279 _IOCTL (tfd, TUNSETIFF, (void *) &ifr);
280 tap_log_dbg (vif, "TUNSETIFF fd %d name %s flags 0x%x", tfd,
281 ifr.ifr_ifrn.ifrn_name, ifr.ifr_flags);
282
283 vif->ifindex = if_nametoindex (ifr.ifr_ifrn.ifrn_name);
284 tap_log_dbg (vif, "ifindex %d", vif->ifindex);
285
286 if (!args->host_if_name)
287 host_if_name = ifr.ifr_ifrn.ifrn_name;
288 else
289 host_if_name = (char *) args->host_if_name;
290
Mohsin Kazmib49bc1a2020-02-14 17:51:04 +0000291 /*
292 * unset the persistence when attaching to existing
293 * interface
294 */
295 if (args->tap_flags & TAP_FLAG_ATTACH)
296 {
297 _IOCTL (tfd, TUNSETPERSIST, (void *) (uintptr_t) 0);
298 tap_log_dbg (vif, "TUNSETPERSIST: unset");
299 }
300
301 /* set the persistence */
302 if (args->tap_flags & TAP_FLAG_PERSIST)
303 {
304 _IOCTL (tfd, TUNSETPERSIST, (void *) (uintptr_t) 1);
305 tap_log_dbg (vif, "TUNSETPERSIST: set");
306
307 /* verify persistence is set, read the flags */
308 _IOCTL (tfd, TUNGETIFF, (void *) &get_ifr);
309 tap_log_dbg (vif, "TUNGETIFF: flags 0x%lx", get_ifr.ifr_flags);
310 if ((get_ifr.ifr_flags & IFF_PERSIST) == 0)
311 {
312 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
313 args->error = clib_error_return (0, "persistence not supported");
314 goto error;
315 }
316 }
317
Aloys Augustin2857e782020-03-16 17:29:52 +0100318 /* create additional queues on the linux side.
319 * we create as many linux queue pairs as we have rx queues
320 */
321 for (i = 1; i < vif->num_rxqs; i++)
322 {
323 if ((qfd = open ("/dev/net/tun", O_RDWR | O_NONBLOCK)) < 0)
324 {
325 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
326 args->error = clib_error_return_unix (0, "open '/dev/net/tun'");
327 goto error;
328 }
329 _IOCTL (qfd, TUNSETIFF, (void *) &ifr);
330 tap_log_dbg (vif, "TUNSETIFF fd %d name %s flags 0x%x", qfd,
331 ifr.ifr_ifrn.ifrn_name, ifr.ifr_flags);
332 vec_add1 (vif->tap_fds, qfd);
333 }
Damjan Marion7c6102b2019-11-08 17:59:56 +0100334
Aloys Augustin2857e782020-03-16 17:29:52 +0100335 for (i = 0; i < vif->num_rxqs; i++)
336 {
337 tap_log_dbg (vif, "TUNSETVNETHDRSZ: fd %d vnet_hdr_sz %u",
338 vif->tap_fds[i], hdrsz);
339 _IOCTL (vif->tap_fds[i], TUNSETVNETHDRSZ, &hdrsz);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100340
Mohsin Kazmi4834a662020-07-06 18:03:41 +0000341 tap_log_dbg (vif, "TUNSETSNDBUF: fd %d sndbuf %d", vif->tap_fds[i],
342 sndbuf);
343 _IOCTL (vif->tap_fds[i], TUNSETSNDBUF, &sndbuf);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100344
Aloys Augustin2857e782020-03-16 17:29:52 +0100345 tap_log_dbg (vif, "TUNSETOFFLOAD: fd %d offload 0x%lx", vif->tap_fds[i],
346 offload);
347 _IOCTL (vif->tap_fds[i], TUNSETOFFLOAD, offload);
348
349 if (fcntl (vif->tap_fds[i], F_SETFL, O_NONBLOCK) < 0)
350 {
351 err = clib_error_return_unix (0, "fcntl(tfd, F_SETFL, O_NONBLOCK)");
352 tap_log_err (vif, "set nonblocking: %U", format_clib_error, err);
353 goto error;
354 }
355 }
356
357 /* open as many vhost-net fds as required and set ownership */
358 num_vhost_queues = clib_max (vif->num_rxqs, vif->num_txqs);
359 for (i = 0; i < num_vhost_queues; i++)
Damjan Marion7c6102b2019-11-08 17:59:56 +0100360 {
361 if ((vfd = open ("/dev/vhost-net", O_RDWR | O_NONBLOCK)) < 0)
362 {
363 args->rv = VNET_API_ERROR_SYSCALL_ERROR_1;
364 args->error = clib_error_return_unix (0, "open '/dev/vhost-net'");
365 goto error;
366 }
367 vec_add1 (vif->vhost_fds, vfd);
368 virtio_log_debug (vif, "open vhost-net fd %d qpair %u", vfd, i);
369 _IOCTL (vfd, VHOST_SET_OWNER, 0);
370 virtio_log_debug (vif, "VHOST_SET_OWNER: fd %u", vfd);
371 }
372
373 _IOCTL (vif->vhost_fds[0], VHOST_GET_FEATURES, &vif->remote_features);
374 virtio_log_debug (vif, "VHOST_GET_FEATURES: features 0x%lx",
375 vif->remote_features);
Damjan Marion8389fb92017-10-13 18:29:53 +0200376
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200377 if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF)) == 0)
Damjan Marion8389fb92017-10-13 18:29:53 +0200378 {
Damjan Marion91c6ef72017-12-01 13:34:24 +0100379 args->rv = VNET_API_ERROR_UNSUPPORTED;
380 args->error = clib_error_return (0, "vhost-net backend doesn't support "
381 "VIRTIO_NET_F_MRG_RXBUF feature");
Damjan Marion8389fb92017-10-13 18:29:53 +0200382 goto error;
383 }
384
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200385 if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC)) ==
386 0)
Damjan Marion8389fb92017-10-13 18:29:53 +0200387 {
Damjan Marion91c6ef72017-12-01 13:34:24 +0100388 args->rv = VNET_API_ERROR_UNSUPPORTED;
389 args->error = clib_error_return (0, "vhost-net backend doesn't support "
390 "VIRTIO_RING_F_INDIRECT_DESC feature");
Damjan Marion8389fb92017-10-13 18:29:53 +0200391 goto error;
392 }
393
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200394 if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_F_VERSION_1)) == 0)
Damjan Marion8389fb92017-10-13 18:29:53 +0200395 {
Damjan Marion91c6ef72017-12-01 13:34:24 +0100396 args->rv = VNET_API_ERROR_UNSUPPORTED;
397 args->error = clib_error_return (0, "vhost-net backend doesn't support "
398 "VIRTIO_F_VERSION_1 features");
Damjan Marion8389fb92017-10-13 18:29:53 +0200399 goto error;
400 }
401
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200402 vif->features |= VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF);
403 vif->features |= VIRTIO_FEATURE (VIRTIO_F_VERSION_1);
404 vif->features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC);
405
406 virtio_set_net_hdr_size (vif);
Damjan Marion8389fb92017-10-13 18:29:53 +0200407
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200408 if (vif->type == VIRTIO_IF_TYPE_TAP)
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200409 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200410 if (ethernet_mac_address_is_zero (args->host_mac_addr.bytes))
411 ethernet_mac_address_generate (args->host_mac_addr.bytes);
412 args->error = vnet_netlink_set_link_addr (vif->ifindex,
413 args->host_mac_addr.bytes);
414 if (args->error)
415 {
416 args->rv = VNET_API_ERROR_NETLINK_ERROR;
417 goto error;
418 }
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200419
Mohsin Kazmiadd4a412020-06-26 13:47:21 +0000420 if (args->host_bridge)
Damjan Marion91c6ef72017-12-01 13:34:24 +0100421 {
Mohsin Kazmiadd4a412020-06-26 13:47:21 +0000422 args->error = vnet_netlink_set_link_master (vif->ifindex,
423 (char *)
424 args->host_bridge);
425 if (args->error)
426 {
427 args->rv = VNET_API_ERROR_NETLINK_ERROR;
428 goto error;
429 }
Damjan Marion91c6ef72017-12-01 13:34:24 +0100430 }
431 }
432
433 if (args->host_ip4_prefix_len)
434 {
435 args->error = vnet_netlink_add_ip4_addr (vif->ifindex,
436 &args->host_ip4_addr,
437 args->host_ip4_prefix_len);
438 if (args->error)
439 {
440 args->rv = VNET_API_ERROR_NETLINK_ERROR;
441 goto error;
442 }
443 }
444
445 if (args->host_ip6_prefix_len)
446 {
447 args->error = vnet_netlink_add_ip6_addr (vif->ifindex,
448 &args->host_ip6_addr,
449 args->host_ip6_prefix_len);
450 if (args->error)
451 {
452 args->rv = VNET_API_ERROR_NETLINK_ERROR;
Damjan Marion8389fb92017-10-13 18:29:53 +0200453 goto error;
454 }
455 }
456
Damjan Marion2df39092017-12-04 20:03:37 +0100457 args->error = vnet_netlink_set_link_state (vif->ifindex, 1 /* UP */ );
458 if (args->error)
459 {
460 args->rv = VNET_API_ERROR_NETLINK_ERROR;
461 goto error;
462 }
463
Damjan Marion7866c452018-01-18 13:35:11 +0100464 if (args->host_ip4_gw_set)
465 {
466 args->error = vnet_netlink_add_ip4_route (0, 0, &args->host_ip4_gw);
467 if (args->error)
468 {
469 args->rv = VNET_API_ERROR_NETLINK_ERROR;
470 goto error;
471 }
472 }
473
474 if (args->host_ip6_gw_set)
475 {
476 args->error = vnet_netlink_add_ip6_route (0, 0, &args->host_ip6_gw);
477 if (args->error)
478 {
479 args->rv = VNET_API_ERROR_NETLINK_ERROR;
480 goto error;
481 }
482 }
483
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200484 if (args->host_mtu_set)
485 {
486 args->error =
487 vnet_netlink_set_link_mtu (vif->ifindex, args->host_mtu_size);
488 if (args->error)
489 {
490 args->rv = VNET_API_ERROR_NETLINK_ERROR;
491 goto error;
492 }
493 }
494 else if (tm->host_mtu_size != 0)
495 {
496 args->error =
497 vnet_netlink_set_link_mtu (vif->ifindex, tm->host_mtu_size);
498 if (args->error)
499 {
500 args->rv = VNET_API_ERROR_NETLINK_ERROR;
501 goto error;
502 }
503 args->host_mtu_set = 1;
504 args->host_mtu_size = tm->host_mtu_size;
505 }
506
Mohsin Kazmi91592c02020-01-30 16:08:08 +0100507 /* switch back to old net namespace */
508 if (args->host_namespace)
509 {
Nathan Skrzypczak4cef6de2021-07-19 18:21:43 +0200510 if (clib_setns (old_netns_fd) == -1)
Mohsin Kazmi91592c02020-01-30 16:08:08 +0100511 {
512 args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
513 args->error = clib_error_return_unix (0, "setns '%s'",
514 args->host_namespace);
515 goto error;
516 }
517 }
518
Aloys Augustin2857e782020-03-16 17:29:52 +0100519 for (i = 0; i < num_vhost_queues; i++)
Damjan Marion7c6102b2019-11-08 17:59:56 +0100520 {
521 if (i < vif->num_rxqs && (args->error =
522 virtio_vring_init (vm, vif, RX_QUEUE (i),
523 args->rx_ring_sz)))
524 {
525 args->rv = VNET_API_ERROR_INIT_FAILED;
526 goto error;
527 }
528
529 if (i < vif->num_txqs && (args->error =
530 virtio_vring_init (vm, vif, TX_QUEUE (i),
531 args->tx_ring_sz)))
532 {
533 args->rv = VNET_API_ERROR_INIT_FAILED;
534 goto error;
535 }
536 }
537
538 /* setup features and memtable */
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200539 i = sizeof (vhost_memory_t) + sizeof (vhost_memory_region_t);
Damjan Marion8389fb92017-10-13 18:29:53 +0200540 vhost_mem = clib_mem_alloc (i);
Dave Barachb7b92992018-10-17 10:38:51 -0400541 clib_memset (vhost_mem, 0, i);
Damjan Marion8389fb92017-10-13 18:29:53 +0200542 vhost_mem->nregions = 1;
Lijian.Zhangba0da572019-08-21 17:51:16 +0800543 vhost_mem->regions[0].memory_size = vpm->max_size;
544 vhost_mem->regions[0].guest_phys_addr = vpm->base_addr;
545 vhost_mem->regions[0].userspace_addr =
546 vhost_mem->regions[0].guest_phys_addr;
Damjan Marion8389fb92017-10-13 18:29:53 +0200547
Damjan Marion7c6102b2019-11-08 17:59:56 +0100548 for (i = 0; i < vhost_mem->nregions; i++)
549 virtio_log_debug (vif, "memtable region %u memory_size 0x%lx "
550 "guest_phys_addr 0x%lx userspace_addr 0x%lx", i,
551 vhost_mem->regions[0].memory_size,
552 vhost_mem->regions[0].guest_phys_addr,
553 vhost_mem->regions[0].userspace_addr);
Damjan Marion8389fb92017-10-13 18:29:53 +0200554
Damjan Marion7c6102b2019-11-08 17:59:56 +0100555
Aloys Augustin2857e782020-03-16 17:29:52 +0100556 for (i = 0; i < num_vhost_queues; i++)
Damjan Marion8389fb92017-10-13 18:29:53 +0200557 {
Damjan Marion7c6102b2019-11-08 17:59:56 +0100558 int fd = vif->vhost_fds[i];
559 _IOCTL (fd, VHOST_SET_FEATURES, &vif->features);
560 virtio_log_debug (vif, "VHOST_SET_FEATURES: fd %u features 0x%lx",
561 fd, vif->features);
562 _IOCTL (fd, VHOST_SET_MEM_TABLE, vhost_mem);
563 virtio_log_debug (vif, "VHOST_SET_MEM_TABLE: fd %u", fd);
Damjan Marion8389fb92017-10-13 18:29:53 +0200564 }
Damjan Marion7c6102b2019-11-08 17:59:56 +0100565
566 /* finish initializing queue pair */
Aloys Augustin2857e782020-03-16 17:29:52 +0100567 for (i = 0; i < num_vhost_queues * 2; i++)
Damjan Marion7c6102b2019-11-08 17:59:56 +0100568 {
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200569 vhost_vring_addr_t addr = { 0 };
570 vhost_vring_state_t state = { 0 };
571 vhost_vring_file_t file = { 0 };
Damjan Marion7c6102b2019-11-08 17:59:56 +0100572 virtio_vring_t *vring;
573 u16 qp = i >> 1;
574 int fd = vif->vhost_fds[qp];
575
576 if (i & 1)
577 {
578 if (qp >= vif->num_txqs)
579 continue;
580 vring = vec_elt_at_index (vif->txq_vrings, qp);
581 }
582 else
583 {
584 if (qp >= vif->num_rxqs)
585 continue;
586 vring = vec_elt_at_index (vif->rxq_vrings, qp);
587 }
588
589 addr.index = state.index = file.index = vring->queue_id & 1;
590 state.num = vring->size;
591 virtio_log_debug (vif, "VHOST_SET_VRING_NUM fd %d index %u num %u", fd,
592 state.index, state.num);
593 _IOCTL (fd, VHOST_SET_VRING_NUM, &state);
594
595 addr.flags = 0;
596 addr.desc_user_addr = pointer_to_uword (vring->desc);
597 addr.avail_user_addr = pointer_to_uword (vring->avail);
598 addr.used_user_addr = pointer_to_uword (vring->used);
599
600 virtio_log_debug (vif, "VHOST_SET_VRING_ADDR fd %d index %u flags 0x%x "
601 "desc_user_addr 0x%lx avail_user_addr 0x%lx "
602 "used_user_addr 0x%lx", fd, addr.index,
603 addr.flags, addr.desc_user_addr, addr.avail_user_addr,
604 addr.used_user_addr);
605 _IOCTL (fd, VHOST_SET_VRING_ADDR, &addr);
606
607 file.fd = vring->call_fd;
608 virtio_log_debug (vif, "VHOST_SET_VRING_CALL fd %d index %u call_fd %d",
609 fd, file.index, file.fd);
610 _IOCTL (fd, VHOST_SET_VRING_CALL, &file);
611
612 file.fd = vring->kick_fd;
613 virtio_log_debug (vif, "VHOST_SET_VRING_KICK fd %d index %u kick_fd %d",
614 fd, file.index, file.fd);
615 _IOCTL (fd, VHOST_SET_VRING_KICK, &file);
616
Aloys Augustin2857e782020-03-16 17:29:52 +0100617 file.fd = vif->tap_fds[qp % vif->num_rxqs];
Damjan Marion7c6102b2019-11-08 17:59:56 +0100618 virtio_log_debug (vif, "VHOST_NET_SET_BACKEND fd %d index %u tap_fd %d",
619 fd, file.index, file.fd);
620 _IOCTL (fd, VHOST_NET_SET_BACKEND, &file);
621 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200622
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200623 if (vif->type == VIRTIO_IF_TYPE_TAP)
624 {
625 if (!args->mac_addr_set)
626 ethernet_mac_address_generate (args->mac_addr.bytes);
Damjan Marion8389fb92017-10-13 18:29:53 +0200627
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200628 clib_memcpy (vif->mac_addr, args->mac_addr.bytes, 6);
Matthew Smith2b716b12021-10-22 09:53:44 -0500629 if (args->host_bridge)
630 vif->host_bridge = format (0, "%s%c", args->host_bridge, 0);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200631 }
Mohsin Kazmi19b697f2019-07-29 13:21:17 +0200632 vif->host_if_name = format (0, "%s%c", host_if_name, 0);
Matthew Smith2b716b12021-10-22 09:53:44 -0500633 if (args->host_namespace)
634 vif->net_ns = format (0, "%s%c", args->host_namespace, 0);
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200635 vif->host_mtu_size = args->host_mtu_size;
Mohsin Kazmi86f281a2020-06-30 15:28:01 +0200636 vif->tap_flags = args->tap_flags;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200637 clib_memcpy (vif->host_mac_addr, args->host_mac_addr.bytes, 6);
Milan Lenco73e7f422017-12-14 10:04:25 +0100638 vif->host_ip4_prefix_len = args->host_ip4_prefix_len;
639 vif->host_ip6_prefix_len = args->host_ip6_prefix_len;
640 if (args->host_ip4_prefix_len)
641 clib_memcpy (&vif->host_ip4_addr, &args->host_ip4_addr, 4);
642 if (args->host_ip6_prefix_len)
643 clib_memcpy (&vif->host_ip6_addr, &args->host_ip6_addr, 16);
644
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200645 if (vif->type != VIRTIO_IF_TYPE_TUN)
Damjan Marion91c6ef72017-12-01 13:34:24 +0100646 {
Damjan Marion5c954c42022-01-06 20:36:14 +0100647 vnet_eth_interface_registration_t eir = {};
Damjan Marion8389fb92017-10-13 18:29:53 +0200648
Damjan Marion5c954c42022-01-06 20:36:14 +0100649 eir.dev_class_index = virtio_device_class.index;
650 eir.dev_instance = vif->dev_instance;
651 eir.address = vif->mac_addr;
652 eir.cb.flag_change = virtio_eth_flag_change;
653 vif->hw_if_index = vnet_eth_register_interface (vnm, &eir);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200654 }
655 else
656 {
657 vif->hw_if_index = vnet_register_interface
658 (vnm, virtio_device_class.index,
659 vif->dev_instance /* device instance */ ,
660 tun_device_hw_interface_class.index, vif->dev_instance);
661
662 }
Neale Rannscbe8d652018-04-27 04:42:47 -0700663 tm->tap_ids = clib_bitmap_set (tm->tap_ids, vif->id, 1);
Damjan Marion8389fb92017-10-13 18:29:53 +0200664 sw = vnet_get_hw_sw_interface (vnm, vif->hw_if_index);
665 vif->sw_if_index = sw->sw_if_index;
666 args->sw_if_index = vif->sw_if_index;
Mohsin Kazmic5d53272019-07-01 10:26:43 +0200667 args->rv = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200668 hw = vnet_get_hw_interface (vnm, vif->hw_if_index);
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000669 cc.mask = VNET_HW_IF_CAP_INT_MODE | VNET_HW_IF_CAP_TCP_GSO |
670 VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM;
671 cc.val = VNET_HW_IF_CAP_INT_MODE;
672
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200673 if (args->tap_flags & TAP_FLAG_GSO)
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000674 cc.val |= VNET_HW_IF_CAP_TCP_GSO | VNET_HW_IF_CAP_TX_TCP_CKSUM |
675 VNET_HW_IF_CAP_TX_UDP_CKSUM;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100676 else if (args->tap_flags & TAP_FLAG_CSUM_OFFLOAD)
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000677 cc.val |= VNET_HW_IF_CAP_TX_TCP_CKSUM | VNET_HW_IF_CAP_TX_UDP_CKSUM;
678
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200679 if ((args->tap_flags & TAP_FLAG_GSO)
680 && (args->tap_flags & TAP_FLAG_GRO_COALESCE))
681 {
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200682 virtio_set_packet_coalesce (vif);
683 }
Neale Ranns0cc23b72021-05-20 16:09:40 +0000684 if (vif->type == VIRTIO_IF_TYPE_TUN)
685 {
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100686 hw->min_frame_size = TUN_MIN_PACKET_BYTES;
687 vnet_hw_interface_set_mtu (
688 vnm, hw->sw_if_index,
689 args->host_mtu_size ? args->host_mtu_size : TUN_DEFAULT_PACKET_BYTES);
Neale Ranns0cc23b72021-05-20 16:09:40 +0000690 }
Damjan Marion7c6102b2019-11-08 17:59:56 +0100691
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000692 vnet_hw_if_change_caps (vnm, vif->hw_if_index, &cc);
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000693 virtio_pre_input_node_enable (vm, vif);
Damjan Marion94100532020-11-06 23:25:57 +0100694 virtio_vring_set_rx_queues (vm, vif);
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000695 virtio_vring_set_tx_queues (vm, vif);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100696
Damjan Marion8389fb92017-10-13 18:29:53 +0200697 vif->per_interface_next_index = ~0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200698 vif->flags |= VIRTIO_IF_FLAG_ADMIN_UP;
699 vnet_hw_interface_set_flags (vnm, vif->hw_if_index,
700 VNET_HW_INTERFACE_FLAG_LINK_UP);
Matthew Smithbd50ed12020-07-24 13:38:03 -0500701 /*
702 * Host tun/tap driver link carrier state is "up" at creation. The
703 * driver never changes this unless the backend (VPP) changes it using
704 * TUNSETCARRIER ioctl(). See tap_set_carrier().
705 */
706 vif->host_carrier_up = 1;
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000707
Damjan Marion8389fb92017-10-13 18:29:53 +0200708 goto done;
709
710error:
Damjan Marion91c6ef72017-12-01 13:34:24 +0100711 if (err)
712 {
713 ASSERT (args->error == 0);
714 args->error = err;
715 args->rv = VNET_API_ERROR_SYSCALL_ERROR_3;
716 }
Benoît Gannec30d87e2019-07-15 17:16:49 +0200717
Mohsin Kazmi91592c02020-01-30 16:08:08 +0100718 tap_log_err (vif, "%U", format_clib_error, args->error);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100719 tap_free (vm, vif);
Damjan Marion8389fb92017-10-13 18:29:53 +0200720done:
721 if (vhost_mem)
722 clib_mem_free (vhost_mem);
Damjan Marion4e671d22017-12-09 21:19:01 +0100723 if (old_netns_fd != -1)
Nathan Skrzypczak979545e2021-09-22 17:46:02 +0200724 {
725 /* in case we errored with a switched netns */
726 clib_setns (old_netns_fd);
727 close (old_netns_fd);
728 }
Damjan Marion7c6102b2019-11-08 17:59:56 +0100729 if (nfd != -1)
730 close (nfd);
Damjan Marion8389fb92017-10-13 18:29:53 +0200731}
732
733int
734tap_delete_if (vlib_main_t * vm, u32 sw_if_index)
735{
736 vnet_main_t *vnm = vnet_get_main ();
737 virtio_main_t *mm = &virtio_main;
Damjan Marion8389fb92017-10-13 18:29:53 +0200738 virtio_if_t *vif;
739 vnet_hw_interface_t *hw;
740
Dave Barach3940de32019-07-23 16:28:36 -0400741 hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200742 if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
743 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
744
745 vif = pool_elt_at_index (mm->interfaces, hw->dev_instance);
746
Matthew Smith3d18fbf2020-04-29 11:17:08 -0500747 if ((vif->type != VIRTIO_IF_TYPE_TAP) && (vif->type != VIRTIO_IF_TYPE_TUN))
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200748 return VNET_API_ERROR_INVALID_INTERFACE;
749
Damjan Marion8389fb92017-10-13 18:29:53 +0200750 /* bring down the interface */
751 vnet_hw_interface_set_flags (vnm, vif->hw_if_index, 0);
752 vnet_sw_interface_set_flags (vnm, vif->sw_if_index, 0);
753
Matthew Smith3d18fbf2020-04-29 11:17:08 -0500754 if (vif->type == VIRTIO_IF_TYPE_TAP)
755 ethernet_delete_interface (vnm, vif->hw_if_index);
756 else /* VIRTIO_IF_TYPE_TUN */
757 vnet_delete_hw_interface (vnm, vif->hw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200758 vif->hw_if_index = ~0;
759
Damjan Marion7c6102b2019-11-08 17:59:56 +0100760 tap_free (vm, vif);
Damjan Marion8389fb92017-10-13 18:29:53 +0200761
762 return 0;
763}
764
765int
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100766tap_csum_offload_enable_disable (vlib_main_t * vm, u32 sw_if_index,
767 int enable_disable)
768{
769 vnet_main_t *vnm = vnet_get_main ();
770 virtio_main_t *mm = &virtio_main;
771 virtio_if_t *vif;
772 vnet_hw_interface_t *hw;
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000773 vnet_hw_if_caps_change_t cc;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100774 clib_error_t *err = 0;
Aloys Augustin2857e782020-03-16 17:29:52 +0100775 int i = 0;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100776
777 hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
778
779 if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
780 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
781
782 vif = pool_elt_at_index (mm->interfaces, hw->dev_instance);
783
784 const unsigned int csum_offload_on = TUN_F_CSUM;
785 const unsigned int csum_offload_off = 0;
786 unsigned int offload = enable_disable ? csum_offload_on : csum_offload_off;
Aloys Augustin2857e782020-03-16 17:29:52 +0100787 vec_foreach_index (i, vif->tap_fds)
788 _IOCTL (vif->tap_fds[i], TUNSETOFFLOAD, offload);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100789 vif->gso_enabled = 0;
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200790 vif->packet_coalesce = 0;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100791
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000792 cc.mask = VNET_HW_IF_CAP_TCP_GSO | VNET_HW_IF_CAP_L4_TX_CKSUM;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100793 if (enable_disable)
794 {
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000795 cc.val = VNET_HW_IF_CAP_L4_TX_CKSUM;
796 vif->csum_offload_enabled = 1;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100797 }
798 else
799 {
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000800 cc.val = 0;
801 vif->csum_offload_enabled = 0;
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100802 }
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000803 vnet_hw_if_change_caps (vnm, vif->hw_if_index, &cc);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100804
805error:
806 if (err)
807 {
808 clib_warning ("Error %s checksum offload on sw_if_index %d",
809 enable_disable ? "enabling" : "disabling", sw_if_index);
810 return VNET_API_ERROR_SYSCALL_ERROR_3;
811 }
812 return 0;
813}
814
815int
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200816tap_gso_enable_disable (vlib_main_t * vm, u32 sw_if_index, int enable_disable,
817 int is_packet_coalesce)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200818{
819 vnet_main_t *vnm = vnet_get_main ();
820 virtio_main_t *mm = &virtio_main;
821 virtio_if_t *vif;
Dave Barach3940de32019-07-23 16:28:36 -0400822 vnet_hw_interface_t *hw;
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000823 vnet_hw_if_caps_change_t cc;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200824 clib_error_t *err = 0;
Aloys Augustin2857e782020-03-16 17:29:52 +0100825 int i = 0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200826
Dave Barach3940de32019-07-23 16:28:36 -0400827 hw = vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
828
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200829 if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
830 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
831
832 vif = pool_elt_at_index (mm->interfaces, hw->dev_instance);
833
834 const unsigned int gso_on = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6;
835 const unsigned int gso_off = 0;
836 unsigned int offload = enable_disable ? gso_on : gso_off;
Aloys Augustin2857e782020-03-16 17:29:52 +0100837 vec_foreach_index (i, vif->tap_fds)
838 _IOCTL (vif->tap_fds[i], TUNSETOFFLOAD, offload);
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000839
840 cc.mask = VNET_HW_IF_CAP_TCP_GSO | VNET_HW_IF_CAP_L4_TX_CKSUM;
841
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200842 if (enable_disable)
843 {
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000844 cc.val = cc.mask;
845 vif->gso_enabled = 1;
846 vif->csum_offload_enabled = 1;
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200847 if (is_packet_coalesce)
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000848 virtio_set_packet_coalesce (vif);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200849 }
850 else
851 {
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000852 cc.val = 0;
853 vif->gso_enabled = 0;
854 vif->csum_offload_enabled = 0;
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200855 vif->packet_coalesce = 0;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200856 }
Damjan Marionc48ec5d2022-01-10 19:38:57 +0000857 vnet_hw_if_change_caps (vnm, vif->hw_if_index, &cc);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200858
859error:
860 if (err)
861 {
862 clib_warning ("Error %s gso on sw_if_index %d",
863 enable_disable ? "enabling" : "disabling", sw_if_index);
864 return VNET_API_ERROR_SYSCALL_ERROR_3;
865 }
866 return 0;
867}
868
869int
Damjan Marion8389fb92017-10-13 18:29:53 +0200870tap_dump_ifs (tap_interface_details_t ** out_tapids)
871{
872 vnet_main_t *vnm = vnet_get_main ();
873 virtio_main_t *mm = &virtio_main;
874 virtio_if_t *vif;
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000875 virtio_vring_t *vring;
Damjan Marion8389fb92017-10-13 18:29:53 +0200876 vnet_hw_interface_t *hi;
877 tap_interface_details_t *r_tapids = NULL;
878 tap_interface_details_t *tapid = NULL;
879
880 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100881 pool_foreach (vif, mm->interfaces) {
Mohsin Kazmi86f281a2020-06-30 15:28:01 +0200882 if ((vif->type != VIRTIO_IF_TYPE_TAP)
883 && (vif->type != VIRTIO_IF_TYPE_TUN))
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200884 continue;
Damjan Marion8389fb92017-10-13 18:29:53 +0200885 vec_add2(r_tapids, tapid, 1);
Dave Barachb7b92992018-10-17 10:38:51 -0400886 clib_memset (tapid, 0, sizeof (*tapid));
Milan Lenco73e7f422017-12-14 10:04:25 +0100887 tapid->id = vif->id;
Damjan Marion8389fb92017-10-13 18:29:53 +0200888 tapid->sw_if_index = vif->sw_if_index;
889 hi = vnet_get_hw_interface (vnm, vif->hw_if_index);
890 clib_memcpy(tapid->dev_name, hi->name,
Vladimir Isaev84f3d9f2020-09-18 14:43:29 +0300891 MIN (ARRAY_LEN (tapid->dev_name) - 1, vec_len (hi->name)));
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000892 vring = vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS(0));
893 tapid->rx_ring_sz = vring->size;
894 vring = vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS(0));
895 tapid->tx_ring_sz = vring->size;
Mohsin Kazmi86f281a2020-06-30 15:28:01 +0200896 tapid->tap_flags = vif->tap_flags;
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200897 clib_memcpy(&tapid->host_mac_addr, vif->host_mac_addr, 6);
Milan Lenco73e7f422017-12-14 10:04:25 +0100898 if (vif->host_if_name)
899 {
900 clib_memcpy(tapid->host_if_name, vif->host_if_name,
901 MIN (ARRAY_LEN (tapid->host_if_name) - 1,
Mohsin Kazmi03b76a22020-10-08 17:44:36 +0200902 vec_len (vif->host_if_name)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100903 }
904 if (vif->net_ns)
905 {
906 clib_memcpy(tapid->host_namespace, vif->net_ns,
907 MIN (ARRAY_LEN (tapid->host_namespace) - 1,
Mohsin Kazmi03b76a22020-10-08 17:44:36 +0200908 vec_len (vif->net_ns)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100909 }
910 if (vif->host_bridge)
911 {
912 clib_memcpy(tapid->host_bridge, vif->host_bridge,
913 MIN (ARRAY_LEN (tapid->host_bridge) - 1,
Mohsin Kazmi03b76a22020-10-08 17:44:36 +0200914 vec_len (vif->host_bridge)));
Milan Lenco73e7f422017-12-14 10:04:25 +0100915 }
916 if (vif->host_ip4_prefix_len)
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200917 clib_memcpy(tapid->host_ip4_addr.as_u8, &vif->host_ip4_addr, 4);
Milan Lenco73e7f422017-12-14 10:04:25 +0100918 tapid->host_ip4_prefix_len = vif->host_ip4_prefix_len;
919 if (vif->host_ip6_prefix_len)
Jakub Grajciar5de4fb72019-09-03 10:40:01 +0200920 clib_memcpy(tapid->host_ip6_addr.as_u8, &vif->host_ip6_addr, 16);
Milan Lenco73e7f422017-12-14 10:04:25 +0100921 tapid->host_ip6_prefix_len = vif->host_ip6_prefix_len;
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200922 tapid->host_mtu_size = vif->host_mtu_size;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100923 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200924 /* *INDENT-ON* */
925
926 *out_tapids = r_tapids;
927
928 return 0;
929}
930
Matthew Smithbd50ed12020-07-24 13:38:03 -0500931/*
932 * Set host tap/tun interface carrier state so it will appear to host
933 * applications that the interface's link state changed.
934 *
935 * If the kernel we're building against does not have support for the
936 * TUNSETCARRIER ioctl command, do nothing.
937 */
938int
939tap_set_carrier (u32 hw_if_index, u32 carrier_up)
940{
941 int ret = 0;
942#ifdef TUNSETCARRIER
943 vnet_main_t *vnm = vnet_get_main ();
944 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
945 virtio_main_t *mm = &virtio_main;
946 virtio_if_t *vif;
947 int *fd;
948
949 vif = pool_elt_at_index (mm->interfaces, hi->dev_instance);
950 vec_foreach (fd, vif->tap_fds)
951 {
952 ret = ioctl (*fd, TUNSETCARRIER, &carrier_up);
953 if (ret < 0)
954 {
955 clib_warning ("ioctl (TUNSETCARRIER) returned %d", ret);
956 break;
957 }
958 }
959 if (!ret)
960 vif->host_carrier_up = (carrier_up != 0);
961#endif
962
963 return ret;
964}
965
Damjan Marion8389fb92017-10-13 18:29:53 +0200966static clib_error_t *
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200967tap_mtu_config (vlib_main_t * vm, unformat_input_t * input)
968{
969 tap_main_t *tm = &tap_main;
970
971 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
972 {
973 if (unformat (input, "host-mtu %d", &tm->host_mtu_size))
974 ;
975 else
976 return clib_error_return (0, "unknown input `%U'",
977 format_unformat_error, input);
978 }
979
980 return 0;
981}
982
Alexander Chernavina6c34a12020-09-04 09:24:20 -0400983/*
984 * Set host tap/tun interface speed in Mbps.
985 */
986int
987tap_set_speed (u32 hw_if_index, u32 speed)
988{
989 vnet_main_t *vnm = vnet_get_main ();
990 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
991 virtio_main_t *mm = &virtio_main;
992 virtio_if_t *vif;
993 int old_netns_fd = -1;
994 int nfd = -1;
995 int ctl_fd = -1;
996 struct ifreq ifr;
997 struct ethtool_cmd ecmd;
998 int ret = -1;
999
1000 vif = pool_elt_at_index (mm->interfaces, hi->dev_instance);
1001
1002 if (vif->net_ns)
1003 {
Nathan Skrzypczak4cef6de2021-07-19 18:21:43 +02001004 old_netns_fd = clib_netns_open (NULL /* self */);
1005 if ((nfd = clib_netns_open (vif->net_ns)) == -1)
Alexander Chernavina6c34a12020-09-04 09:24:20 -04001006 {
1007 clib_warning ("Cannot open netns");
1008 goto done;
1009 }
Nathan Skrzypczak4cef6de2021-07-19 18:21:43 +02001010 if (clib_setns (nfd) == -1)
Alexander Chernavina6c34a12020-09-04 09:24:20 -04001011 {
1012 clib_warning ("Cannot set ns");
1013 goto done;
1014 }
1015 }
1016
1017 if ((ctl_fd = socket (AF_INET, SOCK_STREAM, 0)) == -1)
1018 {
1019 clib_warning ("Cannot open control socket");
1020 goto done;
1021 }
1022
1023 ecmd.cmd = ETHTOOL_GSET;
1024 clib_memset (&ifr, 0, sizeof (ifr));
1025 clib_memcpy (ifr.ifr_name, vif->host_if_name,
1026 strlen ((const char *) vif->host_if_name));
1027 ifr.ifr_data = (void *) &ecmd;
1028 if ((ret = ioctl (ctl_fd, SIOCETHTOOL, &ifr)) < 0)
1029 {
1030 clib_warning ("Cannot get device settings");
1031 goto done;
1032 }
1033
1034 if (ethtool_cmd_speed (&ecmd) != speed)
1035 {
1036 ecmd.cmd = ETHTOOL_SSET;
1037 ethtool_cmd_speed_set (&ecmd, speed);
1038 if ((ret = ioctl (ctl_fd, SIOCETHTOOL, &ifr)) < 0)
1039 {
1040 clib_warning ("Cannot set device settings");
1041 goto done;
1042 }
1043 }
1044
1045done:
1046 if (old_netns_fd != -1)
1047 {
Nathan Skrzypczak4cef6de2021-07-19 18:21:43 +02001048 if (clib_setns (old_netns_fd) == -1)
Alexander Chernavina6c34a12020-09-04 09:24:20 -04001049 {
1050 clib_warning ("Cannot set old ns");
1051 }
1052 close (old_netns_fd);
1053 }
1054 if (nfd != -1)
1055 close (nfd);
1056 if (ctl_fd != -1)
1057 close (ctl_fd);
1058
1059 return ret;
1060}
1061
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +02001062/* tap { host-mtu <size> } configuration. */
1063VLIB_CONFIG_FUNCTION (tap_mtu_config, "tap");
1064
1065static clib_error_t *
Damjan Marion8389fb92017-10-13 18:29:53 +02001066tap_init (vlib_main_t * vm)
1067{
Damjan Marion2df39092017-12-04 20:03:37 +01001068 tap_main_t *tm = &tap_main;
Mohsin Kazmia23b6152018-05-17 17:21:39 +02001069 clib_error_t *error = 0;
Neale Rannscbe8d652018-04-27 04:42:47 -07001070
Damjan Marion07a38572018-01-21 06:44:18 -08001071 tm->log_default = vlib_log_register_class ("tap", 0);
Mohsin Kazmia23b6152018-05-17 17:21:39 +02001072 vlib_log_debug (tm->log_default, "initialized");
Neale Rannscbe8d652018-04-27 04:42:47 -07001073
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +02001074 tm->host_mtu_size = 0;
1075
Mohsin Kazmia23b6152018-05-17 17:21:39 +02001076 return error;
Damjan Marion8389fb92017-10-13 18:29:53 +02001077}
1078
1079VLIB_INIT_FUNCTION (tap_init);
1080
1081/*
1082 * fd.io coding-style-patch-verification: ON
1083 *
1084 * Local Variables:
1085 * eval: (c-set-style "gnu")
1086 * End:
1087 */