blob: 4d08f45a9c29aeba18fe4c174bce0a644a090d57 [file] [log] [blame]
Rusty Russell0a8a69d2007-10-22 11:03:40 +10001/* Virtio ring implementation.
2 *
3 * Copyright 2007 Rusty Russell IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include <linux/virtio.h>
20#include <linux/virtio_ring.h>
Rusty Russelle34f8722008-07-25 12:06:13 -050021#include <linux/virtio_config.h>
Rusty Russell0a8a69d2007-10-22 11:03:40 +100022#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerb5a2c4f2011-07-03 16:20:30 -040024#include <linux/module.h>
Rusty Russelle93300b2012-01-12 15:44:43 +103025#include <linux/hrtimer.h>
Joel Stanley6abb2dd2014-02-13 15:03:46 +103026#include <linux/kmemleak.h>
Rusty Russell0a8a69d2007-10-22 11:03:40 +100027
28#ifdef DEBUG
29/* For development, we want to crash whenever the ring is screwed. */
Rusty Russell9499f5e2009-06-12 22:16:35 -060030#define BAD_RING(_vq, fmt, args...) \
31 do { \
32 dev_err(&(_vq)->vq.vdev->dev, \
33 "%s:"fmt, (_vq)->vq.name, ##args); \
34 BUG(); \
35 } while (0)
Rusty Russellc5f841f2009-03-30 21:55:22 -060036/* Caller is supposed to guarantee no reentry. */
37#define START_USE(_vq) \
38 do { \
39 if ((_vq)->in_use) \
Rusty Russell9499f5e2009-06-12 22:16:35 -060040 panic("%s:in_use = %i\n", \
41 (_vq)->vq.name, (_vq)->in_use); \
Rusty Russellc5f841f2009-03-30 21:55:22 -060042 (_vq)->in_use = __LINE__; \
Rusty Russell9499f5e2009-06-12 22:16:35 -060043 } while (0)
Roel Kluin3a35ce72009-01-22 16:42:57 +010044#define END_USE(_vq) \
Rusty Russell97a545a2010-02-24 14:22:22 -060045 do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; } while(0)
Rusty Russell0a8a69d2007-10-22 11:03:40 +100046#else
Rusty Russell9499f5e2009-06-12 22:16:35 -060047#define BAD_RING(_vq, fmt, args...) \
48 do { \
49 dev_err(&_vq->vq.vdev->dev, \
50 "%s:"fmt, (_vq)->vq.name, ##args); \
51 (_vq)->broken = true; \
52 } while (0)
Rusty Russell0a8a69d2007-10-22 11:03:40 +100053#define START_USE(vq)
54#define END_USE(vq)
55#endif
56
57struct vring_virtqueue
58{
59 struct virtqueue vq;
60
61 /* Actual memory layout for this queue */
62 struct vring vring;
63
Rusty Russell7b21e342012-01-12 15:44:42 +103064 /* Can we use weak barriers? */
65 bool weak_barriers;
66
Rusty Russell0a8a69d2007-10-22 11:03:40 +100067 /* Other side has made a mess, don't try any more. */
68 bool broken;
69
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +010070 /* Host supports indirect buffers */
71 bool indirect;
72
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +030073 /* Host publishes avail event idx */
74 bool event;
75
Rusty Russell0a8a69d2007-10-22 11:03:40 +100076 /* Head of free buffer list. */
77 unsigned int free_head;
78 /* Number we've added since last sync. */
79 unsigned int num_added;
80
81 /* Last used index we've seen. */
Anthony Liguori1bc49532007-11-07 15:49:24 -060082 u16 last_used_idx;
Rusty Russell0a8a69d2007-10-22 11:03:40 +100083
84 /* How to notify other side. FIXME: commonalize hcalls! */
Heinz Graalfs46f9c2b2013-10-29 09:38:50 +103085 bool (*notify)(struct virtqueue *vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +100086
87#ifdef DEBUG
88 /* They're supposed to lock for us. */
89 unsigned int in_use;
Rusty Russelle93300b2012-01-12 15:44:43 +103090
91 /* Figure out if their kicks are too delayed. */
92 bool last_add_time_valid;
93 ktime_t last_add_time;
Rusty Russell0a8a69d2007-10-22 11:03:40 +100094#endif
95
96 /* Tokens for callbacks. */
97 void *data[];
98};
99
100#define to_vvq(_vq) container_of(_vq, struct vring_virtqueue, vq)
101
Rusty Russell13816c72013-03-20 15:37:09 +1030102static inline struct scatterlist *sg_next_chained(struct scatterlist *sg,
103 unsigned int *count)
104{
105 return sg_next(sg);
106}
107
108static inline struct scatterlist *sg_next_arr(struct scatterlist *sg,
109 unsigned int *count)
110{
111 if (--(*count) == 0)
112 return NULL;
113 return sg + 1;
114}
115
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100116/* Set up an indirect table of descriptors and add it to the queue. */
Rusty Russell13816c72013-03-20 15:37:09 +1030117static inline int vring_add_indirect(struct vring_virtqueue *vq,
118 struct scatterlist *sgs[],
119 struct scatterlist *(*next)
120 (struct scatterlist *, unsigned int *),
121 unsigned int total_sg,
122 unsigned int total_out,
123 unsigned int total_in,
124 unsigned int out_sgs,
125 unsigned int in_sgs,
126 gfp_t gfp)
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100127{
128 struct vring_desc *desc;
129 unsigned head;
Rusty Russell13816c72013-03-20 15:37:09 +1030130 struct scatterlist *sg;
131 int i, n;
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100132
Will Deaconb92b1b82012-10-19 14:03:33 +0100133 /*
134 * We require lowmem mappings for the descriptors because
135 * otherwise virt_to_phys will give us bogus addresses in the
136 * virtqueue.
137 */
138 gfp &= ~(__GFP_HIGHMEM | __GFP_HIGH);
139
Rusty Russell13816c72013-03-20 15:37:09 +1030140 desc = kmalloc(total_sg * sizeof(struct vring_desc), gfp);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100141 if (!desc)
Michael S. Tsirkin686d3632010-06-10 18:16:11 +0300142 return -ENOMEM;
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100143
Rusty Russell13816c72013-03-20 15:37:09 +1030144 /* Transfer entries from the sg lists into the indirect page */
145 i = 0;
146 for (n = 0; n < out_sgs; n++) {
147 for (sg = sgs[n]; sg; sg = next(sg, &total_out)) {
148 desc[i].flags = VRING_DESC_F_NEXT;
149 desc[i].addr = sg_phys(sg);
150 desc[i].len = sg->length;
151 desc[i].next = i+1;
152 i++;
153 }
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100154 }
Rusty Russell13816c72013-03-20 15:37:09 +1030155 for (; n < (out_sgs + in_sgs); n++) {
156 for (sg = sgs[n]; sg; sg = next(sg, &total_in)) {
157 desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE;
158 desc[i].addr = sg_phys(sg);
159 desc[i].len = sg->length;
160 desc[i].next = i+1;
161 i++;
162 }
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100163 }
Rusty Russell13816c72013-03-20 15:37:09 +1030164 BUG_ON(i != total_sg);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100165
166 /* Last one doesn't continue. */
167 desc[i-1].flags &= ~VRING_DESC_F_NEXT;
168 desc[i-1].next = 0;
169
170 /* We're about to use a buffer */
Rusty Russell06ca2872012-10-16 23:56:14 +1030171 vq->vq.num_free--;
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100172
173 /* Use a single buffer which doesn't continue */
174 head = vq->free_head;
175 vq->vring.desc[head].flags = VRING_DESC_F_INDIRECT;
176 vq->vring.desc[head].addr = virt_to_phys(desc);
Rusty Russellbb478d82013-10-14 18:08:45 +1030177 /* kmemleak gives a false positive, as it's hidden by virt_to_phys */
178 kmemleak_ignore(desc);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100179 vq->vring.desc[head].len = i * sizeof(struct vring_desc);
180
181 /* Update free pointer */
182 vq->free_head = vq->vring.desc[head].next;
183
184 return head;
185}
186
Rusty Russell13816c72013-03-20 15:37:09 +1030187static inline int virtqueue_add(struct virtqueue *_vq,
188 struct scatterlist *sgs[],
189 struct scatterlist *(*next)
190 (struct scatterlist *, unsigned int *),
191 unsigned int total_out,
192 unsigned int total_in,
193 unsigned int out_sgs,
194 unsigned int in_sgs,
195 void *data,
196 gfp_t gfp)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000197{
198 struct vring_virtqueue *vq = to_vvq(_vq);
Rusty Russell13816c72013-03-20 15:37:09 +1030199 struct scatterlist *sg;
200 unsigned int i, n, avail, uninitialized_var(prev), total_sg;
Michael S. Tsirkin1fe9b6f2010-07-26 16:55:30 +0930201 int head;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000202
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100203 START_USE(vq);
204
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000205 BUG_ON(data == NULL);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100206
Rusty Russell70670444c22014-03-13 11:23:40 +1030207 if (unlikely(vq->broken)) {
208 END_USE(vq);
209 return -EIO;
210 }
211
Rusty Russelle93300b2012-01-12 15:44:43 +1030212#ifdef DEBUG
213 {
214 ktime_t now = ktime_get();
215
216 /* No kick or get, with .1 second between? Warn. */
217 if (vq->last_add_time_valid)
218 WARN_ON(ktime_to_ms(ktime_sub(now, vq->last_add_time))
219 > 100);
220 vq->last_add_time = now;
221 vq->last_add_time_valid = true;
222 }
223#endif
224
Rusty Russell13816c72013-03-20 15:37:09 +1030225 total_sg = total_in + total_out;
226
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100227 /* If the host supports indirect descriptor tables, and we have multiple
228 * buffers, then go indirect. FIXME: tune this threshold */
Rusty Russell13816c72013-03-20 15:37:09 +1030229 if (vq->indirect && total_sg > 1 && vq->vq.num_free) {
230 head = vring_add_indirect(vq, sgs, next, total_sg, total_out,
231 total_in,
232 out_sgs, in_sgs, gfp);
Michael S. Tsirkin1fe9b6f2010-07-26 16:55:30 +0930233 if (likely(head >= 0))
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100234 goto add_head;
235 }
236
Rusty Russell13816c72013-03-20 15:37:09 +1030237 BUG_ON(total_sg > vq->vring.num);
238 BUG_ON(total_sg == 0);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000239
Rusty Russell13816c72013-03-20 15:37:09 +1030240 if (vq->vq.num_free < total_sg) {
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000241 pr_debug("Can't add buf len %i - avail = %i\n",
Rusty Russell13816c72013-03-20 15:37:09 +1030242 total_sg, vq->vq.num_free);
Rusty Russell44653ea2008-07-25 12:06:04 -0500243 /* FIXME: for historical reasons, we force a notify here if
244 * there are outgoing parts to the buffer. Presumably the
245 * host should service the ring ASAP. */
Rusty Russell13816c72013-03-20 15:37:09 +1030246 if (out_sgs)
Rusty Russell44653ea2008-07-25 12:06:04 -0500247 vq->notify(&vq->vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000248 END_USE(vq);
249 return -ENOSPC;
250 }
251
252 /* We're about to use some buffers from the free list. */
Rusty Russell13816c72013-03-20 15:37:09 +1030253 vq->vq.num_free -= total_sg;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000254
Rusty Russell13816c72013-03-20 15:37:09 +1030255 head = i = vq->free_head;
256 for (n = 0; n < out_sgs; n++) {
257 for (sg = sgs[n]; sg; sg = next(sg, &total_out)) {
258 vq->vring.desc[i].flags = VRING_DESC_F_NEXT;
259 vq->vring.desc[i].addr = sg_phys(sg);
260 vq->vring.desc[i].len = sg->length;
261 prev = i;
262 i = vq->vring.desc[i].next;
263 }
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000264 }
Rusty Russell13816c72013-03-20 15:37:09 +1030265 for (; n < (out_sgs + in_sgs); n++) {
266 for (sg = sgs[n]; sg; sg = next(sg, &total_in)) {
267 vq->vring.desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE;
268 vq->vring.desc[i].addr = sg_phys(sg);
269 vq->vring.desc[i].len = sg->length;
270 prev = i;
271 i = vq->vring.desc[i].next;
272 }
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000273 }
274 /* Last one doesn't continue. */
275 vq->vring.desc[prev].flags &= ~VRING_DESC_F_NEXT;
276
277 /* Update free pointer */
278 vq->free_head = i;
279
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100280add_head:
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000281 /* Set token. */
282 vq->data[head] = data;
283
284 /* Put entry in available array (but don't update avail->idx until they
Rusty Russell3b720b82012-01-12 15:44:43 +1030285 * do sync). */
Rusty Russellee7cd892012-01-12 15:44:43 +1030286 avail = (vq->vring.avail->idx & (vq->vring.num-1));
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000287 vq->vring.avail->ring[avail] = head;
288
Rusty Russellee7cd892012-01-12 15:44:43 +1030289 /* Descriptors and available array need to be set before we expose the
290 * new available array entries. */
Rusty Russella9a0fef2013-03-18 13:22:19 +1030291 virtio_wmb(vq->weak_barriers);
Rusty Russellee7cd892012-01-12 15:44:43 +1030292 vq->vring.avail->idx++;
293 vq->num_added++;
294
295 /* This is very unlikely, but theoretically possible. Kick
296 * just in case. */
297 if (unlikely(vq->num_added == (1 << 16) - 1))
298 virtqueue_kick(_vq);
299
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000300 pr_debug("Added buffer head %i to %p\n", head, vq);
301 END_USE(vq);
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600302
Rusty Russell98e8c6b2012-10-16 23:56:15 +1030303 return 0;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000304}
Rusty Russell13816c72013-03-20 15:37:09 +1030305
306/**
Rusty Russell13816c72013-03-20 15:37:09 +1030307 * virtqueue_add_sgs - expose buffers to other end
308 * @vq: the struct virtqueue we're talking about.
309 * @sgs: array of terminated scatterlists.
310 * @out_num: the number of scatterlists readable by other side
311 * @in_num: the number of scatterlists which are writable (after readable ones)
312 * @data: the token identifying the buffer.
313 * @gfp: how to do memory allocations (if necessary).
314 *
315 * Caller must ensure we don't call this with other virtqueue operations
316 * at the same time (except where noted).
317 *
Rusty Russell70670444c22014-03-13 11:23:40 +1030318 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
Rusty Russell13816c72013-03-20 15:37:09 +1030319 */
320int virtqueue_add_sgs(struct virtqueue *_vq,
321 struct scatterlist *sgs[],
322 unsigned int out_sgs,
323 unsigned int in_sgs,
324 void *data,
325 gfp_t gfp)
326{
327 unsigned int i, total_out, total_in;
328
329 /* Count them first. */
330 for (i = total_out = total_in = 0; i < out_sgs; i++) {
331 struct scatterlist *sg;
332 for (sg = sgs[i]; sg; sg = sg_next(sg))
333 total_out++;
334 }
335 for (; i < out_sgs + in_sgs; i++) {
336 struct scatterlist *sg;
337 for (sg = sgs[i]; sg; sg = sg_next(sg))
338 total_in++;
339 }
340 return virtqueue_add(_vq, sgs, sg_next_chained,
341 total_out, total_in, out_sgs, in_sgs, data, gfp);
342}
343EXPORT_SYMBOL_GPL(virtqueue_add_sgs);
344
345/**
Rusty Russell282edb32013-03-20 15:44:26 +1030346 * virtqueue_add_outbuf - expose output buffers to other end
347 * @vq: the struct virtqueue we're talking about.
348 * @sgs: array of scatterlists (need not be terminated!)
349 * @num: the number of scatterlists readable by other side
350 * @data: the token identifying the buffer.
351 * @gfp: how to do memory allocations (if necessary).
352 *
353 * Caller must ensure we don't call this with other virtqueue operations
354 * at the same time (except where noted).
355 *
Rusty Russell70670444c22014-03-13 11:23:40 +1030356 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
Rusty Russell282edb32013-03-20 15:44:26 +1030357 */
358int virtqueue_add_outbuf(struct virtqueue *vq,
359 struct scatterlist sg[], unsigned int num,
360 void *data,
361 gfp_t gfp)
362{
363 return virtqueue_add(vq, &sg, sg_next_arr, num, 0, 1, 0, data, gfp);
364}
365EXPORT_SYMBOL_GPL(virtqueue_add_outbuf);
366
367/**
368 * virtqueue_add_inbuf - expose input buffers to other end
369 * @vq: the struct virtqueue we're talking about.
370 * @sgs: array of scatterlists (need not be terminated!)
371 * @num: the number of scatterlists writable by other side
372 * @data: the token identifying the buffer.
373 * @gfp: how to do memory allocations (if necessary).
374 *
375 * Caller must ensure we don't call this with other virtqueue operations
376 * at the same time (except where noted).
377 *
Rusty Russell70670444c22014-03-13 11:23:40 +1030378 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
Rusty Russell282edb32013-03-20 15:44:26 +1030379 */
380int virtqueue_add_inbuf(struct virtqueue *vq,
381 struct scatterlist sg[], unsigned int num,
382 void *data,
383 gfp_t gfp)
384{
385 return virtqueue_add(vq, &sg, sg_next_arr, 0, num, 0, 1, data, gfp);
386}
387EXPORT_SYMBOL_GPL(virtqueue_add_inbuf);
388
389/**
Rusty Russell41f03772012-01-12 15:44:43 +1030390 * virtqueue_kick_prepare - first half of split virtqueue_kick call.
Rusty Russell5dfc1762012-01-12 15:44:42 +1030391 * @vq: the struct virtqueue
392 *
Rusty Russell41f03772012-01-12 15:44:43 +1030393 * Instead of virtqueue_kick(), you can do:
394 * if (virtqueue_kick_prepare(vq))
395 * virtqueue_notify(vq);
Rusty Russell5dfc1762012-01-12 15:44:42 +1030396 *
Rusty Russell41f03772012-01-12 15:44:43 +1030397 * This is sometimes useful because the virtqueue_kick_prepare() needs
398 * to be serialized, but the actual virtqueue_notify() call does not.
Rusty Russell5dfc1762012-01-12 15:44:42 +1030399 */
Rusty Russell41f03772012-01-12 15:44:43 +1030400bool virtqueue_kick_prepare(struct virtqueue *_vq)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000401{
402 struct vring_virtqueue *vq = to_vvq(_vq);
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300403 u16 new, old;
Rusty Russell41f03772012-01-12 15:44:43 +1030404 bool needs_kick;
405
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000406 START_USE(vq);
Jason Wanga72caae2012-01-20 16:17:08 +0800407 /* We need to expose available array entries before checking avail
408 * event. */
Rusty Russella9a0fef2013-03-18 13:22:19 +1030409 virtio_mb(vq->weak_barriers);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000410
Rusty Russellee7cd892012-01-12 15:44:43 +1030411 old = vq->vring.avail->idx - vq->num_added;
412 new = vq->vring.avail->idx;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000413 vq->num_added = 0;
414
Rusty Russelle93300b2012-01-12 15:44:43 +1030415#ifdef DEBUG
416 if (vq->last_add_time_valid) {
417 WARN_ON(ktime_to_ms(ktime_sub(ktime_get(),
418 vq->last_add_time)) > 100);
419 }
420 vq->last_add_time_valid = false;
421#endif
422
Rusty Russell41f03772012-01-12 15:44:43 +1030423 if (vq->event) {
424 needs_kick = vring_need_event(vring_avail_event(&vq->vring),
425 new, old);
426 } else {
427 needs_kick = !(vq->vring.used->flags & VRING_USED_F_NO_NOTIFY);
428 }
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000429 END_USE(vq);
Rusty Russell41f03772012-01-12 15:44:43 +1030430 return needs_kick;
431}
432EXPORT_SYMBOL_GPL(virtqueue_kick_prepare);
433
434/**
435 * virtqueue_notify - second half of split virtqueue_kick call.
436 * @vq: the struct virtqueue
437 *
438 * This does not need to be serialized.
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030439 *
440 * Returns false if host notify failed or queue is broken, otherwise true.
Rusty Russell41f03772012-01-12 15:44:43 +1030441 */
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030442bool virtqueue_notify(struct virtqueue *_vq)
Rusty Russell41f03772012-01-12 15:44:43 +1030443{
444 struct vring_virtqueue *vq = to_vvq(_vq);
445
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030446 if (unlikely(vq->broken))
447 return false;
448
Rusty Russell41f03772012-01-12 15:44:43 +1030449 /* Prod other side to tell it about changes. */
Heinz Graalfs2342d6a2013-11-05 21:20:27 +1030450 if (!vq->notify(_vq)) {
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030451 vq->broken = true;
452 return false;
453 }
454 return true;
Rusty Russell41f03772012-01-12 15:44:43 +1030455}
456EXPORT_SYMBOL_GPL(virtqueue_notify);
457
458/**
459 * virtqueue_kick - update after add_buf
460 * @vq: the struct virtqueue
461 *
Rusty Russellb3087e42013-05-20 12:15:44 +0930462 * After one or more virtqueue_add_* calls, invoke this to kick
Rusty Russell41f03772012-01-12 15:44:43 +1030463 * the other side.
464 *
465 * Caller must ensure we don't call this with other virtqueue
466 * operations at the same time (except where noted).
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030467 *
468 * Returns false if kick failed, otherwise true.
Rusty Russell41f03772012-01-12 15:44:43 +1030469 */
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030470bool virtqueue_kick(struct virtqueue *vq)
Rusty Russell41f03772012-01-12 15:44:43 +1030471{
472 if (virtqueue_kick_prepare(vq))
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +1030473 return virtqueue_notify(vq);
474 return true;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000475}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300476EXPORT_SYMBOL_GPL(virtqueue_kick);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000477
478static void detach_buf(struct vring_virtqueue *vq, unsigned int head)
479{
480 unsigned int i;
481
482 /* Clear data ptr. */
483 vq->data[head] = NULL;
484
485 /* Put back on free list: find end */
486 i = head;
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100487
488 /* Free the indirect table */
489 if (vq->vring.desc[i].flags & VRING_DESC_F_INDIRECT)
490 kfree(phys_to_virt(vq->vring.desc[i].addr));
491
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000492 while (vq->vring.desc[i].flags & VRING_DESC_F_NEXT) {
493 i = vq->vring.desc[i].next;
Rusty Russell06ca2872012-10-16 23:56:14 +1030494 vq->vq.num_free++;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000495 }
496
497 vq->vring.desc[i].next = vq->free_head;
498 vq->free_head = head;
499 /* Plus final descriptor */
Rusty Russell06ca2872012-10-16 23:56:14 +1030500 vq->vq.num_free++;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000501}
502
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000503static inline bool more_used(const struct vring_virtqueue *vq)
504{
505 return vq->last_used_idx != vq->vring.used->idx;
506}
507
Rusty Russell5dfc1762012-01-12 15:44:42 +1030508/**
509 * virtqueue_get_buf - get the next used buffer
510 * @vq: the struct virtqueue we're talking about.
511 * @len: the length written into the buffer
512 *
513 * If the driver wrote data into the buffer, @len will be set to the
514 * amount written. This means you don't need to clear the buffer
515 * beforehand to ensure there's no data leakage in the case of short
516 * writes.
517 *
518 * Caller must ensure we don't call this with other virtqueue
519 * operations at the same time (except where noted).
520 *
521 * Returns NULL if there are no used buffers, or the "data" token
Rusty Russellb3087e42013-05-20 12:15:44 +0930522 * handed to virtqueue_add_*().
Rusty Russell5dfc1762012-01-12 15:44:42 +1030523 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300524void *virtqueue_get_buf(struct virtqueue *_vq, unsigned int *len)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000525{
526 struct vring_virtqueue *vq = to_vvq(_vq);
527 void *ret;
528 unsigned int i;
Rusty Russell3b720b82012-01-12 15:44:43 +1030529 u16 last_used;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000530
531 START_USE(vq);
532
Rusty Russell5ef82752008-05-02 21:50:43 -0500533 if (unlikely(vq->broken)) {
534 END_USE(vq);
535 return NULL;
536 }
537
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000538 if (!more_used(vq)) {
539 pr_debug("No more buffers in queue\n");
540 END_USE(vq);
541 return NULL;
542 }
543
Michael S. Tsirkin2d61ba92009-10-25 15:28:53 +0200544 /* Only get used array entries after they have been exposed by host. */
Rusty Russella9a0fef2013-03-18 13:22:19 +1030545 virtio_rmb(vq->weak_barriers);
Michael S. Tsirkin2d61ba92009-10-25 15:28:53 +0200546
Rusty Russell3b720b82012-01-12 15:44:43 +1030547 last_used = (vq->last_used_idx & (vq->vring.num - 1));
548 i = vq->vring.used->ring[last_used].id;
549 *len = vq->vring.used->ring[last_used].len;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000550
551 if (unlikely(i >= vq->vring.num)) {
552 BAD_RING(vq, "id %u out of range\n", i);
553 return NULL;
554 }
555 if (unlikely(!vq->data[i])) {
556 BAD_RING(vq, "id %u is not a head!\n", i);
557 return NULL;
558 }
559
560 /* detach_buf clears data, so grab it now. */
561 ret = vq->data[i];
562 detach_buf(vq, i);
563 vq->last_used_idx++;
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300564 /* If we expect an interrupt for the next entry, tell host
565 * by writing event index and flush out the write before
566 * the read in the next get_buf call. */
567 if (!(vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)) {
568 vring_used_event(&vq->vring) = vq->last_used_idx;
Rusty Russella9a0fef2013-03-18 13:22:19 +1030569 virtio_mb(vq->weak_barriers);
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300570 }
571
Rusty Russelle93300b2012-01-12 15:44:43 +1030572#ifdef DEBUG
573 vq->last_add_time_valid = false;
574#endif
575
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000576 END_USE(vq);
577 return ret;
578}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300579EXPORT_SYMBOL_GPL(virtqueue_get_buf);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000580
Rusty Russell5dfc1762012-01-12 15:44:42 +1030581/**
582 * virtqueue_disable_cb - disable callbacks
583 * @vq: the struct virtqueue we're talking about.
584 *
585 * Note that this is not necessarily synchronous, hence unreliable and only
586 * useful as an optimization.
587 *
588 * Unlike other operations, this need not be serialized.
589 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300590void virtqueue_disable_cb(struct virtqueue *_vq)
Rusty Russell18445c42008-02-04 23:49:57 -0500591{
592 struct vring_virtqueue *vq = to_vvq(_vq);
593
Rusty Russell18445c42008-02-04 23:49:57 -0500594 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
Rusty Russell18445c42008-02-04 23:49:57 -0500595}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300596EXPORT_SYMBOL_GPL(virtqueue_disable_cb);
Rusty Russell18445c42008-02-04 23:49:57 -0500597
Rusty Russell5dfc1762012-01-12 15:44:42 +1030598/**
Michael S. Tsirkincc229882013-07-09 13:19:18 +0300599 * virtqueue_enable_cb_prepare - restart callbacks after disable_cb
600 * @vq: the struct virtqueue we're talking about.
601 *
602 * This re-enables callbacks; it returns current queue state
603 * in an opaque unsigned value. This value should be later tested by
604 * virtqueue_poll, to detect a possible race between the driver checking for
605 * more work, and enabling callbacks.
606 *
607 * Caller must ensure we don't call this with other virtqueue
608 * operations at the same time (except where noted).
609 */
610unsigned virtqueue_enable_cb_prepare(struct virtqueue *_vq)
611{
612 struct vring_virtqueue *vq = to_vvq(_vq);
613 u16 last_used_idx;
614
615 START_USE(vq);
616
617 /* We optimistically turn back on interrupts, then check if there was
618 * more to do. */
619 /* Depending on the VIRTIO_RING_F_EVENT_IDX feature, we need to
620 * either clear the flags bit or point the event index at the next
621 * entry. Always do both to keep code simple. */
622 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT;
623 vring_used_event(&vq->vring) = last_used_idx = vq->last_used_idx;
624 END_USE(vq);
625 return last_used_idx;
626}
627EXPORT_SYMBOL_GPL(virtqueue_enable_cb_prepare);
628
629/**
630 * virtqueue_poll - query pending used buffers
631 * @vq: the struct virtqueue we're talking about.
632 * @last_used_idx: virtqueue state (from call to virtqueue_enable_cb_prepare).
633 *
634 * Returns "true" if there are pending used buffers in the queue.
635 *
636 * This does not need to be serialized.
637 */
638bool virtqueue_poll(struct virtqueue *_vq, unsigned last_used_idx)
639{
640 struct vring_virtqueue *vq = to_vvq(_vq);
641
642 virtio_mb(vq->weak_barriers);
643 return (u16)last_used_idx != vq->vring.used->idx;
644}
645EXPORT_SYMBOL_GPL(virtqueue_poll);
646
647/**
Rusty Russell5dfc1762012-01-12 15:44:42 +1030648 * virtqueue_enable_cb - restart callbacks after disable_cb.
649 * @vq: the struct virtqueue we're talking about.
650 *
651 * This re-enables callbacks; it returns "false" if there are pending
652 * buffers in the queue, to detect a possible race between the driver
653 * checking for more work, and enabling callbacks.
654 *
655 * Caller must ensure we don't call this with other virtqueue
656 * operations at the same time (except where noted).
657 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300658bool virtqueue_enable_cb(struct virtqueue *_vq)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000659{
Michael S. Tsirkincc229882013-07-09 13:19:18 +0300660 unsigned last_used_idx = virtqueue_enable_cb_prepare(_vq);
661 return !virtqueue_poll(_vq, last_used_idx);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000662}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300663EXPORT_SYMBOL_GPL(virtqueue_enable_cb);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000664
Rusty Russell5dfc1762012-01-12 15:44:42 +1030665/**
666 * virtqueue_enable_cb_delayed - restart callbacks after disable_cb.
667 * @vq: the struct virtqueue we're talking about.
668 *
669 * This re-enables callbacks but hints to the other side to delay
670 * interrupts until most of the available buffers have been processed;
671 * it returns "false" if there are many pending buffers in the queue,
672 * to detect a possible race between the driver checking for more work,
673 * and enabling callbacks.
674 *
675 * Caller must ensure we don't call this with other virtqueue
676 * operations at the same time (except where noted).
677 */
Michael S. Tsirkin7ab358c2011-05-20 02:11:14 +0300678bool virtqueue_enable_cb_delayed(struct virtqueue *_vq)
679{
680 struct vring_virtqueue *vq = to_vvq(_vq);
681 u16 bufs;
682
683 START_USE(vq);
684
685 /* We optimistically turn back on interrupts, then check if there was
686 * more to do. */
687 /* Depending on the VIRTIO_RING_F_USED_EVENT_IDX feature, we need to
688 * either clear the flags bit or point the event index at the next
689 * entry. Always do both to keep code simple. */
690 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT;
691 /* TODO: tune this threshold */
692 bufs = (u16)(vq->vring.avail->idx - vq->last_used_idx) * 3 / 4;
693 vring_used_event(&vq->vring) = vq->last_used_idx + bufs;
Rusty Russella9a0fef2013-03-18 13:22:19 +1030694 virtio_mb(vq->weak_barriers);
Michael S. Tsirkin7ab358c2011-05-20 02:11:14 +0300695 if (unlikely((u16)(vq->vring.used->idx - vq->last_used_idx) > bufs)) {
696 END_USE(vq);
697 return false;
698 }
699
700 END_USE(vq);
701 return true;
702}
703EXPORT_SYMBOL_GPL(virtqueue_enable_cb_delayed);
704
Rusty Russell5dfc1762012-01-12 15:44:42 +1030705/**
706 * virtqueue_detach_unused_buf - detach first unused buffer
707 * @vq: the struct virtqueue we're talking about.
708 *
Rusty Russellb3087e42013-05-20 12:15:44 +0930709 * Returns NULL or the "data" token handed to virtqueue_add_*().
Rusty Russell5dfc1762012-01-12 15:44:42 +1030710 * This is not valid on an active queue; it is useful only for device
711 * shutdown.
712 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300713void *virtqueue_detach_unused_buf(struct virtqueue *_vq)
Shirley Mac021eac2010-01-18 19:15:23 +0530714{
715 struct vring_virtqueue *vq = to_vvq(_vq);
716 unsigned int i;
717 void *buf;
718
719 START_USE(vq);
720
721 for (i = 0; i < vq->vring.num; i++) {
722 if (!vq->data[i])
723 continue;
724 /* detach_buf clears data, so grab it now. */
725 buf = vq->data[i];
726 detach_buf(vq, i);
Amit Shahb3258ff2011-03-16 19:12:10 +0530727 vq->vring.avail->idx--;
Shirley Mac021eac2010-01-18 19:15:23 +0530728 END_USE(vq);
729 return buf;
730 }
731 /* That should have freed everything. */
Rusty Russell06ca2872012-10-16 23:56:14 +1030732 BUG_ON(vq->vq.num_free != vq->vring.num);
Shirley Mac021eac2010-01-18 19:15:23 +0530733
734 END_USE(vq);
735 return NULL;
736}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300737EXPORT_SYMBOL_GPL(virtqueue_detach_unused_buf);
Shirley Mac021eac2010-01-18 19:15:23 +0530738
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000739irqreturn_t vring_interrupt(int irq, void *_vq)
740{
741 struct vring_virtqueue *vq = to_vvq(_vq);
742
743 if (!more_used(vq)) {
744 pr_debug("virtqueue interrupt with no work for %p\n", vq);
745 return IRQ_NONE;
746 }
747
748 if (unlikely(vq->broken))
749 return IRQ_HANDLED;
750
751 pr_debug("virtqueue callback for %p (%p)\n", vq, vq->vq.callback);
Rusty Russell18445c42008-02-04 23:49:57 -0500752 if (vq->vq.callback)
753 vq->vq.callback(&vq->vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000754
755 return IRQ_HANDLED;
756}
Rusty Russellc6fd4702008-02-04 23:50:05 -0500757EXPORT_SYMBOL_GPL(vring_interrupt);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000758
Jason Wang17bb6d42012-08-28 13:54:13 +0200759struct virtqueue *vring_new_virtqueue(unsigned int index,
760 unsigned int num,
Rusty Russell87c7d572008-12-30 09:26:03 -0600761 unsigned int vring_align,
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000762 struct virtio_device *vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +1030763 bool weak_barriers,
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000764 void *pages,
Heinz Graalfs46f9c2b2013-10-29 09:38:50 +1030765 bool (*notify)(struct virtqueue *),
Rusty Russell9499f5e2009-06-12 22:16:35 -0600766 void (*callback)(struct virtqueue *),
767 const char *name)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000768{
769 struct vring_virtqueue *vq;
770 unsigned int i;
771
Rusty Russell42b36cc2007-11-12 13:39:18 +1100772 /* We assume num is a power of 2. */
773 if (num & (num - 1)) {
774 dev_warn(&vdev->dev, "Bad virtqueue length %u\n", num);
775 return NULL;
776 }
777
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000778 vq = kmalloc(sizeof(*vq) + sizeof(void *)*num, GFP_KERNEL);
779 if (!vq)
780 return NULL;
781
Rusty Russell87c7d572008-12-30 09:26:03 -0600782 vring_init(&vq->vring, num, pages, vring_align);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000783 vq->vq.callback = callback;
784 vq->vq.vdev = vdev;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600785 vq->vq.name = name;
Rusty Russell06ca2872012-10-16 23:56:14 +1030786 vq->vq.num_free = num;
787 vq->vq.index = index;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000788 vq->notify = notify;
Rusty Russell7b21e342012-01-12 15:44:42 +1030789 vq->weak_barriers = weak_barriers;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000790 vq->broken = false;
791 vq->last_used_idx = 0;
792 vq->num_added = 0;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600793 list_add_tail(&vq->vq.list, &vdev->vqs);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000794#ifdef DEBUG
795 vq->in_use = false;
Rusty Russelle93300b2012-01-12 15:44:43 +1030796 vq->last_add_time_valid = false;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000797#endif
798
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100799 vq->indirect = virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC);
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300800 vq->event = virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100801
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000802 /* No callback? Tell other side not to bother us. */
803 if (!callback)
804 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
805
806 /* Put everything in free lists. */
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000807 vq->free_head = 0;
Amit Shah3b870622010-02-12 10:32:14 +0530808 for (i = 0; i < num-1; i++) {
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000809 vq->vring.desc[i].next = i+1;
Amit Shah3b870622010-02-12 10:32:14 +0530810 vq->data[i] = NULL;
811 }
812 vq->data[i] = NULL;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000813
814 return &vq->vq;
815}
Rusty Russellc6fd4702008-02-04 23:50:05 -0500816EXPORT_SYMBOL_GPL(vring_new_virtqueue);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000817
818void vring_del_virtqueue(struct virtqueue *vq)
819{
Rusty Russell9499f5e2009-06-12 22:16:35 -0600820 list_del(&vq->list);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000821 kfree(to_vvq(vq));
822}
Rusty Russellc6fd4702008-02-04 23:50:05 -0500823EXPORT_SYMBOL_GPL(vring_del_virtqueue);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000824
Rusty Russelle34f8722008-07-25 12:06:13 -0500825/* Manipulates transport-specific feature bits. */
826void vring_transport_features(struct virtio_device *vdev)
827{
828 unsigned int i;
829
830 for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++) {
831 switch (i) {
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100832 case VIRTIO_RING_F_INDIRECT_DESC:
833 break;
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300834 case VIRTIO_RING_F_EVENT_IDX:
835 break;
Rusty Russelle34f8722008-07-25 12:06:13 -0500836 default:
837 /* We don't understand this bit. */
838 clear_bit(i, vdev->features);
839 }
840 }
841}
842EXPORT_SYMBOL_GPL(vring_transport_features);
843
Rusty Russell5dfc1762012-01-12 15:44:42 +1030844/**
845 * virtqueue_get_vring_size - return the size of the virtqueue's vring
846 * @vq: the struct virtqueue containing the vring of interest.
847 *
848 * Returns the size of the vring. This is mainly used for boasting to
849 * userspace. Unlike other operations, this need not be serialized.
850 */
Rick Jones8f9f4662011-10-19 08:10:59 +0000851unsigned int virtqueue_get_vring_size(struct virtqueue *_vq)
852{
853
854 struct vring_virtqueue *vq = to_vvq(_vq);
855
856 return vq->vring.num;
857}
858EXPORT_SYMBOL_GPL(virtqueue_get_vring_size);
859
Heinz Graalfsb3b32c92013-10-29 09:40:19 +1030860bool virtqueue_is_broken(struct virtqueue *_vq)
861{
862 struct vring_virtqueue *vq = to_vvq(_vq);
863
864 return vq->broken;
865}
866EXPORT_SYMBOL_GPL(virtqueue_is_broken);
867
Rusty Russelle2dcdfe2014-04-28 11:15:08 +0930868/*
869 * This should prevent the device from being used, allowing drivers to
870 * recover. You may need to grab appropriate locks to flush.
871 */
872void virtio_break_device(struct virtio_device *dev)
873{
874 struct virtqueue *_vq;
875
876 list_for_each_entry(_vq, &dev->vqs, list) {
877 struct vring_virtqueue *vq = to_vvq(_vq);
878 vq->broken = true;
879 }
880}
881EXPORT_SYMBOL_GPL(virtio_break_device);
882
Rusty Russellc6fd4702008-02-04 23:50:05 -0500883MODULE_LICENSE("GPL");