1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/eventfd.h>
6 #include <linux/vhost.h>
8 #include <linux/mutex.h>
9 #include <linux/poll.h>
10 #include <linux/file.h>
11 #include <linux/uio.h>
12 #include <linux/virtio_config.h>
13 #include <linux/virtio_ring.h>
14 #include <linux/atomic.h>
15 #include <linux/vhost_iotlb.h>
18 typedef void (*vhost_work_fn_t
)(struct vhost_work
*work
);
20 #define VHOST_WORK_QUEUED 1
22 struct llist_node node
;
27 /* Poll a file (eventfd or socket) */
28 /* Note: there's nothing vhost specific about this structure. */
31 wait_queue_head_t
*wqh
;
32 wait_queue_entry_t wait
;
33 struct vhost_work work
;
35 struct vhost_dev
*dev
;
38 void vhost_work_init(struct vhost_work
*work
, vhost_work_fn_t fn
);
39 void vhost_work_queue(struct vhost_dev
*dev
, struct vhost_work
*work
);
40 bool vhost_has_work(struct vhost_dev
*dev
);
42 void vhost_poll_init(struct vhost_poll
*poll
, vhost_work_fn_t fn
,
43 __poll_t mask
, struct vhost_dev
*dev
);
44 int vhost_poll_start(struct vhost_poll
*poll
, struct file
*file
);
45 void vhost_poll_stop(struct vhost_poll
*poll
);
46 void vhost_poll_flush(struct vhost_poll
*poll
);
47 void vhost_poll_queue(struct vhost_poll
*poll
);
48 void vhost_work_flush(struct vhost_dev
*dev
, struct vhost_work
*work
);
49 long vhost_vring_ioctl(struct vhost_dev
*d
, unsigned int ioctl
, void __user
*argp
);
56 enum vhost_uaddr_type
{
63 /* The virtqueue structure describes a queue attached to a device. */
64 struct vhost_virtqueue
{
65 struct vhost_dev
*dev
;
67 /* The actual ring of buffers. */
70 struct vring_desc __user
*desc
;
71 struct vring_avail __user
*avail
;
72 struct vring_used __user
*used
;
73 const struct vhost_iotlb_map
*meta_iotlb
[VHOST_NUM_ADDRS
];
75 struct eventfd_ctx
*call_ctx
;
76 struct eventfd_ctx
*error_ctx
;
77 struct eventfd_ctx
*log_ctx
;
79 struct vhost_poll poll
;
81 /* The routine to call when the Guest pings us, or timeout. */
82 vhost_work_fn_t handle_kick
;
84 /* Last available index we saw. */
87 /* Caches available index value from user. */
90 /* Last index we used. */
96 /* Last used index value we have signalled on */
99 /* Last used index value we have signalled on */
100 bool signalled_used_valid
;
102 /* Log writes to used structure. */
106 struct iovec iov
[UIO_MAXIOV
];
107 struct iovec iotlb_iov
[64];
108 struct iovec
*indirect
;
109 struct vring_used_elem
*heads
;
110 /* Protected by virtqueue mutex. */
111 struct vhost_iotlb
*umem
;
112 struct vhost_iotlb
*iotlb
;
115 u64 acked_backend_features
;
116 /* Log write descriptors */
117 void __user
*log_base
;
118 struct vhost_log
*log
;
120 /* Ring endianness. Defaults to legacy native endianness.
121 * Set to true when starting a modern virtio device. */
123 #ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
124 /* Ring endianness requested by userspace for cross-endian support. */
127 u32 busyloop_timeout
;
130 struct vhost_msg_node
{
132 struct vhost_msg msg
;
133 struct vhost_msg_v2 msg_v2
;
135 struct vhost_virtqueue
*vq
;
136 struct list_head node
;
140 struct mm_struct
*mm
;
142 struct vhost_virtqueue
**vqs
;
144 struct eventfd_ctx
*log_ctx
;
145 struct llist_head work_list
;
146 struct task_struct
*worker
;
147 struct vhost_iotlb
*umem
;
148 struct vhost_iotlb
*iotlb
;
149 spinlock_t iotlb_lock
;
150 struct list_head read_list
;
151 struct list_head pending_list
;
152 wait_queue_head_t wait
;
157 int (*msg_handler
)(struct vhost_dev
*dev
,
158 struct vhost_iotlb_msg
*msg
);
161 bool vhost_exceeds_weight(struct vhost_virtqueue
*vq
, int pkts
, int total_len
);
162 void vhost_dev_init(struct vhost_dev
*, struct vhost_virtqueue
**vqs
,
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
));
166 long vhost_dev_set_owner(struct vhost_dev
*dev
);
167 bool vhost_dev_has_owner(struct vhost_dev
*dev
);
168 long vhost_dev_check_owner(struct vhost_dev
*);
169 struct vhost_iotlb
*vhost_dev_reset_owner_prepare(void);
170 void vhost_dev_reset_owner(struct vhost_dev
*dev
, struct vhost_iotlb
*iotlb
);
171 void vhost_dev_cleanup(struct vhost_dev
*);
172 void vhost_dev_stop(struct vhost_dev
*);
173 long vhost_dev_ioctl(struct vhost_dev
*, unsigned int ioctl
, void __user
*argp
);
174 long vhost_vring_ioctl(struct vhost_dev
*d
, unsigned int ioctl
, void __user
*argp
);
175 bool vhost_vq_access_ok(struct vhost_virtqueue
*vq
);
176 bool vhost_log_access_ok(struct vhost_dev
*);
178 int vhost_get_vq_desc(struct vhost_virtqueue
*,
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
);
182 void vhost_discard_vq_desc(struct vhost_virtqueue
*, int n
);
184 int vhost_vq_init_access(struct vhost_virtqueue
*);
185 int vhost_add_used(struct vhost_virtqueue
*, unsigned int head
, int len
);
186 int vhost_add_used_n(struct vhost_virtqueue
*, struct vring_used_elem
*heads
,
188 void vhost_add_used_and_signal(struct vhost_dev
*, struct vhost_virtqueue
*,
189 unsigned int id
, int len
);
190 void vhost_add_used_and_signal_n(struct vhost_dev
*, struct vhost_virtqueue
*,
191 struct vring_used_elem
*heads
, unsigned count
);
192 void vhost_signal(struct vhost_dev
*, struct vhost_virtqueue
*);
193 void vhost_disable_notify(struct vhost_dev
*, struct vhost_virtqueue
*);
194 bool vhost_vq_avail_empty(struct vhost_dev
*, struct vhost_virtqueue
*);
195 bool vhost_enable_notify(struct vhost_dev
*, struct vhost_virtqueue
*);
197 int vhost_log_write(struct vhost_virtqueue
*vq
, struct vhost_log
*log
,
198 unsigned int log_num
, u64 len
,
199 struct iovec
*iov
, int count
);
200 int vq_meta_prefetch(struct vhost_virtqueue
*vq
);
202 struct vhost_msg_node
*vhost_new_msg(struct vhost_virtqueue
*vq
, int type
);
203 void vhost_enqueue_msg(struct vhost_dev
*dev
,
204 struct list_head
*head
,
205 struct vhost_msg_node
*node
);
206 struct vhost_msg_node
*vhost_dequeue_msg(struct vhost_dev
*dev
,
207 struct list_head
*head
);
208 __poll_t
vhost_chr_poll(struct file
*file
, struct vhost_dev
*dev
,
210 ssize_t
vhost_chr_read_iter(struct vhost_dev
*dev
, struct iov_iter
*to
,
212 ssize_t
vhost_chr_write_iter(struct vhost_dev
*dev
,
213 struct iov_iter
*from
);
214 int vhost_init_device_iotlb(struct vhost_dev
*d
, bool enabled
);
216 void vhost_iotlb_map_free(struct vhost_iotlb
*iotlb
,
217 struct vhost_iotlb_map
*map
);
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);\
226 VHOST_FEATURES
= (1ULL << VIRTIO_F_NOTIFY_ON_EMPTY
) |
227 (1ULL << VIRTIO_RING_F_INDIRECT_DESC
) |
228 (1ULL << VIRTIO_RING_F_EVENT_IDX
) |
229 (1ULL << VHOST_F_LOG_ALL
) |
230 (1ULL << VIRTIO_F_ANY_LAYOUT
) |
231 (1ULL << VIRTIO_F_VERSION_1
)
235 * vhost_vq_set_backend - Set backend.
238 * @private_data The private data.
240 * Context: Need to call with vq->mutex acquired.
242 static inline void vhost_vq_set_backend(struct vhost_virtqueue
*vq
,
245 vq
->private_data
= private_data
;
249 * vhost_vq_get_backend - Get backend.
253 * Context: Need to call with vq->mutex acquired.
254 * Return: Private data previously set with vhost_vq_set_backend.
256 static inline void *vhost_vq_get_backend(struct vhost_virtqueue
*vq
)
258 return vq
->private_data
;
261 static inline bool vhost_has_feature(struct vhost_virtqueue
*vq
, int bit
)
263 return vq
->acked_features
& (1ULL << bit
);
266 static inline bool vhost_backend_has_feature(struct vhost_virtqueue
*vq
, int bit
)
268 return vq
->acked_backend_features
& (1ULL << bit
);
271 #ifdef CONFIG_VHOST_CROSS_ENDIAN_LEGACY
272 static inline bool vhost_is_little_endian(struct vhost_virtqueue
*vq
)
277 static inline bool vhost_is_little_endian(struct vhost_virtqueue
*vq
)
279 return virtio_legacy_is_little_endian() || vq
->is_le
;
283 /* Memory accessors */
284 static inline u16
vhost16_to_cpu(struct vhost_virtqueue
*vq
, __virtio16 val
)
286 return __virtio16_to_cpu(vhost_is_little_endian(vq
), val
);
289 static inline __virtio16
cpu_to_vhost16(struct vhost_virtqueue
*vq
, u16 val
)
291 return __cpu_to_virtio16(vhost_is_little_endian(vq
), val
);
294 static inline u32
vhost32_to_cpu(struct vhost_virtqueue
*vq
, __virtio32 val
)
296 return __virtio32_to_cpu(vhost_is_little_endian(vq
), val
);
299 static inline __virtio32
cpu_to_vhost32(struct vhost_virtqueue
*vq
, u32 val
)
301 return __cpu_to_virtio32(vhost_is_little_endian(vq
), val
);
304 static inline u64
vhost64_to_cpu(struct vhost_virtqueue
*vq
, __virtio64 val
)
306 return __virtio64_to_cpu(vhost_is_little_endian(vq
), val
);
309 static inline __virtio64
cpu_to_vhost64(struct vhost_virtqueue
*vq
, u64 val
)
311 return __cpu_to_virtio64(vhost_is_little_endian(vq
), val
);