]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/vhost/vhost.h
Merge tag 'block-5.7-2020-05-16' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / drivers / vhost / vhost.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
3a4d5c94
MT
2#ifndef _VHOST_H
3#define _VHOST_H
4
5#include <linux/eventfd.h>
6#include <linux/vhost.h>
7#include <linux/mm.h>
8#include <linux/mutex.h>
3a4d5c94
MT
9#include <linux/poll.h>
10#include <linux/file.h>
3a4d5c94
MT
11#include <linux/uio.h>
12#include <linux/virtio_config.h>
13#include <linux/virtio_ring.h>
60063497 14#include <linux/atomic.h>
0bbe3066 15#include <linux/vhost_iotlb.h>
3a4d5c94 16
c23f3445
TH
17struct vhost_work;
18typedef void (*vhost_work_fn_t)(struct vhost_work *work);
19
04b96e55 20#define VHOST_WORK_QUEUED 1
c23f3445 21struct vhost_work {
04b96e55 22 struct llist_node node;
c23f3445 23 vhost_work_fn_t fn;
04b96e55 24 unsigned long flags;
c23f3445
TH
25};
26
3a4d5c94
MT
27/* Poll a file (eventfd or socket) */
28/* Note: there's nothing vhost specific about this structure. */
29struct vhost_poll {
30 poll_table table;
31 wait_queue_head_t *wqh;
ac6424b9 32 wait_queue_entry_t wait;
c23f3445 33 struct vhost_work work;
58e3b602 34 __poll_t mask;
c23f3445 35 struct vhost_dev *dev;
3a4d5c94
MT
36};
37
163049ae
SH
38void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn);
39void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work);
526d3e7f 40bool vhost_has_work(struct vhost_dev *dev);
163049ae 41
c23f3445 42void vhost_poll_init(struct vhost_poll *poll, vhost_work_fn_t fn,
58e3b602 43 __poll_t mask, struct vhost_dev *dev);
2b8b328b 44int vhost_poll_start(struct vhost_poll *poll, struct file *file);
3a4d5c94
MT
45void vhost_poll_stop(struct vhost_poll *poll);
46void vhost_poll_flush(struct vhost_poll *poll);
47void vhost_poll_queue(struct vhost_poll *poll);
6ac1afbf 48void vhost_work_flush(struct vhost_dev *dev, struct vhost_work *work);
26b36604 49long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp);
3a4d5c94
MT
50
51struct vhost_log {
52 u64 addr;
53 u64 len;
54};
55
f8894913
JW
56enum vhost_uaddr_type {
57 VHOST_ADDR_DESC = 0,
58 VHOST_ADDR_AVAIL = 1,
59 VHOST_ADDR_USED = 2,
60 VHOST_NUM_ADDRS = 3,
61};
62
3a4d5c94
MT
63/* The virtqueue structure describes a queue attached to a device. */
64struct vhost_virtqueue {
65 struct vhost_dev *dev;
66
67 /* The actual ring of buffers. */
68 struct mutex mutex;
69 unsigned int num;
70 struct vring_desc __user *desc;
71 struct vring_avail __user *avail;
72 struct vring_used __user *used;
0bbe3066 73 const struct vhost_iotlb_map *meta_iotlb[VHOST_NUM_ADDRS];
3a4d5c94 74 struct file *kick;
3a4d5c94
MT
75 struct eventfd_ctx *call_ctx;
76 struct eventfd_ctx *error_ctx;
77 struct eventfd_ctx *log_ctx;
78
79 struct vhost_poll poll;
80
81 /* The routine to call when the Guest pings us, or timeout. */
c23f3445 82 vhost_work_fn_t handle_kick;
3a4d5c94
MT
83
84 /* Last available index we saw. */
85 u16 last_avail_idx;
86
87 /* Caches available index value from user. */
88 u16 avail_idx;
89
90 /* Last index we used. */
91 u16 last_used_idx;
92
93 /* Used flags */
94 u16 used_flags;
95
8ea8cf89
MT
96 /* Last used index value we have signalled on */
97 u16 signalled_used;
98
99 /* Last used index value we have signalled on */
100 bool signalled_used_valid;
101
3a4d5c94
MT
102 /* Log writes to used structure. */
103 bool log_used;
104 u64 log_addr;
105
e0e9b406 106 struct iovec iov[UIO_MAXIOV];
6b1e6cc7 107 struct iovec iotlb_iov[64];
e0e9b406 108 struct iovec *indirect;
e0e9b406 109 struct vring_used_elem *heads;
22fa90c7 110 /* Protected by virtqueue mutex. */
0bbe3066
JW
111 struct vhost_iotlb *umem;
112 struct vhost_iotlb *iotlb;
22fa90c7 113 void *private_data;
bd82752a 114 u64 acked_features;
429711ae 115 u64 acked_backend_features;
3a4d5c94
MT
116 /* Log write descriptors */
117 void __user *log_base;
e0e9b406 118 struct vhost_log *log;
2751c988
GK
119
120 /* Ring endianness. Defaults to legacy native endianness.
121 * Set to true when starting a modern virtio device. */
122 bool is_le;
123#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
124 /* Ring endianness requested by userspace for cross-endian support. */
125 bool user_be;
126#endif
03088137 127 u32 busyloop_timeout;
3a4d5c94
MT
128};
129
6b1e6cc7 130struct vhost_msg_node {
429711ae
JW
131 union {
132 struct vhost_msg msg;
133 struct vhost_msg_v2 msg_v2;
134 };
6b1e6cc7
JW
135 struct vhost_virtqueue *vq;
136 struct list_head node;
137};
138
3a4d5c94 139struct vhost_dev {
3a4d5c94
MT
140 struct mm_struct *mm;
141 struct mutex mutex;
3ab2e420 142 struct vhost_virtqueue **vqs;
3a4d5c94 143 int nvqs;
3a4d5c94 144 struct eventfd_ctx *log_ctx;
04b96e55 145 struct llist_head work_list;
c23f3445 146 struct task_struct *worker;
0bbe3066
JW
147 struct vhost_iotlb *umem;
148 struct vhost_iotlb *iotlb;
6b1e6cc7
JW
149 spinlock_t iotlb_lock;
150 struct list_head read_list;
151 struct list_head pending_list;
152 wait_queue_head_t wait;
b46a0bf7 153 int iov_limit;
e82b9b07
JW
154 int weight;
155 int byte_weight;
8f6a7f96 156 u64 kcov_handle;
792a4f2e
JW
157 int (*msg_handler)(struct vhost_dev *dev,
158 struct vhost_iotlb_msg *msg);
3a4d5c94
MT
159};
160
e82b9b07 161bool vhost_exceeds_weight(struct vhost_virtqueue *vq, int pkts, int total_len);
b46a0bf7 162void vhost_dev_init(struct vhost_dev *, struct vhost_virtqueue **vqs,
792a4f2e
JW
163 int nvqs, int iov_limit, int weight, int byte_weight,
164 int (*msg_handler)(struct vhost_dev *dev,
165 struct vhost_iotlb_msg *msg));
54db63c2 166long vhost_dev_set_owner(struct vhost_dev *dev);
05c05351 167bool vhost_dev_has_owner(struct vhost_dev *dev);
3a4d5c94 168long vhost_dev_check_owner(struct vhost_dev *);
0bbe3066
JW
169struct vhost_iotlb *vhost_dev_reset_owner_prepare(void);
170void vhost_dev_reset_owner(struct vhost_dev *dev, struct vhost_iotlb *iotlb);
f6f93f75 171void vhost_dev_cleanup(struct vhost_dev *);
b211616d 172void vhost_dev_stop(struct vhost_dev *);
935cdee7 173long vhost_dev_ioctl(struct vhost_dev *, unsigned int ioctl, void __user *argp);
26b36604 174long vhost_vring_ioctl(struct vhost_dev *d, unsigned int ioctl, void __user *argp);
ddd3d408
SH
175bool vhost_vq_access_ok(struct vhost_virtqueue *vq);
176bool vhost_log_access_ok(struct vhost_dev *);
3a4d5c94 177
47283bef 178int vhost_get_vq_desc(struct vhost_virtqueue *,
d5675bd2
MT
179 struct iovec iov[], unsigned int iov_count,
180 unsigned int *out_num, unsigned int *in_num,
181 struct vhost_log *log, unsigned int *log_num);
8dd014ad 182void vhost_discard_vq_desc(struct vhost_virtqueue *, int n);
3a4d5c94 183
80f7d030 184int vhost_vq_init_access(struct vhost_virtqueue *);
3a4d5c94 185int vhost_add_used(struct vhost_virtqueue *, unsigned int head, int len);
8dd014ad
DS
186int vhost_add_used_n(struct vhost_virtqueue *, struct vring_used_elem *heads,
187 unsigned count);
3a4d5c94 188void vhost_add_used_and_signal(struct vhost_dev *, struct vhost_virtqueue *,
8dd014ad
DS
189 unsigned int id, int len);
190void vhost_add_used_and_signal_n(struct vhost_dev *, struct vhost_virtqueue *,
191 struct vring_used_elem *heads, unsigned count);
192void vhost_signal(struct vhost_dev *, struct vhost_virtqueue *);
8ea8cf89 193void vhost_disable_notify(struct vhost_dev *, struct vhost_virtqueue *);
d4a60603 194bool vhost_vq_avail_empty(struct vhost_dev *, struct vhost_virtqueue *);
8ea8cf89 195bool vhost_enable_notify(struct vhost_dev *, struct vhost_virtqueue *);
3a4d5c94
MT
196
197int vhost_log_write(struct vhost_virtqueue *vq, struct vhost_log *log,
cc5e7107
JW
198 unsigned int log_num, u64 len,
199 struct iovec *iov, int count);
9b5e830b 200int vq_meta_prefetch(struct vhost_virtqueue *vq);
6b1e6cc7
JW
201
202struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type);
203void vhost_enqueue_msg(struct vhost_dev *dev,
204 struct list_head *head,
205 struct vhost_msg_node *node);
206struct vhost_msg_node *vhost_dequeue_msg(struct vhost_dev *dev,
207 struct list_head *head);
afc9a42b 208__poll_t vhost_chr_poll(struct file *file, struct vhost_dev *dev,
6b1e6cc7
JW
209 poll_table *wait);
210ssize_t vhost_chr_read_iter(struct vhost_dev *dev, struct iov_iter *to,
211 int noblock);
212ssize_t vhost_chr_write_iter(struct vhost_dev *dev,
213 struct iov_iter *from);
214int vhost_init_device_iotlb(struct vhost_dev *d, bool enabled);
3a4d5c94 215
0bbe3066
JW
216void vhost_iotlb_map_free(struct vhost_iotlb *iotlb,
217 struct vhost_iotlb_map *map);
218
3a4d5c94
MT
219#define vq_err(vq, fmt, ...) do { \
220 pr_debug(pr_fmt(fmt), ##__VA_ARGS__); \
221 if ((vq)->error_ctx) \
222 eventfd_signal((vq)->error_ctx, 1);\
223 } while (0)
224
225enum {
8ea8cf89
MT
226 VHOST_FEATURES = (1ULL << VIRTIO_F_NOTIFY_ON_EMPTY) |
227 (1ULL << VIRTIO_RING_F_INDIRECT_DESC) |
228 (1ULL << VIRTIO_RING_F_EVENT_IDX) |
4e9fa50c
MT
229 (1ULL << VHOST_F_LOG_ALL) |
230 (1ULL << VIRTIO_F_ANY_LAYOUT) |
231 (1ULL << VIRTIO_F_VERSION_1)
3a4d5c94
MT
232};
233
247643f8
EP
234/**
235 * vhost_vq_set_backend - Set backend.
236 *
237 * @vq Virtqueue.
238 * @private_data The private data.
239 *
240 * Context: Need to call with vq->mutex acquired.
241 */
242static inline void vhost_vq_set_backend(struct vhost_virtqueue *vq,
243 void *private_data)
244{
245 vq->private_data = private_data;
246}
247
248/**
249 * vhost_vq_get_backend - Get backend.
250 *
251 * @vq Virtqueue.
252 *
253 * Context: Need to call with vq->mutex acquired.
254 * Return: Private data previously set with vhost_vq_set_backend.
255 */
256static inline void *vhost_vq_get_backend(struct vhost_virtqueue *vq)
257{
258 return vq->private_data;
259}
260
bd82752a 261static inline bool vhost_has_feature(struct vhost_virtqueue *vq, int bit)
3a4d5c94 262{
bd82752a 263 return vq->acked_features & (1ULL << bit);
3a4d5c94 264}
e05fd12b 265
429711ae
JW
266static inline bool vhost_backend_has_feature(struct vhost_virtqueue *vq, int bit)
267{
268 return vq->acked_backend_features & (1ULL << bit);
269}
270
e407f39a 271#ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
ab27c07f
GK
272static inline bool vhost_is_little_endian(struct vhost_virtqueue *vq)
273{
2751c988 274 return vq->is_le;
ab27c07f 275}
e407f39a
MT
276#else
277static inline bool vhost_is_little_endian(struct vhost_virtqueue *vq)
278{
279 return virtio_legacy_is_little_endian() || vq->is_le;
280}
281#endif
ab27c07f 282
e05fd12b
MT
283/* Memory accessors */
284static inline u16 vhost16_to_cpu(struct vhost_virtqueue *vq, __virtio16 val)
285{
ab27c07f 286 return __virtio16_to_cpu(vhost_is_little_endian(vq), val);
e05fd12b
MT
287}
288
289static inline __virtio16 cpu_to_vhost16(struct vhost_virtqueue *vq, u16 val)
290{
ab27c07f 291 return __cpu_to_virtio16(vhost_is_little_endian(vq), val);
e05fd12b
MT
292}
293
294static inline u32 vhost32_to_cpu(struct vhost_virtqueue *vq, __virtio32 val)
295{
ab27c07f 296 return __virtio32_to_cpu(vhost_is_little_endian(vq), val);
e05fd12b
MT
297}
298
299static inline __virtio32 cpu_to_vhost32(struct vhost_virtqueue *vq, u32 val)
300{
ab27c07f 301 return __cpu_to_virtio32(vhost_is_little_endian(vq), val);
e05fd12b
MT
302}
303
304static inline u64 vhost64_to_cpu(struct vhost_virtqueue *vq, __virtio64 val)
305{
ab27c07f 306 return __virtio64_to_cpu(vhost_is_little_endian(vq), val);
e05fd12b
MT
307}
308
309static inline __virtio64 cpu_to_vhost64(struct vhost_virtqueue *vq, u64 val)
310{
ab27c07f 311 return __cpu_to_virtio64(vhost_is_little_endian(vq), val);
e05fd12b 312}
3a4d5c94 313#endif