net/virtio: add virtio-user memory tables ops
[dpdk.git] / drivers / net / virtio / virtio_user / vhost_kernel.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016 Intel Corporation
3  */
4
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <errno.h>
10
11 #include <rte_memory.h>
12
13 #include "vhost.h"
14 #include "virtio_user_dev.h"
15 #include "vhost_kernel_tap.h"
16
17 struct vhost_memory_kernel {
18         uint32_t nregions;
19         uint32_t padding;
20         struct vhost_memory_region regions[0];
21 };
22
23 /* vhost kernel ioctls */
24 #define VHOST_VIRTIO 0xAF
25 #define VHOST_GET_FEATURES _IOR(VHOST_VIRTIO, 0x00, __u64)
26 #define VHOST_SET_FEATURES _IOW(VHOST_VIRTIO, 0x00, __u64)
27 #define VHOST_SET_OWNER _IO(VHOST_VIRTIO, 0x01)
28 #define VHOST_RESET_OWNER _IO(VHOST_VIRTIO, 0x02)
29 #define VHOST_SET_MEM_TABLE _IOW(VHOST_VIRTIO, 0x03, struct vhost_memory_kernel)
30 #define VHOST_SET_LOG_BASE _IOW(VHOST_VIRTIO, 0x04, __u64)
31 #define VHOST_SET_LOG_FD _IOW(VHOST_VIRTIO, 0x07, int)
32 #define VHOST_SET_VRING_NUM _IOW(VHOST_VIRTIO, 0x10, struct vhost_vring_state)
33 #define VHOST_SET_VRING_ADDR _IOW(VHOST_VIRTIO, 0x11, struct vhost_vring_addr)
34 #define VHOST_SET_VRING_BASE _IOW(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
35 #define VHOST_GET_VRING_BASE _IOWR(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
36 #define VHOST_SET_VRING_KICK _IOW(VHOST_VIRTIO, 0x20, struct vhost_vring_file)
37 #define VHOST_SET_VRING_CALL _IOW(VHOST_VIRTIO, 0x21, struct vhost_vring_file)
38 #define VHOST_SET_VRING_ERR _IOW(VHOST_VIRTIO, 0x22, struct vhost_vring_file)
39 #define VHOST_NET_SET_BACKEND _IOW(VHOST_VIRTIO, 0x30, struct vhost_vring_file)
40
41 /* with below features, vhost kernel does not need to do the checksum and TSO,
42  * these info will be passed to virtio_user through virtio net header.
43  */
44 #define VHOST_KERNEL_GUEST_OFFLOADS_MASK        \
45         ((1ULL << VIRTIO_NET_F_GUEST_CSUM) |    \
46          (1ULL << VIRTIO_NET_F_GUEST_TSO4) |    \
47          (1ULL << VIRTIO_NET_F_GUEST_TSO6) |    \
48          (1ULL << VIRTIO_NET_F_GUEST_ECN)  |    \
49          (1ULL << VIRTIO_NET_F_GUEST_UFO))
50
51 /* with below features, when flows from virtio_user to vhost kernel
52  * (1) if flows goes up through the kernel networking stack, it does not need
53  * to verify checksum, which can save CPU cycles;
54  * (2) if flows goes through a Linux bridge and outside from an interface
55  * (kernel driver), checksum and TSO will be done by GSO in kernel or even
56  * offloaded into real physical device.
57  */
58 #define VHOST_KERNEL_HOST_OFFLOADS_MASK         \
59         ((1ULL << VIRTIO_NET_F_HOST_TSO4) |     \
60          (1ULL << VIRTIO_NET_F_HOST_TSO6) |     \
61          (1ULL << VIRTIO_NET_F_CSUM))
62
63 static uint64_t max_regions = 64;
64
65 static void
66 get_vhost_kernel_max_regions(void)
67 {
68         int fd;
69         char buf[20] = {'\0'};
70
71         fd = open("/sys/module/vhost/parameters/max_mem_regions", O_RDONLY);
72         if (fd < 0)
73                 return;
74
75         if (read(fd, buf, sizeof(buf) - 1) > 0)
76                 max_regions = strtoull(buf, NULL, 10);
77
78         close(fd);
79 }
80
81 static int
82 vhost_kernel_ioctl(int fd, uint64_t request, void *arg)
83 {
84         int ret;
85
86         ret = ioctl(fd, request, arg);
87         if (ret) {
88                 PMD_DRV_LOG(ERR, "Vhost-kernel ioctl %"PRIu64" failed (%s)",
89                                 request, strerror(errno));
90                 return -1;
91         }
92
93         return 0;
94 }
95
96 static int
97 vhost_kernel_set_owner(struct virtio_user_dev *dev)
98 {
99         return vhost_kernel_ioctl(dev->vhostfds[0], VHOST_SET_OWNER, NULL);
100 }
101
102 static int
103 vhost_kernel_get_features(struct virtio_user_dev *dev, uint64_t *features)
104 {
105         int ret;
106         unsigned int tap_features;
107
108         ret = vhost_kernel_ioctl(dev->vhostfds[0], VHOST_GET_FEATURES, features);
109         if (ret < 0) {
110                 PMD_DRV_LOG(ERR, "Failed to get features");
111                 return -1;
112         }
113
114         ret = tap_support_features(&tap_features);
115         if (ret < 0) {
116                 PMD_DRV_LOG(ERR, "Failed to get TAP features");
117                 return -1;
118         }
119
120         /* with tap as the backend, all these features are supported
121          * but not claimed by vhost-net, so we add them back when
122          * reporting to upper layer.
123          */
124         if (tap_features & IFF_VNET_HDR) {
125                 *features |= VHOST_KERNEL_GUEST_OFFLOADS_MASK;
126                 *features |= VHOST_KERNEL_HOST_OFFLOADS_MASK;
127         }
128
129         /* vhost_kernel will not declare this feature, but it does
130          * support multi-queue.
131          */
132         if (tap_features & IFF_MULTI_QUEUE)
133                 *features |= (1ull << VIRTIO_NET_F_MQ);
134
135         return 0;
136 }
137
138 static int
139 vhost_kernel_set_features(struct virtio_user_dev *dev, uint64_t features)
140 {
141         /* We don't need memory protection here */
142         features &= ~(1ULL << VIRTIO_F_IOMMU_PLATFORM);
143         /* VHOST kernel does not know about below flags */
144         features &= ~VHOST_KERNEL_GUEST_OFFLOADS_MASK;
145         features &= ~VHOST_KERNEL_HOST_OFFLOADS_MASK;
146         features &= ~(1ULL << VIRTIO_NET_F_MQ);
147
148         return vhost_kernel_ioctl(dev->vhostfds[0], VHOST_SET_FEATURES, &features);
149 }
150
151 static int
152 add_memseg_list(const struct rte_memseg_list *msl, void *arg)
153 {
154         struct vhost_memory_kernel *vm = arg;
155         struct vhost_memory_region *mr;
156         void *start_addr;
157         uint64_t len;
158
159         if (msl->external)
160                 return 0;
161
162         if (vm->nregions >= max_regions)
163                 return -1;
164
165         start_addr = msl->base_va;
166         len = msl->page_sz * msl->memseg_arr.len;
167
168         mr = &vm->regions[vm->nregions++];
169
170         mr->guest_phys_addr = (uint64_t)(uintptr_t)start_addr;
171         mr->userspace_addr = (uint64_t)(uintptr_t)start_addr;
172         mr->memory_size = len;
173         mr->mmap_offset = 0; /* flags_padding */
174
175         PMD_DRV_LOG(DEBUG, "index=%u addr=%p len=%" PRIu64,
176                         vm->nregions - 1, start_addr, len);
177
178         return 0;
179 }
180
181 /* By default, vhost kernel module allows 64 regions, but DPDK may
182  * have much more memory regions. Below function will treat each
183  * contiguous memory space reserved by DPDK as one region.
184  */
185 static int
186 vhost_kernel_set_memory_table(struct virtio_user_dev *dev)
187 {
188         struct vhost_memory_kernel *vm;
189         int ret;
190
191         vm = malloc(sizeof(struct vhost_memory_kernel) +
192                         max_regions *
193                         sizeof(struct vhost_memory_region));
194         if (!vm)
195                 goto err;
196
197         vm->nregions = 0;
198         vm->padding = 0;
199
200         /*
201          * The memory lock has already been taken by memory subsystem
202          * or virtio_user_start_device().
203          */
204         ret = rte_memseg_list_walk_thread_unsafe(add_memseg_list, vm);
205         if (ret < 0)
206                 goto err_free;
207
208         ret = vhost_kernel_ioctl(dev->vhostfds[0], VHOST_SET_MEM_TABLE, vm);
209         if (ret < 0)
210                 goto err_free;
211
212         free(vm);
213
214         return 0;
215 err_free:
216         free(vm);
217 err:
218         PMD_DRV_LOG(ERR, "Failed to set memory table");
219         return -1;
220 }
221
222 static uint64_t vhost_req_user_to_kernel[] = {
223         [VHOST_USER_RESET_OWNER] = VHOST_RESET_OWNER,
224         [VHOST_USER_SET_VRING_CALL] = VHOST_SET_VRING_CALL,
225         [VHOST_USER_SET_VRING_NUM] = VHOST_SET_VRING_NUM,
226         [VHOST_USER_SET_VRING_BASE] = VHOST_SET_VRING_BASE,
227         [VHOST_USER_GET_VRING_BASE] = VHOST_GET_VRING_BASE,
228         [VHOST_USER_SET_VRING_ADDR] = VHOST_SET_VRING_ADDR,
229         [VHOST_USER_SET_VRING_KICK] = VHOST_SET_VRING_KICK,
230 };
231
232 static int
233 vhost_kernel_send_request(struct virtio_user_dev *dev,
234                    enum vhost_user_request req,
235                    void *arg)
236 {
237         int ret = -1;
238         unsigned int i;
239         uint64_t req_kernel;
240         int vhostfd;
241         unsigned int queue_sel;
242
243         PMD_DRV_LOG(INFO, "%s", vhost_msg_strings[req]);
244
245         req_kernel = vhost_req_user_to_kernel[req];
246
247         switch (req_kernel) {
248         case VHOST_SET_VRING_NUM:
249         case VHOST_SET_VRING_ADDR:
250         case VHOST_SET_VRING_BASE:
251         case VHOST_GET_VRING_BASE:
252         case VHOST_SET_VRING_KICK:
253         case VHOST_SET_VRING_CALL:
254                 queue_sel = *(unsigned int *)arg;
255                 vhostfd = dev->vhostfds[queue_sel / 2];
256                 *(unsigned int *)arg = queue_sel % 2;
257                 PMD_DRV_LOG(DEBUG, "vhostfd=%d, index=%u",
258                             vhostfd, *(unsigned int *)arg);
259                 break;
260         default:
261                 vhostfd = -1;
262         }
263         if (vhostfd == -1) {
264                 for (i = 0; i < dev->max_queue_pairs; ++i) {
265                         if (dev->vhostfds[i] < 0)
266                                 continue;
267
268                         ret = ioctl(dev->vhostfds[i], req_kernel, arg);
269                         if (ret < 0)
270                                 break;
271                 }
272         } else {
273                 ret = ioctl(vhostfd, req_kernel, arg);
274         }
275
276         if (ret < 0)
277                 PMD_DRV_LOG(ERR, "%s failed: %s",
278                             vhost_msg_strings[req], strerror(errno));
279
280         return ret;
281 }
282
283 /**
284  * Set up environment to talk with a vhost kernel backend.
285  *
286  * @return
287  *   - (-1) if fail to set up;
288  *   - (>=0) if successful.
289  */
290 static int
291 vhost_kernel_setup(struct virtio_user_dev *dev)
292 {
293         int vhostfd;
294         uint32_t i;
295
296         get_vhost_kernel_max_regions();
297
298         for (i = 0; i < dev->max_queue_pairs; ++i) {
299                 vhostfd = open(dev->path, O_RDWR);
300                 if (vhostfd < 0) {
301                         PMD_DRV_LOG(ERR, "fail to open %s, %s",
302                                     dev->path, strerror(errno));
303                         return -1;
304                 }
305
306                 dev->vhostfds[i] = vhostfd;
307         }
308
309         return 0;
310 }
311
312 static int
313 vhost_kernel_set_backend(int vhostfd, int tapfd)
314 {
315         struct vhost_vring_file f;
316
317         f.fd = tapfd;
318         f.index = 0;
319         if (ioctl(vhostfd, VHOST_NET_SET_BACKEND, &f) < 0) {
320                 PMD_DRV_LOG(ERR, "VHOST_NET_SET_BACKEND fails, %s",
321                                 strerror(errno));
322                 return -1;
323         }
324
325         f.index = 1;
326         if (ioctl(vhostfd, VHOST_NET_SET_BACKEND, &f) < 0) {
327                 PMD_DRV_LOG(ERR, "VHOST_NET_SET_BACKEND fails, %s",
328                                 strerror(errno));
329                 return -1;
330         }
331
332         return 0;
333 }
334
335 static int
336 vhost_kernel_enable_queue_pair(struct virtio_user_dev *dev,
337                                uint16_t pair_idx,
338                                int enable)
339 {
340         int hdr_size;
341         int vhostfd;
342         int tapfd;
343         int req_mq = (dev->max_queue_pairs > 1);
344
345         vhostfd = dev->vhostfds[pair_idx];
346
347         if (dev->qp_enabled[pair_idx] == enable)
348                 return 0;
349
350         if (!enable) {
351                 tapfd = dev->tapfds[pair_idx];
352                 if (vhost_kernel_set_backend(vhostfd, -1) < 0) {
353                         PMD_DRV_LOG(ERR, "fail to set backend for vhost kernel");
354                         return -1;
355                 }
356                 if (req_mq && vhost_kernel_tap_set_queue(tapfd, false) < 0) {
357                         PMD_DRV_LOG(ERR, "fail to disable tap for vhost kernel");
358                         return -1;
359                 }
360                 dev->qp_enabled[pair_idx] = false;
361                 return 0;
362         }
363
364         if (dev->tapfds[pair_idx] >= 0) {
365                 tapfd = dev->tapfds[pair_idx];
366                 if (vhost_kernel_tap_set_offload(tapfd, dev->features) == -1)
367                         return -1;
368                 if (req_mq && vhost_kernel_tap_set_queue(tapfd, true) < 0) {
369                         PMD_DRV_LOG(ERR, "fail to enable tap for vhost kernel");
370                         return -1;
371                 }
372                 goto set_backend;
373         }
374
375         if ((dev->features & (1ULL << VIRTIO_NET_F_MRG_RXBUF)) ||
376             (dev->features & (1ULL << VIRTIO_F_VERSION_1)))
377                 hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf);
378         else
379                 hdr_size = sizeof(struct virtio_net_hdr);
380
381         tapfd = vhost_kernel_open_tap(&dev->ifname, hdr_size, req_mq,
382                          (char *)dev->mac_addr, dev->features);
383         if (tapfd < 0) {
384                 PMD_DRV_LOG(ERR, "fail to open tap for vhost kernel");
385                 return -1;
386         }
387
388         dev->tapfds[pair_idx] = tapfd;
389
390 set_backend:
391         if (vhost_kernel_set_backend(vhostfd, tapfd) < 0) {
392                 PMD_DRV_LOG(ERR, "fail to set backend for vhost kernel");
393                 return -1;
394         }
395
396         dev->qp_enabled[pair_idx] = true;
397         return 0;
398 }
399
400 struct virtio_user_backend_ops virtio_ops_kernel = {
401         .setup = vhost_kernel_setup,
402         .set_owner = vhost_kernel_set_owner,
403         .get_features = vhost_kernel_get_features,
404         .set_features = vhost_kernel_set_features,
405         .set_memory_table = vhost_kernel_set_memory_table,
406         .send_request = vhost_kernel_send_request,
407         .enable_qp = vhost_kernel_enable_queue_pair
408 };