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