vhost: revert avoid concurrency when logging dirty pages
[dpdk.git] / lib / librte_vhost / vhost.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation
3  */
4
5 #ifndef _VHOST_NET_CDEV_H_
6 #define _VHOST_NET_CDEV_H_
7 #include <stdint.h>
8 #include <stdio.h>
9 #include <stdbool.h>
10 #include <sys/types.h>
11 #include <sys/queue.h>
12 #include <unistd.h>
13 #include <linux/vhost.h>
14 #include <linux/virtio_net.h>
15 #include <sys/socket.h>
16 #include <linux/if.h>
17
18 #include <rte_log.h>
19 #include <rte_ether.h>
20 #include <rte_rwlock.h>
21
22 #include "rte_vhost.h"
23 #include "rte_vdpa.h"
24
25 /* Used to indicate that the device is running on a data core */
26 #define VIRTIO_DEV_RUNNING 1
27 /* Used to indicate that the device is ready to operate */
28 #define VIRTIO_DEV_READY 2
29 /* Used to indicate that the built-in vhost net device backend is enabled */
30 #define VIRTIO_DEV_BUILTIN_VIRTIO_NET 4
31 /* Used to indicate that the device has its own data path and configured */
32 #define VIRTIO_DEV_VDPA_CONFIGURED 8
33
34 /* Backend value set by guest. */
35 #define VIRTIO_DEV_STOPPED -1
36
37 #define BUF_VECTOR_MAX 256
38
39 /**
40  * Structure contains buffer address, length and descriptor index
41  * from vring to do scatter RX.
42  */
43 struct buf_vector {
44         uint64_t buf_addr;
45         uint32_t buf_len;
46         uint32_t desc_idx;
47 };
48
49 /*
50  * A structure to hold some fields needed in zero copy code path,
51  * mainly for associating an mbuf with the right desc_idx.
52  */
53 struct zcopy_mbuf {
54         struct rte_mbuf *mbuf;
55         uint32_t desc_idx;
56         uint16_t in_use;
57
58         TAILQ_ENTRY(zcopy_mbuf) next;
59 };
60 TAILQ_HEAD(zcopy_mbuf_list, zcopy_mbuf);
61
62 /*
63  * Structure contains the info for each batched memory copy.
64  */
65 struct batch_copy_elem {
66         void *dst;
67         void *src;
68         uint32_t len;
69         uint64_t log_addr;
70 };
71
72 /**
73  * Structure contains variables relevant to RX/TX virtqueues.
74  */
75 struct vhost_virtqueue {
76         struct vring_desc       *desc;
77         struct vring_avail      *avail;
78         struct vring_used       *used;
79         uint32_t                size;
80
81         uint16_t                last_avail_idx;
82         uint16_t                last_used_idx;
83         /* Last used index we notify to front end. */
84         uint16_t                signalled_used;
85 #define VIRTIO_INVALID_EVENTFD          (-1)
86 #define VIRTIO_UNINITIALIZED_EVENTFD    (-2)
87
88         /* Backend value to determine if device should started/stopped */
89         int                     backend;
90         int                     enabled;
91         int                     access_ok;
92         rte_spinlock_t          access_lock;
93
94         /* Used to notify the guest (trigger interrupt) */
95         int                     callfd;
96         /* Currently unused as polling mode is enabled */
97         int                     kickfd;
98
99         /* Physical address of used ring, for logging */
100         uint64_t                log_guest_addr;
101
102         uint16_t                nr_zmbuf;
103         uint16_t                zmbuf_size;
104         uint16_t                last_zmbuf_idx;
105         struct zcopy_mbuf       *zmbufs;
106         struct zcopy_mbuf_list  zmbuf_list;
107
108         struct vring_used_elem  *shadow_used_ring;
109         uint16_t                shadow_used_idx;
110         struct vhost_vring_addr ring_addrs;
111
112         struct batch_copy_elem  *batch_copy_elems;
113         uint16_t                batch_copy_nb_elems;
114
115         rte_rwlock_t    iotlb_lock;
116         rte_rwlock_t    iotlb_pending_lock;
117         struct rte_mempool *iotlb_pool;
118         TAILQ_HEAD(, vhost_iotlb_entry) iotlb_list;
119         int                             iotlb_cache_nr;
120         TAILQ_HEAD(, vhost_iotlb_entry) iotlb_pending_list;
121 } __rte_cache_aligned;
122
123 /* Old kernels have no such macros defined */
124 #ifndef VIRTIO_NET_F_GUEST_ANNOUNCE
125  #define VIRTIO_NET_F_GUEST_ANNOUNCE 21
126 #endif
127
128 #ifndef VIRTIO_NET_F_MQ
129  #define VIRTIO_NET_F_MQ                22
130 #endif
131
132 #define VHOST_MAX_VRING                 0x100
133 #define VHOST_MAX_QUEUE_PAIRS           0x80
134
135 #ifndef VIRTIO_NET_F_MTU
136  #define VIRTIO_NET_F_MTU 3
137 #endif
138
139 #ifndef VIRTIO_F_ANY_LAYOUT
140  #define VIRTIO_F_ANY_LAYOUT            27
141 #endif
142
143 /* Declare IOMMU related bits for older kernels */
144 #ifndef VIRTIO_F_IOMMU_PLATFORM
145
146 #define VIRTIO_F_IOMMU_PLATFORM 33
147
148 struct vhost_iotlb_msg {
149         __u64 iova;
150         __u64 size;
151         __u64 uaddr;
152 #define VHOST_ACCESS_RO      0x1
153 #define VHOST_ACCESS_WO      0x2
154 #define VHOST_ACCESS_RW      0x3
155         __u8 perm;
156 #define VHOST_IOTLB_MISS           1
157 #define VHOST_IOTLB_UPDATE         2
158 #define VHOST_IOTLB_INVALIDATE     3
159 #define VHOST_IOTLB_ACCESS_FAIL    4
160         __u8 type;
161 };
162
163 #define VHOST_IOTLB_MSG 0x1
164
165 struct vhost_msg {
166         int type;
167         union {
168                 struct vhost_iotlb_msg iotlb;
169                 __u8 padding[64];
170         };
171 };
172 #endif
173
174 /*
175  * Define virtio 1.0 for older kernels
176  */
177 #ifndef VIRTIO_F_VERSION_1
178  #define VIRTIO_F_VERSION_1 32
179 #endif
180
181 /* Features supported by this builtin vhost-user net driver. */
182 #define VIRTIO_NET_SUPPORTED_FEATURES ((1ULL << VIRTIO_NET_F_MRG_RXBUF) | \
183                                 (1ULL << VIRTIO_F_ANY_LAYOUT) | \
184                                 (1ULL << VIRTIO_NET_F_CTRL_VQ) | \
185                                 (1ULL << VIRTIO_NET_F_CTRL_RX) | \
186                                 (1ULL << VIRTIO_NET_F_GUEST_ANNOUNCE) | \
187                                 (1ULL << VIRTIO_NET_F_MQ)      | \
188                                 (1ULL << VIRTIO_F_VERSION_1)   | \
189                                 (1ULL << VHOST_F_LOG_ALL)      | \
190                                 (1ULL << VHOST_USER_F_PROTOCOL_FEATURES) | \
191                                 (1ULL << VIRTIO_NET_F_GSO) | \
192                                 (1ULL << VIRTIO_NET_F_HOST_TSO4) | \
193                                 (1ULL << VIRTIO_NET_F_HOST_TSO6) | \
194                                 (1ULL << VIRTIO_NET_F_HOST_UFO) | \
195                                 (1ULL << VIRTIO_NET_F_HOST_ECN) | \
196                                 (1ULL << VIRTIO_NET_F_CSUM)    | \
197                                 (1ULL << VIRTIO_NET_F_GUEST_CSUM) | \
198                                 (1ULL << VIRTIO_NET_F_GUEST_TSO4) | \
199                                 (1ULL << VIRTIO_NET_F_GUEST_TSO6) | \
200                                 (1ULL << VIRTIO_NET_F_GUEST_UFO) | \
201                                 (1ULL << VIRTIO_NET_F_GUEST_ECN) | \
202                                 (1ULL << VIRTIO_RING_F_INDIRECT_DESC) | \
203                                 (1ULL << VIRTIO_RING_F_EVENT_IDX) | \
204                                 (1ULL << VIRTIO_NET_F_MTU) | \
205                                 (1ULL << VIRTIO_F_IOMMU_PLATFORM))
206
207
208 struct guest_page {
209         uint64_t guest_phys_addr;
210         uint64_t host_phys_addr;
211         uint64_t size;
212 };
213
214 /**
215  * function prototype for the vhost backend to handler specific vhost user
216  * messages prior to the master message handling
217  *
218  * @param vid
219  *  vhost device id
220  * @param msg
221  *  Message pointer.
222  * @param require_reply
223  *  If the handler requires sending a reply, this varaible shall be written 1,
224  *  otherwise 0.
225  * @param skip_master
226  *  If the handler requires skipping the master message handling, this variable
227  *  shall be written 1, otherwise 0.
228  * @return
229  *  0 on success, -1 on failure
230  */
231 typedef int (*vhost_msg_pre_handle)(int vid, void *msg,
232                 uint32_t *require_reply, uint32_t *skip_master);
233
234 /**
235  * function prototype for the vhost backend to handler specific vhost user
236  * messages after the master message handling is done
237  *
238  * @param vid
239  *  vhost device id
240  * @param msg
241  *  Message pointer.
242  * @param require_reply
243  *  If the handler requires sending a reply, this varaible shall be written 1,
244  *  otherwise 0.
245  * @return
246  *  0 on success, -1 on failure
247  */
248 typedef int (*vhost_msg_post_handle)(int vid, void *msg,
249                 uint32_t *require_reply);
250
251 /**
252  * pre and post vhost user message handlers
253  */
254 struct vhost_user_extern_ops {
255         vhost_msg_pre_handle pre_msg_handle;
256         vhost_msg_post_handle post_msg_handle;
257 };
258
259 /**
260  * Device structure contains all configuration information relating
261  * to the device.
262  */
263 struct virtio_net {
264         /* Frontend (QEMU) memory and memory region information */
265         struct rte_vhost_memory *mem;
266         uint64_t                features;
267         uint64_t                protocol_features;
268         int                     vid;
269         uint32_t                flags;
270         uint16_t                vhost_hlen;
271         /* to tell if we need broadcast rarp packet */
272         rte_atomic16_t          broadcast_rarp;
273         uint32_t                nr_vring;
274         int                     dequeue_zero_copy;
275         struct vhost_virtqueue  *virtqueue[VHOST_MAX_QUEUE_PAIRS * 2];
276 #define IF_NAME_SZ (PATH_MAX > IFNAMSIZ ? PATH_MAX : IFNAMSIZ)
277         char                    ifname[IF_NAME_SZ];
278         uint64_t                log_size;
279         uint64_t                log_base;
280         uint64_t                log_addr;
281         struct ether_addr       mac;
282         uint16_t                mtu;
283
284         struct vhost_device_ops const *notify_ops;
285
286         uint32_t                nr_guest_pages;
287         uint32_t                max_guest_pages;
288         struct guest_page       *guest_pages;
289
290         int                     slave_req_fd;
291
292         /*
293          * Device id to identify a specific backend device.
294          * It's set to -1 for the default software implementation.
295          */
296         int                     vdpa_dev_id;
297
298         /* private data for virtio device */
299         void                    *extern_data;
300         /* pre and post vhost user message handlers for the device */
301         struct vhost_user_extern_ops extern_ops;
302 } __rte_cache_aligned;
303
304 #define VHOST_LOG_PAGE  4096
305
306 /*
307  * Atomically set a bit in memory.
308  */
309 static __rte_always_inline void
310 vhost_set_bit(unsigned int nr, volatile uint8_t *addr)
311 {
312         __sync_fetch_and_or_8(addr, (1U << nr));
313 }
314
315 static __rte_always_inline void
316 vhost_log_page(uint8_t *log_base, uint64_t page)
317 {
318         vhost_set_bit(page % 8, &log_base[page / 8]);
319 }
320
321 static __rte_always_inline void
322 vhost_log_write(struct virtio_net *dev, uint64_t addr, uint64_t len)
323 {
324         uint64_t page;
325
326         if (likely(((dev->features & (1ULL << VHOST_F_LOG_ALL)) == 0) ||
327                    !dev->log_base || !len))
328                 return;
329
330         if (unlikely(dev->log_size <= ((addr + len - 1) / VHOST_LOG_PAGE / 8)))
331                 return;
332
333         /* To make sure guest memory updates are committed before logging */
334         rte_smp_wmb();
335
336         page = addr / VHOST_LOG_PAGE;
337         while (page * VHOST_LOG_PAGE < addr + len) {
338                 vhost_log_page((uint8_t *)(uintptr_t)dev->log_base, page);
339                 page += 1;
340         }
341 }
342
343 static __rte_always_inline void
344 vhost_log_used_vring(struct virtio_net *dev, struct vhost_virtqueue *vq,
345                      uint64_t offset, uint64_t len)
346 {
347         vhost_log_write(dev, vq->log_guest_addr + offset, len);
348 }
349
350 /* Macros for printing using RTE_LOG */
351 #define RTE_LOGTYPE_VHOST_CONFIG RTE_LOGTYPE_USER1
352 #define RTE_LOGTYPE_VHOST_DATA   RTE_LOGTYPE_USER1
353
354 #ifdef RTE_LIBRTE_VHOST_DEBUG
355 #define VHOST_MAX_PRINT_BUFF 6072
356 #define VHOST_LOG_DEBUG(log_type, fmt, args...) \
357         RTE_LOG(DEBUG, log_type, fmt, ##args)
358 #define PRINT_PACKET(device, addr, size, header) do { \
359         char *pkt_addr = (char *)(addr); \
360         unsigned int index; \
361         char packet[VHOST_MAX_PRINT_BUFF]; \
362         \
363         if ((header)) \
364                 snprintf(packet, VHOST_MAX_PRINT_BUFF, "(%d) Header size %d: ", (device->vid), (size)); \
365         else \
366                 snprintf(packet, VHOST_MAX_PRINT_BUFF, "(%d) Packet size %d: ", (device->vid), (size)); \
367         for (index = 0; index < (size); index++) { \
368                 snprintf(packet + strnlen(packet, VHOST_MAX_PRINT_BUFF), VHOST_MAX_PRINT_BUFF - strnlen(packet, VHOST_MAX_PRINT_BUFF), \
369                         "%02hhx ", pkt_addr[index]); \
370         } \
371         snprintf(packet + strnlen(packet, VHOST_MAX_PRINT_BUFF), VHOST_MAX_PRINT_BUFF - strnlen(packet, VHOST_MAX_PRINT_BUFF), "\n"); \
372         \
373         VHOST_LOG_DEBUG(VHOST_DATA, "%s", packet); \
374 } while (0)
375 #else
376 #define VHOST_LOG_DEBUG(log_type, fmt, args...) do {} while (0)
377 #define PRINT_PACKET(device, addr, size, header) do {} while (0)
378 #endif
379
380 extern uint64_t VHOST_FEATURES;
381 #define MAX_VHOST_DEVICE        1024
382 extern struct virtio_net *vhost_devices[MAX_VHOST_DEVICE];
383
384 /* Convert guest physical address to host physical address */
385 static __rte_always_inline rte_iova_t
386 gpa_to_hpa(struct virtio_net *dev, uint64_t gpa, uint64_t size)
387 {
388         uint32_t i;
389         struct guest_page *page;
390
391         for (i = 0; i < dev->nr_guest_pages; i++) {
392                 page = &dev->guest_pages[i];
393
394                 if (gpa >= page->guest_phys_addr &&
395                     gpa + size < page->guest_phys_addr + page->size) {
396                         return gpa - page->guest_phys_addr +
397                                page->host_phys_addr;
398                 }
399         }
400
401         return 0;
402 }
403
404 static __rte_always_inline struct virtio_net *
405 get_device(int vid)
406 {
407         struct virtio_net *dev = vhost_devices[vid];
408
409         if (unlikely(!dev)) {
410                 RTE_LOG(ERR, VHOST_CONFIG,
411                         "(%d) device not found.\n", vid);
412         }
413
414         return dev;
415 }
416
417 int vhost_new_device(void);
418 void cleanup_device(struct virtio_net *dev, int destroy);
419 void reset_device(struct virtio_net *dev);
420 void vhost_destroy_device(int);
421
422 void cleanup_vq(struct vhost_virtqueue *vq, int destroy);
423 void free_vq(struct vhost_virtqueue *vq);
424
425 int alloc_vring_queue(struct virtio_net *dev, uint32_t vring_idx);
426
427 void vhost_attach_vdpa_device(int vid, int did);
428 void vhost_detach_vdpa_device(int vid);
429
430 void vhost_set_ifname(int, const char *if_name, unsigned int if_len);
431 void vhost_enable_dequeue_zero_copy(int vid);
432 void vhost_set_builtin_virtio_net(int vid, bool enable);
433
434 struct vhost_device_ops const *vhost_driver_callback_get(const char *path);
435
436 /*
437  * Backend-specific cleanup.
438  *
439  * TODO: fix it; we have one backend now
440  */
441 void vhost_backend_cleanup(struct virtio_net *dev);
442
443 uint64_t __vhost_iova_to_vva(struct virtio_net *dev, struct vhost_virtqueue *vq,
444                         uint64_t iova, uint64_t *len, uint8_t perm);
445 int vring_translate(struct virtio_net *dev, struct vhost_virtqueue *vq);
446 void vring_invalidate(struct virtio_net *dev, struct vhost_virtqueue *vq);
447
448 static __rte_always_inline uint64_t
449 vhost_iova_to_vva(struct virtio_net *dev, struct vhost_virtqueue *vq,
450                         uint64_t iova, uint64_t *len, uint8_t perm)
451 {
452         if (!(dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)))
453                 return rte_vhost_va_from_guest_pa(dev->mem, iova, len);
454
455         return __vhost_iova_to_vva(dev, vq, iova, len, perm);
456 }
457
458 #define vhost_used_event(vr) \
459         (*(volatile uint16_t*)&(vr)->avail->ring[(vr)->size])
460
461 /*
462  * The following is used with VIRTIO_RING_F_EVENT_IDX.
463  * Assuming a given event_idx value from the other size, if we have
464  * just incremented index from old to new_idx, should we trigger an
465  * event?
466  */
467 static __rte_always_inline int
468 vhost_need_event(uint16_t event_idx, uint16_t new_idx, uint16_t old)
469 {
470         return (uint16_t)(new_idx - event_idx - 1) < (uint16_t)(new_idx - old);
471 }
472
473 static __rte_always_inline void
474 vhost_vring_call(struct virtio_net *dev, struct vhost_virtqueue *vq)
475 {
476         /* Flush used->idx update before we read avail->flags. */
477         rte_mb();
478
479         /* Don't kick guest if we don't reach index specified by guest. */
480         if (dev->features & (1ULL << VIRTIO_RING_F_EVENT_IDX)) {
481                 uint16_t old = vq->signalled_used;
482                 uint16_t new = vq->last_used_idx;
483
484                 VHOST_LOG_DEBUG(VHOST_DATA, "%s: used_event_idx=%d, old=%d, new=%d\n",
485                         __func__,
486                         vhost_used_event(vq),
487                         old, new);
488                 if (vhost_need_event(vhost_used_event(vq), new, old)
489                         && (vq->callfd >= 0)) {
490                         vq->signalled_used = vq->last_used_idx;
491                         eventfd_write(vq->callfd, (eventfd_t) 1);
492                 }
493         } else {
494                 /* Kick the guest if necessary. */
495                 if (!(vq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT)
496                                 && (vq->callfd >= 0))
497                         eventfd_write(vq->callfd, (eventfd_t)1);
498         }
499 }
500
501 #endif /* _VHOST_NET_CDEV_H_ */