]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/dev/virtio/block/virtio_blk.c
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / dev / virtio / block / virtio_blk.c
1 /*-
2  * Copyright (c) 2011, Bryan Venteicher <bryanv@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 /* Driver for VirtIO block devices. */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/bio.h>
36 #include <sys/malloc.h>
37 #include <sys/module.h>
38 #include <sys/sglist.h>
39 #include <sys/sysctl.h>
40 #include <sys/lock.h>
41 #include <sys/mutex.h>
42 #include <sys/queue.h>
43
44 #include <geom/geom_disk.h>
45
46 #include <machine/bus.h>
47 #include <machine/resource.h>
48 #include <sys/bus.h>
49 #include <sys/rman.h>
50
51 #include <dev/virtio/virtio.h>
52 #include <dev/virtio/virtqueue.h>
53 #include <dev/virtio/block/virtio_blk.h>
54
55 #include "virtio_if.h"
56
57 struct vtblk_request {
58         struct virtio_blk_outhdr         vbr_hdr;
59         struct bio                      *vbr_bp;
60         uint8_t                          vbr_ack;
61         TAILQ_ENTRY(vtblk_request)       vbr_link;
62 };
63
64 enum vtblk_cache_mode {
65         VTBLK_CACHE_WRITETHROUGH,
66         VTBLK_CACHE_WRITEBACK,
67         VTBLK_CACHE_MAX
68 };
69
70 struct vtblk_softc {
71         device_t                 vtblk_dev;
72         struct mtx               vtblk_mtx;
73         uint64_t                 vtblk_features;
74         uint32_t                 vtblk_flags;
75 #define VTBLK_FLAG_INDIRECT     0x0001
76 #define VTBLK_FLAG_READONLY     0x0002
77 #define VTBLK_FLAG_DETACH       0x0004
78 #define VTBLK_FLAG_SUSPEND      0x0008
79 #define VTBLK_FLAG_BARRIER      0x0010
80 #define VTBLK_FLAG_WC_CONFIG    0x0020
81
82         struct virtqueue        *vtblk_vq;
83         struct sglist           *vtblk_sglist;
84         struct disk             *vtblk_disk;
85
86         struct bio_queue_head    vtblk_bioq;
87         TAILQ_HEAD(, vtblk_request)
88                                  vtblk_req_free;
89         TAILQ_HEAD(, vtblk_request)
90                                  vtblk_req_ready;
91         struct vtblk_request    *vtblk_req_ordered;
92
93         int                      vtblk_max_nsegs;
94         int                      vtblk_request_count;
95         enum vtblk_cache_mode    vtblk_write_cache;
96
97         struct bio_queue         vtblk_dump_queue;
98         struct vtblk_request     vtblk_dump_request;
99 };
100
101 static struct virtio_feature_desc vtblk_feature_desc[] = {
102         { VIRTIO_BLK_F_BARRIER,         "HostBarrier"   },
103         { VIRTIO_BLK_F_SIZE_MAX,        "MaxSegSize"    },
104         { VIRTIO_BLK_F_SEG_MAX,         "MaxNumSegs"    },
105         { VIRTIO_BLK_F_GEOMETRY,        "DiskGeometry"  },
106         { VIRTIO_BLK_F_RO,              "ReadOnly"      },
107         { VIRTIO_BLK_F_BLK_SIZE,        "BlockSize"     },
108         { VIRTIO_BLK_F_SCSI,            "SCSICmds"      },
109         { VIRTIO_BLK_F_WCE,             "WriteCache"    },
110         { VIRTIO_BLK_F_TOPOLOGY,        "Topology"      },
111         { VIRTIO_BLK_F_CONFIG_WCE,      "ConfigWCE"     },
112
113         { 0, NULL }
114 };
115
116 static int      vtblk_modevent(module_t, int, void *);
117
118 static int      vtblk_probe(device_t);
119 static int      vtblk_attach(device_t);
120 static int      vtblk_detach(device_t);
121 static int      vtblk_suspend(device_t);
122 static int      vtblk_resume(device_t);
123 static int      vtblk_shutdown(device_t);
124 static int      vtblk_config_change(device_t);
125
126 static int      vtblk_open(struct disk *);
127 static int      vtblk_close(struct disk *);
128 static int      vtblk_ioctl(struct disk *, u_long, void *, int,
129                     struct thread *);
130 static int      vtblk_dump(void *, void *, vm_offset_t, off_t, size_t);
131 static void     vtblk_strategy(struct bio *);
132
133 static void     vtblk_negotiate_features(struct vtblk_softc *);
134 static void     vtblk_setup_features(struct vtblk_softc *);
135 static int      vtblk_maximum_segments(struct vtblk_softc *,
136                     struct virtio_blk_config *);
137 static int      vtblk_alloc_virtqueue(struct vtblk_softc *);
138 static void     vtblk_resize_disk(struct vtblk_softc *, uint64_t);
139 static void     vtblk_alloc_disk(struct vtblk_softc *,
140                     struct virtio_blk_config *);
141 static void     vtblk_create_disk(struct vtblk_softc *);
142
143 static int      vtblk_request_prealloc(struct vtblk_softc *);
144 static void     vtblk_request_free(struct vtblk_softc *);
145 static struct vtblk_request *
146                 vtblk_request_dequeue(struct vtblk_softc *);
147 static void     vtblk_request_enqueue(struct vtblk_softc *,
148                     struct vtblk_request *);
149 static struct vtblk_request *
150                 vtblk_request_next_ready(struct vtblk_softc *);
151 static void     vtblk_request_requeue_ready(struct vtblk_softc *,
152                     struct vtblk_request *);
153 static struct vtblk_request *
154                 vtblk_request_next(struct vtblk_softc *);
155 static struct vtblk_request *
156                 vtblk_request_bio(struct vtblk_softc *);
157 static int      vtblk_request_execute(struct vtblk_softc *,
158                     struct vtblk_request *);
159 static int      vtblk_request_error(struct vtblk_request *);
160
161 static void     vtblk_queue_completed(struct vtblk_softc *,
162                     struct bio_queue *);
163 static void     vtblk_done_completed(struct vtblk_softc *,
164                     struct bio_queue *);
165 static void     vtblk_drain_vq(struct vtblk_softc *);
166 static void     vtblk_drain(struct vtblk_softc *);
167
168 static void     vtblk_startio(struct vtblk_softc *);
169 static void     vtblk_bio_done(struct vtblk_softc *, struct bio *, int);
170
171 static void     vtblk_read_config(struct vtblk_softc *,
172                     struct virtio_blk_config *);
173 static void     vtblk_ident(struct vtblk_softc *);
174 static int      vtblk_poll_request(struct vtblk_softc *,
175                     struct vtblk_request *);
176 static int      vtblk_quiesce(struct vtblk_softc *);
177 static void     vtblk_vq_intr(void *);
178 static void     vtblk_stop(struct vtblk_softc *);
179
180 static void     vtblk_dump_quiesce(struct vtblk_softc *);
181 static int      vtblk_dump_write(struct vtblk_softc *, void *, off_t, size_t);
182 static int      vtblk_dump_flush(struct vtblk_softc *);
183 static void     vtblk_dump_complete(struct vtblk_softc *);
184
185 static void     vtblk_set_write_cache(struct vtblk_softc *, int);
186 static int      vtblk_write_cache_enabled(struct vtblk_softc *sc,
187                     struct virtio_blk_config *);
188 static int      vtblk_write_cache_sysctl(SYSCTL_HANDLER_ARGS);
189
190 static void     vtblk_setup_sysctl(struct vtblk_softc *);
191 static int      vtblk_tunable_int(struct vtblk_softc *, const char *, int);
192
193 /* Tunables. */
194 static int vtblk_no_ident = 0;
195 TUNABLE_INT("hw.vtblk.no_ident", &vtblk_no_ident);
196 static int vtblk_writecache_mode = -1;
197 TUNABLE_INT("hw.vtblk.writecache_mode", &vtblk_writecache_mode);
198
199 /* Features desired/implemented by this driver. */
200 #define VTBLK_FEATURES \
201     (VIRTIO_BLK_F_BARRIER               | \
202      VIRTIO_BLK_F_SIZE_MAX              | \
203      VIRTIO_BLK_F_SEG_MAX               | \
204      VIRTIO_BLK_F_GEOMETRY              | \
205      VIRTIO_BLK_F_RO                    | \
206      VIRTIO_BLK_F_BLK_SIZE              | \
207      VIRTIO_BLK_F_WCE                   | \
208      VIRTIO_BLK_F_TOPOLOGY              | \
209      VIRTIO_BLK_F_CONFIG_WCE            | \
210      VIRTIO_RING_F_INDIRECT_DESC)
211
212 #define VTBLK_MTX(_sc)          &(_sc)->vtblk_mtx
213 #define VTBLK_LOCK_INIT(_sc, _name) \
214                                 mtx_init(VTBLK_MTX((_sc)), (_name), \
215                                     "VirtIO Block Lock", MTX_DEF)
216 #define VTBLK_LOCK(_sc)         mtx_lock(VTBLK_MTX((_sc)))
217 #define VTBLK_UNLOCK(_sc)       mtx_unlock(VTBLK_MTX((_sc)))
218 #define VTBLK_LOCK_DESTROY(_sc) mtx_destroy(VTBLK_MTX((_sc)))
219 #define VTBLK_LOCK_ASSERT(_sc)  mtx_assert(VTBLK_MTX((_sc)), MA_OWNED)
220 #define VTBLK_LOCK_ASSERT_NOTOWNED(_sc) \
221                                 mtx_assert(VTBLK_MTX((_sc)), MA_NOTOWNED)
222
223 #define VTBLK_DISK_NAME         "vtbd"
224 #define VTBLK_QUIESCE_TIMEOUT   (30 * hz)
225
226 /*
227  * Each block request uses at least two segments - one for the header
228  * and one for the status.
229  */
230 #define VTBLK_MIN_SEGMENTS      2
231
232 static device_method_t vtblk_methods[] = {
233         /* Device methods. */
234         DEVMETHOD(device_probe,         vtblk_probe),
235         DEVMETHOD(device_attach,        vtblk_attach),
236         DEVMETHOD(device_detach,        vtblk_detach),
237         DEVMETHOD(device_suspend,       vtblk_suspend),
238         DEVMETHOD(device_resume,        vtblk_resume),
239         DEVMETHOD(device_shutdown,      vtblk_shutdown),
240
241         /* VirtIO methods. */
242         DEVMETHOD(virtio_config_change, vtblk_config_change),
243
244         DEVMETHOD_END
245 };
246
247 static driver_t vtblk_driver = {
248         "vtblk",
249         vtblk_methods,
250         sizeof(struct vtblk_softc)
251 };
252 static devclass_t vtblk_devclass;
253
254 DRIVER_MODULE(virtio_blk, virtio_pci, vtblk_driver, vtblk_devclass,
255     vtblk_modevent, 0);
256 MODULE_VERSION(virtio_blk, 1);
257 MODULE_DEPEND(virtio_blk, virtio, 1, 1, 1);
258
259 static int
260 vtblk_modevent(module_t mod, int type, void *unused)
261 {
262         int error;
263
264         error = 0;
265
266         switch (type) {
267         case MOD_LOAD:
268         case MOD_QUIESCE:
269         case MOD_UNLOAD:
270         case MOD_SHUTDOWN:
271                 break;
272         default:
273                 error = EOPNOTSUPP;
274                 break;
275         }
276
277         return (error);
278 }
279
280 static int
281 vtblk_probe(device_t dev)
282 {
283
284         if (virtio_get_device_type(dev) != VIRTIO_ID_BLOCK)
285                 return (ENXIO);
286
287         device_set_desc(dev, "VirtIO Block Adapter");
288
289         return (BUS_PROBE_DEFAULT);
290 }
291
292 static int
293 vtblk_attach(device_t dev)
294 {
295         struct vtblk_softc *sc;
296         struct virtio_blk_config blkcfg;
297         int error;
298
299         virtio_set_feature_desc(dev, vtblk_feature_desc);
300
301         sc = device_get_softc(dev);
302         sc->vtblk_dev = dev;
303         VTBLK_LOCK_INIT(sc, device_get_nameunit(dev));
304         bioq_init(&sc->vtblk_bioq);
305         TAILQ_INIT(&sc->vtblk_dump_queue);
306         TAILQ_INIT(&sc->vtblk_req_free);
307         TAILQ_INIT(&sc->vtblk_req_ready);
308
309         vtblk_setup_sysctl(sc);
310         vtblk_setup_features(sc);
311
312         vtblk_read_config(sc, &blkcfg);
313
314         /*
315          * With the current sglist(9) implementation, it is not easy
316          * for us to support a maximum segment size as adjacent
317          * segments are coalesced. For now, just make sure it's larger
318          * than the maximum supported transfer size.
319          */
320         if (virtio_with_feature(dev, VIRTIO_BLK_F_SIZE_MAX)) {
321                 if (blkcfg.size_max < MAXPHYS) {
322                         error = ENOTSUP;
323                         device_printf(dev, "host requires unsupported "
324                             "maximum segment size feature\n");
325                         goto fail;
326                 }
327         }
328
329         sc->vtblk_max_nsegs = vtblk_maximum_segments(sc, &blkcfg);
330         if (sc->vtblk_max_nsegs <= VTBLK_MIN_SEGMENTS) {
331                 error = EINVAL;
332                 device_printf(dev, "fewer than minimum number of segments "
333                     "allowed: %d\n", sc->vtblk_max_nsegs);
334                 goto fail;
335         }
336
337         sc->vtblk_sglist = sglist_alloc(sc->vtblk_max_nsegs, M_NOWAIT);
338         if (sc->vtblk_sglist == NULL) {
339                 error = ENOMEM;
340                 device_printf(dev, "cannot allocate sglist\n");
341                 goto fail;
342         }
343
344         error = vtblk_alloc_virtqueue(sc);
345         if (error) {
346                 device_printf(dev, "cannot allocate virtqueue\n");
347                 goto fail;
348         }
349
350         error = vtblk_request_prealloc(sc);
351         if (error) {
352                 device_printf(dev, "cannot preallocate requests\n");
353                 goto fail;
354         }
355
356         vtblk_alloc_disk(sc, &blkcfg);
357
358         error = virtio_setup_intr(dev, INTR_TYPE_BIO | INTR_ENTROPY);
359         if (error) {
360                 device_printf(dev, "cannot setup virtqueue interrupt\n");
361                 goto fail;
362         }
363
364         vtblk_create_disk(sc);
365
366         virtqueue_enable_intr(sc->vtblk_vq);
367
368 fail:
369         if (error)
370                 vtblk_detach(dev);
371
372         return (error);
373 }
374
375 static int
376 vtblk_detach(device_t dev)
377 {
378         struct vtblk_softc *sc;
379
380         sc = device_get_softc(dev);
381
382         VTBLK_LOCK(sc);
383         sc->vtblk_flags |= VTBLK_FLAG_DETACH;
384         if (device_is_attached(dev))
385                 vtblk_stop(sc);
386         VTBLK_UNLOCK(sc);
387
388         vtblk_drain(sc);
389
390         if (sc->vtblk_disk != NULL) {
391                 disk_destroy(sc->vtblk_disk);
392                 sc->vtblk_disk = NULL;
393         }
394
395         if (sc->vtblk_sglist != NULL) {
396                 sglist_free(sc->vtblk_sglist);
397                 sc->vtblk_sglist = NULL;
398         }
399
400         VTBLK_LOCK_DESTROY(sc);
401
402         return (0);
403 }
404
405 static int
406 vtblk_suspend(device_t dev)
407 {
408         struct vtblk_softc *sc;
409         int error;
410
411         sc = device_get_softc(dev);
412
413         VTBLK_LOCK(sc);
414         sc->vtblk_flags |= VTBLK_FLAG_SUSPEND;
415         /* XXX BMV: virtio_stop(), etc needed here? */
416         error = vtblk_quiesce(sc);
417         if (error)
418                 sc->vtblk_flags &= ~VTBLK_FLAG_SUSPEND;
419         VTBLK_UNLOCK(sc);
420
421         return (error);
422 }
423
424 static int
425 vtblk_resume(device_t dev)
426 {
427         struct vtblk_softc *sc;
428
429         sc = device_get_softc(dev);
430
431         VTBLK_LOCK(sc);
432         /* XXX BMV: virtio_reinit(), etc needed here? */
433         sc->vtblk_flags &= ~VTBLK_FLAG_SUSPEND;
434         vtblk_startio(sc);
435         VTBLK_UNLOCK(sc);
436
437         return (0);
438 }
439
440 static int
441 vtblk_shutdown(device_t dev)
442 {
443
444         return (0);
445 }
446
447 static int
448 vtblk_config_change(device_t dev)
449 {
450         struct vtblk_softc *sc;
451         struct virtio_blk_config blkcfg;
452         uint64_t capacity;
453
454         sc = device_get_softc(dev);
455
456         vtblk_read_config(sc, &blkcfg);
457
458         /* Capacity is always in 512-byte units. */
459         capacity = blkcfg.capacity * 512;
460
461         if (sc->vtblk_disk->d_mediasize != capacity)
462                 vtblk_resize_disk(sc, capacity);
463
464         return (0);
465 }
466
467 static int
468 vtblk_open(struct disk *dp)
469 {
470         struct vtblk_softc *sc;
471
472         if ((sc = dp->d_drv1) == NULL)
473                 return (ENXIO);
474
475         return (sc->vtblk_flags & VTBLK_FLAG_DETACH ? ENXIO : 0);
476 }
477
478 static int
479 vtblk_close(struct disk *dp)
480 {
481         struct vtblk_softc *sc;
482
483         if ((sc = dp->d_drv1) == NULL)
484                 return (ENXIO);
485
486         return (0);
487 }
488
489 static int
490 vtblk_ioctl(struct disk *dp, u_long cmd, void *addr, int flag,
491     struct thread *td)
492 {
493         struct vtblk_softc *sc;
494
495         if ((sc = dp->d_drv1) == NULL)
496                 return (ENXIO);
497
498         return (ENOTTY);
499 }
500
501 static int
502 vtblk_dump(void *arg, void *virtual, vm_offset_t physical, off_t offset,
503     size_t length)
504 {
505         struct disk *dp;
506         struct vtblk_softc *sc;
507         int error;
508
509         dp = arg;
510         error = 0;
511
512         if ((sc = dp->d_drv1) == NULL)
513                 return (ENXIO);
514
515         VTBLK_LOCK(sc);
516
517         vtblk_dump_quiesce(sc);
518
519         if (length > 0)
520                 error = vtblk_dump_write(sc, virtual, offset, length);
521         if (error || (virtual == NULL && offset == 0))
522                 vtblk_dump_complete(sc);
523
524         VTBLK_UNLOCK(sc);
525
526         return (error);
527 }
528
529 static void
530 vtblk_strategy(struct bio *bp)
531 {
532         struct vtblk_softc *sc;
533
534         if ((sc = bp->bio_disk->d_drv1) == NULL) {
535                 vtblk_bio_done(NULL, bp, EINVAL);
536                 return;
537         }
538
539         /*
540          * Fail any write if RO. Unfortunately, there does not seem to
541          * be a better way to report our readonly'ness to GEOM above.
542          */
543         if (sc->vtblk_flags & VTBLK_FLAG_READONLY &&
544             (bp->bio_cmd == BIO_WRITE || bp->bio_cmd == BIO_FLUSH)) {
545                 vtblk_bio_done(sc, bp, EROFS);
546                 return;
547         }
548
549         VTBLK_LOCK(sc);
550
551         if (sc->vtblk_flags & VTBLK_FLAG_DETACH) {
552                 VTBLK_UNLOCK(sc);
553                 vtblk_bio_done(sc, bp, ENXIO);
554                 return;
555         }
556
557         bioq_insert_tail(&sc->vtblk_bioq, bp);
558         vtblk_startio(sc);
559
560         VTBLK_UNLOCK(sc);
561 }
562
563 static void
564 vtblk_negotiate_features(struct vtblk_softc *sc)
565 {
566         device_t dev;
567         uint64_t features;
568
569         dev = sc->vtblk_dev;
570         features = VTBLK_FEATURES;
571
572         sc->vtblk_features = virtio_negotiate_features(dev, features);
573 }
574
575 static void
576 vtblk_setup_features(struct vtblk_softc *sc)
577 {
578         device_t dev;
579
580         dev = sc->vtblk_dev;
581
582         vtblk_negotiate_features(sc);
583
584         if (virtio_with_feature(dev, VIRTIO_RING_F_INDIRECT_DESC))
585                 sc->vtblk_flags |= VTBLK_FLAG_INDIRECT;
586         if (virtio_with_feature(dev, VIRTIO_BLK_F_RO))
587                 sc->vtblk_flags |= VTBLK_FLAG_READONLY;
588         if (virtio_with_feature(dev, VIRTIO_BLK_F_BARRIER))
589                 sc->vtblk_flags |= VTBLK_FLAG_BARRIER;
590         if (virtio_with_feature(dev, VIRTIO_BLK_F_CONFIG_WCE))
591                 sc->vtblk_flags |= VTBLK_FLAG_WC_CONFIG;
592 }
593
594 static int
595 vtblk_maximum_segments(struct vtblk_softc *sc,
596     struct virtio_blk_config *blkcfg)
597 {
598         device_t dev;
599         int nsegs;
600
601         dev = sc->vtblk_dev;
602         nsegs = VTBLK_MIN_SEGMENTS;
603
604         if (virtio_with_feature(dev, VIRTIO_BLK_F_SEG_MAX)) {
605                 nsegs += MIN(blkcfg->seg_max, MAXPHYS / PAGE_SIZE + 1);
606                 if (sc->vtblk_flags & VTBLK_FLAG_INDIRECT)
607                         nsegs = MIN(nsegs, VIRTIO_MAX_INDIRECT);
608         } else
609                 nsegs += 1;
610
611         return (nsegs);
612 }
613
614 static int
615 vtblk_alloc_virtqueue(struct vtblk_softc *sc)
616 {
617         device_t dev;
618         struct vq_alloc_info vq_info;
619
620         dev = sc->vtblk_dev;
621
622         VQ_ALLOC_INFO_INIT(&vq_info, sc->vtblk_max_nsegs,
623             vtblk_vq_intr, sc, &sc->vtblk_vq,
624             "%s request", device_get_nameunit(dev));
625
626         return (virtio_alloc_virtqueues(dev, 0, 1, &vq_info));
627 }
628
629 static void
630 vtblk_resize_disk(struct vtblk_softc *sc, uint64_t new_capacity)
631 {
632         device_t dev;
633         struct disk *dp;
634         int error;
635
636         dev = sc->vtblk_dev;
637         dp = sc->vtblk_disk;
638
639         dp->d_mediasize = new_capacity;
640         if (bootverbose) {
641                 device_printf(dev, "resized to %juMB (%ju %u byte sectors)\n",
642                     (uintmax_t) dp->d_mediasize >> 20,
643                     (uintmax_t) dp->d_mediasize / dp->d_sectorsize,
644                     dp->d_sectorsize);
645         }
646
647         error = disk_resize(dp, M_NOWAIT);
648         if (error) {
649                 device_printf(dev,
650                     "disk_resize(9) failed, error: %d\n", error);
651         }
652 }
653
654 static void
655 vtblk_alloc_disk(struct vtblk_softc *sc, struct virtio_blk_config *blkcfg)
656 {
657         device_t dev;
658         struct disk *dp;
659
660         dev = sc->vtblk_dev;
661
662         sc->vtblk_disk = dp = disk_alloc();
663         dp->d_open = vtblk_open;
664         dp->d_close = vtblk_close;
665         dp->d_ioctl = vtblk_ioctl;
666         dp->d_strategy = vtblk_strategy;
667         dp->d_name = VTBLK_DISK_NAME;
668         dp->d_unit = device_get_unit(dev);
669         dp->d_drv1 = sc;
670         dp->d_flags = DISKFLAG_CANFLUSHCACHE | DISKFLAG_UNMAPPED_BIO |
671             DISKFLAG_DIRECT_COMPLETION;
672         dp->d_hba_vendor = virtio_get_vendor(dev);
673         dp->d_hba_device = virtio_get_device(dev);
674         dp->d_hba_subvendor = virtio_get_subvendor(dev);
675         dp->d_hba_subdevice = virtio_get_subdevice(dev);
676
677         if ((sc->vtblk_flags & VTBLK_FLAG_READONLY) == 0)
678                 dp->d_dump = vtblk_dump;
679
680         /* Capacity is always in 512-byte units. */
681         dp->d_mediasize = blkcfg->capacity * 512;
682
683         if (virtio_with_feature(dev, VIRTIO_BLK_F_BLK_SIZE))
684                 dp->d_sectorsize = blkcfg->blk_size;
685         else
686                 dp->d_sectorsize = 512;
687
688         /*
689          * The VirtIO maximum I/O size is given in terms of segments.
690          * However, FreeBSD limits I/O size by logical buffer size, not
691          * by physically contiguous pages. Therefore, we have to assume
692          * no pages are contiguous. This may impose an artificially low
693          * maximum I/O size. But in practice, since QEMU advertises 128
694          * segments, this gives us a maximum IO size of 125 * PAGE_SIZE,
695          * which is typically greater than MAXPHYS. Eventually we should
696          * just advertise MAXPHYS and split buffers that are too big.
697          *
698          * Note we must subtract one additional segment in case of non
699          * page aligned buffers.
700          */
701         dp->d_maxsize = (sc->vtblk_max_nsegs - VTBLK_MIN_SEGMENTS - 1) *
702             PAGE_SIZE;
703         if (dp->d_maxsize < PAGE_SIZE)
704                 dp->d_maxsize = PAGE_SIZE; /* XXX */
705
706         if (virtio_with_feature(dev, VIRTIO_BLK_F_GEOMETRY)) {
707                 dp->d_fwsectors = blkcfg->geometry.sectors;
708                 dp->d_fwheads = blkcfg->geometry.heads;
709         }
710
711         if (virtio_with_feature(dev, VIRTIO_BLK_F_TOPOLOGY) &&
712             blkcfg->topology.physical_block_exp > 0) {
713                 dp->d_stripesize = dp->d_sectorsize *
714                     (1 << blkcfg->topology.physical_block_exp);
715                 dp->d_stripeoffset = (dp->d_stripesize -
716                     blkcfg->topology.alignment_offset * dp->d_sectorsize) %
717                     dp->d_stripesize;
718         }
719
720         if (vtblk_write_cache_enabled(sc, blkcfg) != 0)
721                 sc->vtblk_write_cache = VTBLK_CACHE_WRITEBACK;
722         else
723                 sc->vtblk_write_cache = VTBLK_CACHE_WRITETHROUGH;
724 }
725
726 static void
727 vtblk_create_disk(struct vtblk_softc *sc)
728 {
729         struct disk *dp;
730
731         dp = sc->vtblk_disk;
732
733         vtblk_ident(sc);
734
735         device_printf(sc->vtblk_dev, "%juMB (%ju %u byte sectors)\n",
736             (uintmax_t) dp->d_mediasize >> 20,
737             (uintmax_t) dp->d_mediasize / dp->d_sectorsize,
738             dp->d_sectorsize);
739
740         disk_create(dp, DISK_VERSION);
741 }
742
743 static int
744 vtblk_request_prealloc(struct vtblk_softc *sc)
745 {
746         struct vtblk_request *req;
747         int i, nreqs;
748
749         nreqs = virtqueue_size(sc->vtblk_vq);
750
751         /*
752          * Preallocate sufficient requests to keep the virtqueue full. Each
753          * request consumes VTBLK_MIN_SEGMENTS or more descriptors so reduce
754          * the number allocated when indirect descriptors are not available.
755          */
756         if ((sc->vtblk_flags & VTBLK_FLAG_INDIRECT) == 0)
757                 nreqs /= VTBLK_MIN_SEGMENTS;
758
759         for (i = 0; i < nreqs; i++) {
760                 req = malloc(sizeof(struct vtblk_request), M_DEVBUF, M_NOWAIT);
761                 if (req == NULL)
762                         return (ENOMEM);
763
764                 MPASS(sglist_count(&req->vbr_hdr, sizeof(req->vbr_hdr)) == 1);
765                 MPASS(sglist_count(&req->vbr_ack, sizeof(req->vbr_ack)) == 1);
766
767                 sc->vtblk_request_count++;
768                 vtblk_request_enqueue(sc, req);
769         }
770
771         return (0);
772 }
773
774 static void
775 vtblk_request_free(struct vtblk_softc *sc)
776 {
777         struct vtblk_request *req;
778
779         MPASS(TAILQ_EMPTY(&sc->vtblk_req_ready));
780
781         while ((req = vtblk_request_dequeue(sc)) != NULL) {
782                 sc->vtblk_request_count--;
783                 free(req, M_DEVBUF);
784         }
785
786         KASSERT(sc->vtblk_request_count == 0,
787             ("%s: leaked %d requests", __func__, sc->vtblk_request_count));
788 }
789
790 static struct vtblk_request *
791 vtblk_request_dequeue(struct vtblk_softc *sc)
792 {
793         struct vtblk_request *req;
794
795         req = TAILQ_FIRST(&sc->vtblk_req_free);
796         if (req != NULL) {
797                 TAILQ_REMOVE(&sc->vtblk_req_free, req, vbr_link);
798                 bzero(req, sizeof(struct vtblk_request));
799         }
800
801         return (req);
802 }
803
804 static void
805 vtblk_request_enqueue(struct vtblk_softc *sc, struct vtblk_request *req)
806 {
807
808         TAILQ_INSERT_HEAD(&sc->vtblk_req_free, req, vbr_link);
809 }
810
811 static struct vtblk_request *
812 vtblk_request_next_ready(struct vtblk_softc *sc)
813 {
814         struct vtblk_request *req;
815
816         req = TAILQ_FIRST(&sc->vtblk_req_ready);
817         if (req != NULL)
818                 TAILQ_REMOVE(&sc->vtblk_req_ready, req, vbr_link);
819
820         return (req);
821 }
822
823 static void
824 vtblk_request_requeue_ready(struct vtblk_softc *sc, struct vtblk_request *req)
825 {
826
827         /* NOTE: Currently, there will be at most one request in the queue. */
828         TAILQ_INSERT_HEAD(&sc->vtblk_req_ready, req, vbr_link);
829 }
830
831 static struct vtblk_request *
832 vtblk_request_next(struct vtblk_softc *sc)
833 {
834         struct vtblk_request *req;
835
836         req = vtblk_request_next_ready(sc);
837         if (req != NULL)
838                 return (req);
839
840         return (vtblk_request_bio(sc));
841 }
842
843 static struct vtblk_request *
844 vtblk_request_bio(struct vtblk_softc *sc)
845 {
846         struct bio_queue_head *bioq;
847         struct vtblk_request *req;
848         struct bio *bp;
849
850         bioq = &sc->vtblk_bioq;
851
852         if (bioq_first(bioq) == NULL)
853                 return (NULL);
854
855         req = vtblk_request_dequeue(sc);
856         if (req == NULL)
857                 return (NULL);
858
859         bp = bioq_takefirst(bioq);
860         req->vbr_bp = bp;
861         req->vbr_ack = -1;
862         req->vbr_hdr.ioprio = 1;
863
864         switch (bp->bio_cmd) {
865         case BIO_FLUSH:
866                 req->vbr_hdr.type = VIRTIO_BLK_T_FLUSH;
867                 break;
868         case BIO_READ:
869                 req->vbr_hdr.type = VIRTIO_BLK_T_IN;
870                 req->vbr_hdr.sector = bp->bio_offset / 512;
871                 break;
872         case BIO_WRITE:
873                 req->vbr_hdr.type = VIRTIO_BLK_T_OUT;
874                 req->vbr_hdr.sector = bp->bio_offset / 512;
875                 break;
876         default:
877                 panic("%s: bio with unhandled cmd: %d", __func__, bp->bio_cmd);
878         }
879
880         if (bp->bio_flags & BIO_ORDERED)
881                 req->vbr_hdr.type |= VIRTIO_BLK_T_BARRIER;
882
883         return (req);
884 }
885
886 static int
887 vtblk_request_execute(struct vtblk_softc *sc, struct vtblk_request *req)
888 {
889         struct virtqueue *vq;
890         struct sglist *sg;
891         struct bio *bp;
892         int ordered, readable, writable, error;
893
894         vq = sc->vtblk_vq;
895         sg = sc->vtblk_sglist;
896         bp = req->vbr_bp;
897         ordered = 0;
898         writable = 0;
899
900         /*
901          * Some hosts (such as bhyve) do not implement the barrier feature,
902          * so we emulate it in the driver by allowing the barrier request
903          * to be the only one in flight.
904          */
905         if ((sc->vtblk_flags & VTBLK_FLAG_BARRIER) == 0) {
906                 if (sc->vtblk_req_ordered != NULL)
907                         return (EBUSY);
908                 if (bp->bio_flags & BIO_ORDERED) {
909                         if (!virtqueue_empty(vq))
910                                 return (EBUSY);
911                         ordered = 1;
912                         req->vbr_hdr.type &= ~VIRTIO_BLK_T_BARRIER;
913                 }
914         }
915
916         sglist_reset(sg);
917         sglist_append(sg, &req->vbr_hdr, sizeof(struct virtio_blk_outhdr));
918
919         if (bp->bio_cmd == BIO_READ || bp->bio_cmd == BIO_WRITE) {
920                 error = sglist_append_bio(sg, bp);
921                 if (error || sg->sg_nseg == sg->sg_maxseg) {
922                         panic("%s: bio %p data buffer too big %d",
923                             __func__, bp, error);
924                 }
925
926                 /* BIO_READ means the host writes into our buffer. */
927                 if (bp->bio_cmd == BIO_READ)
928                         writable = sg->sg_nseg - 1;
929         }
930
931         writable++;
932         sglist_append(sg, &req->vbr_ack, sizeof(uint8_t));
933         readable = sg->sg_nseg - writable;
934
935         error = virtqueue_enqueue(vq, req, sg, readable, writable);
936         if (error == 0 && ordered)
937                 sc->vtblk_req_ordered = req;
938
939         return (error);
940 }
941
942 static int
943 vtblk_request_error(struct vtblk_request *req)
944 {
945         int error;
946
947         switch (req->vbr_ack) {
948         case VIRTIO_BLK_S_OK:
949                 error = 0;
950                 break;
951         case VIRTIO_BLK_S_UNSUPP:
952                 error = ENOTSUP;
953                 break;
954         default:
955                 error = EIO;
956                 break;
957         }
958
959         return (error);
960 }
961
962 static void
963 vtblk_queue_completed(struct vtblk_softc *sc, struct bio_queue *queue)
964 {
965         struct vtblk_request *req;
966         struct bio *bp;
967
968         while ((req = virtqueue_dequeue(sc->vtblk_vq, NULL)) != NULL) {
969                 if (sc->vtblk_req_ordered != NULL) {
970                         MPASS(sc->vtblk_req_ordered == req);
971                         sc->vtblk_req_ordered = NULL;
972                 }
973
974                 bp = req->vbr_bp;
975                 bp->bio_error = vtblk_request_error(req);
976                 TAILQ_INSERT_TAIL(queue, bp, bio_queue);
977
978                 vtblk_request_enqueue(sc, req);
979         }
980 }
981
982 static void
983 vtblk_done_completed(struct vtblk_softc *sc, struct bio_queue *queue)
984 {
985         struct bio *bp, *tmp;
986
987         TAILQ_FOREACH_SAFE(bp, queue, bio_queue, tmp) {
988                 if (bp->bio_error != 0)
989                         disk_err(bp, "hard error", -1, 1);
990                 vtblk_bio_done(sc, bp, bp->bio_error);
991         }
992 }
993
994 static void
995 vtblk_drain_vq(struct vtblk_softc *sc)
996 {
997         struct virtqueue *vq;
998         struct vtblk_request *req;
999         int last;
1000
1001         vq = sc->vtblk_vq;
1002         last = 0;
1003
1004         while ((req = virtqueue_drain(vq, &last)) != NULL) {
1005                 vtblk_bio_done(sc, req->vbr_bp, ENXIO);
1006                 vtblk_request_enqueue(sc, req);
1007         }
1008
1009         sc->vtblk_req_ordered = NULL;
1010         KASSERT(virtqueue_empty(vq), ("virtqueue not empty"));
1011 }
1012
1013 static void
1014 vtblk_drain(struct vtblk_softc *sc)
1015 {
1016         struct bio_queue queue;
1017         struct bio_queue_head *bioq;
1018         struct vtblk_request *req;
1019         struct bio *bp;
1020
1021         bioq = &sc->vtblk_bioq;
1022         TAILQ_INIT(&queue);
1023
1024         if (sc->vtblk_vq != NULL) {
1025                 vtblk_queue_completed(sc, &queue);
1026                 vtblk_done_completed(sc, &queue);
1027
1028                 vtblk_drain_vq(sc);
1029         }
1030
1031         while ((req = vtblk_request_next_ready(sc)) != NULL) {
1032                 vtblk_bio_done(sc, req->vbr_bp, ENXIO);
1033                 vtblk_request_enqueue(sc, req);
1034         }
1035
1036         while (bioq_first(bioq) != NULL) {
1037                 bp = bioq_takefirst(bioq);
1038                 vtblk_bio_done(sc, bp, ENXIO);
1039         }
1040
1041         vtblk_request_free(sc);
1042 }
1043
1044 static void
1045 vtblk_startio(struct vtblk_softc *sc)
1046 {
1047         struct virtqueue *vq;
1048         struct vtblk_request *req;
1049         int enq;
1050
1051         VTBLK_LOCK_ASSERT(sc);
1052         vq = sc->vtblk_vq;
1053         enq = 0;
1054
1055         if (sc->vtblk_flags & VTBLK_FLAG_SUSPEND)
1056                 return;
1057
1058         while (!virtqueue_full(vq)) {
1059                 req = vtblk_request_next(sc);
1060                 if (req == NULL)
1061                         break;
1062
1063                 if (vtblk_request_execute(sc, req) != 0) {
1064                         vtblk_request_requeue_ready(sc, req);
1065                         break;
1066                 }
1067
1068                 enq++;
1069         }
1070
1071         if (enq > 0)
1072                 virtqueue_notify(vq);
1073 }
1074
1075 static void
1076 vtblk_bio_done(struct vtblk_softc *sc, struct bio *bp, int error)
1077 {
1078
1079         /* Because of GEOM direct dispatch, we cannot hold any locks. */
1080         if (sc != NULL)
1081                 VTBLK_LOCK_ASSERT_NOTOWNED(sc);
1082
1083         if (error) {
1084                 bp->bio_resid = bp->bio_bcount;
1085                 bp->bio_error = error;
1086                 bp->bio_flags |= BIO_ERROR;
1087         }
1088
1089         biodone(bp);
1090 }
1091
1092 #define VTBLK_GET_CONFIG(_dev, _feature, _field, _cfg)                  \
1093         if (virtio_with_feature(_dev, _feature)) {                      \
1094                 virtio_read_device_config(_dev,                         \
1095                     offsetof(struct virtio_blk_config, _field),         \
1096                     &(_cfg)->_field, sizeof((_cfg)->_field));           \
1097         }
1098
1099 static void
1100 vtblk_read_config(struct vtblk_softc *sc, struct virtio_blk_config *blkcfg)
1101 {
1102         device_t dev;
1103
1104         dev = sc->vtblk_dev;
1105
1106         bzero(blkcfg, sizeof(struct virtio_blk_config));
1107
1108         /* The capacity is always available. */
1109         virtio_read_device_config(dev, offsetof(struct virtio_blk_config,
1110             capacity), &blkcfg->capacity, sizeof(blkcfg->capacity));
1111
1112         /* Read the configuration if the feature was negotiated. */
1113         VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_SIZE_MAX, size_max, blkcfg);
1114         VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_SEG_MAX, seg_max, blkcfg);
1115         VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_GEOMETRY, geometry, blkcfg);
1116         VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_BLK_SIZE, blk_size, blkcfg);
1117         VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_TOPOLOGY, topology, blkcfg);
1118         VTBLK_GET_CONFIG(dev, VIRTIO_BLK_F_CONFIG_WCE, writeback, blkcfg);
1119 }
1120
1121 #undef VTBLK_GET_CONFIG
1122
1123 static void
1124 vtblk_ident(struct vtblk_softc *sc)
1125 {
1126         struct bio buf;
1127         struct disk *dp;
1128         struct vtblk_request *req;
1129         int len, error;
1130
1131         dp = sc->vtblk_disk;
1132         len = MIN(VIRTIO_BLK_ID_BYTES, DISK_IDENT_SIZE);
1133
1134         if (vtblk_tunable_int(sc, "no_ident", vtblk_no_ident) != 0)
1135                 return;
1136
1137         req = vtblk_request_dequeue(sc);
1138         if (req == NULL)
1139                 return;
1140
1141         req->vbr_ack = -1;
1142         req->vbr_hdr.type = VIRTIO_BLK_T_GET_ID;
1143         req->vbr_hdr.ioprio = 1;
1144         req->vbr_hdr.sector = 0;
1145
1146         req->vbr_bp = &buf;
1147         bzero(&buf, sizeof(struct bio));
1148
1149         buf.bio_cmd = BIO_READ;
1150         buf.bio_data = dp->d_ident;
1151         buf.bio_bcount = len;
1152
1153         VTBLK_LOCK(sc);
1154         error = vtblk_poll_request(sc, req);
1155         VTBLK_UNLOCK(sc);
1156
1157         vtblk_request_enqueue(sc, req);
1158
1159         if (error) {
1160                 device_printf(sc->vtblk_dev,
1161                     "error getting device identifier: %d\n", error);
1162         }
1163 }
1164
1165 static int
1166 vtblk_poll_request(struct vtblk_softc *sc, struct vtblk_request *req)
1167 {
1168         struct virtqueue *vq;
1169         int error;
1170
1171         vq = sc->vtblk_vq;
1172
1173         if (!virtqueue_empty(vq))
1174                 return (EBUSY);
1175
1176         error = vtblk_request_execute(sc, req);
1177         if (error)
1178                 return (error);
1179
1180         virtqueue_notify(vq);
1181         virtqueue_poll(vq, NULL);
1182
1183         error = vtblk_request_error(req);
1184         if (error && bootverbose) {
1185                 device_printf(sc->vtblk_dev,
1186                     "%s: IO error: %d\n", __func__, error);
1187         }
1188
1189         return (error);
1190 }
1191
1192 static int
1193 vtblk_quiesce(struct vtblk_softc *sc)
1194 {
1195         int error;
1196
1197         VTBLK_LOCK_ASSERT(sc);
1198         error = 0;
1199
1200         while (!virtqueue_empty(sc->vtblk_vq)) {
1201                 if (mtx_sleep(&sc->vtblk_vq, VTBLK_MTX(sc), PRIBIO, "vtblkq",
1202                     VTBLK_QUIESCE_TIMEOUT) == EWOULDBLOCK) {
1203                         error = EBUSY;
1204                         break;
1205                 }
1206         }
1207
1208         return (error);
1209 }
1210
1211 static void
1212 vtblk_vq_intr(void *xsc)
1213 {
1214         struct vtblk_softc *sc;
1215         struct virtqueue *vq;
1216         struct bio_queue queue;
1217
1218         sc = xsc;
1219         vq = sc->vtblk_vq;
1220         TAILQ_INIT(&queue);
1221
1222         VTBLK_LOCK(sc);
1223
1224 again:
1225         if (sc->vtblk_flags & VTBLK_FLAG_DETACH)
1226                 goto out;
1227
1228         vtblk_queue_completed(sc, &queue);
1229         vtblk_startio(sc);
1230
1231         if (virtqueue_enable_intr(vq) != 0) {
1232                 virtqueue_disable_intr(vq);
1233                 goto again;
1234         }
1235
1236         if (sc->vtblk_flags & VTBLK_FLAG_SUSPEND)
1237                 wakeup(&sc->vtblk_vq);
1238
1239 out:
1240         VTBLK_UNLOCK(sc);
1241         vtblk_done_completed(sc, &queue);
1242 }
1243
1244 static void
1245 vtblk_stop(struct vtblk_softc *sc)
1246 {
1247
1248         virtqueue_disable_intr(sc->vtblk_vq);
1249         virtio_stop(sc->vtblk_dev);
1250 }
1251
1252 static void
1253 vtblk_dump_quiesce(struct vtblk_softc *sc)
1254 {
1255
1256         /*
1257          * Spin here until all the requests in-flight at the time of the
1258          * dump are completed and queued. The queued requests will be
1259          * biodone'd once the dump is finished.
1260          */
1261         while (!virtqueue_empty(sc->vtblk_vq))
1262                 vtblk_queue_completed(sc, &sc->vtblk_dump_queue);
1263 }
1264
1265 static int
1266 vtblk_dump_write(struct vtblk_softc *sc, void *virtual, off_t offset,
1267     size_t length)
1268 {
1269         struct bio buf;
1270         struct vtblk_request *req;
1271
1272         req = &sc->vtblk_dump_request;
1273         req->vbr_ack = -1;
1274         req->vbr_hdr.type = VIRTIO_BLK_T_OUT;
1275         req->vbr_hdr.ioprio = 1;
1276         req->vbr_hdr.sector = offset / 512;
1277
1278         req->vbr_bp = &buf;
1279         bzero(&buf, sizeof(struct bio));
1280
1281         buf.bio_cmd = BIO_WRITE;
1282         buf.bio_data = virtual;
1283         buf.bio_bcount = length;
1284
1285         return (vtblk_poll_request(sc, req));
1286 }
1287
1288 static int
1289 vtblk_dump_flush(struct vtblk_softc *sc)
1290 {
1291         struct bio buf;
1292         struct vtblk_request *req;
1293
1294         req = &sc->vtblk_dump_request;
1295         req->vbr_ack = -1;
1296         req->vbr_hdr.type = VIRTIO_BLK_T_FLUSH;
1297         req->vbr_hdr.ioprio = 1;
1298         req->vbr_hdr.sector = 0;
1299
1300         req->vbr_bp = &buf;
1301         bzero(&buf, sizeof(struct bio));
1302
1303         buf.bio_cmd = BIO_FLUSH;
1304
1305         return (vtblk_poll_request(sc, req));
1306 }
1307
1308 static void
1309 vtblk_dump_complete(struct vtblk_softc *sc)
1310 {
1311
1312         vtblk_dump_flush(sc);
1313
1314         VTBLK_UNLOCK(sc);
1315         vtblk_done_completed(sc, &sc->vtblk_dump_queue);
1316         VTBLK_LOCK(sc);
1317 }
1318
1319 static void
1320 vtblk_set_write_cache(struct vtblk_softc *sc, int wc)
1321 {
1322
1323         /* Set either writeback (1) or writethrough (0) mode. */
1324         virtio_write_dev_config_1(sc->vtblk_dev,
1325             offsetof(struct virtio_blk_config, writeback), wc);
1326 }
1327
1328 static int
1329 vtblk_write_cache_enabled(struct vtblk_softc *sc,
1330     struct virtio_blk_config *blkcfg)
1331 {
1332         int wc;
1333
1334         if (sc->vtblk_flags & VTBLK_FLAG_WC_CONFIG) {
1335                 wc = vtblk_tunable_int(sc, "writecache_mode",
1336                     vtblk_writecache_mode);
1337                 if (wc >= 0 && wc < VTBLK_CACHE_MAX)
1338                         vtblk_set_write_cache(sc, wc);
1339                 else
1340                         wc = blkcfg->writeback;
1341         } else
1342                 wc = virtio_with_feature(sc->vtblk_dev, VIRTIO_BLK_F_WCE);
1343
1344         return (wc);
1345 }
1346
1347 static int
1348 vtblk_write_cache_sysctl(SYSCTL_HANDLER_ARGS)
1349 {
1350         struct vtblk_softc *sc;
1351         int wc, error;
1352
1353         sc = oidp->oid_arg1;
1354         wc = sc->vtblk_write_cache;
1355
1356         error = sysctl_handle_int(oidp, &wc, 0, req);
1357         if (error || req->newptr == NULL)
1358                 return (error);
1359         if ((sc->vtblk_flags & VTBLK_FLAG_WC_CONFIG) == 0)
1360                 return (EPERM);
1361         if (wc < 0 || wc >= VTBLK_CACHE_MAX)
1362                 return (EINVAL);
1363
1364         VTBLK_LOCK(sc);
1365         sc->vtblk_write_cache = wc;
1366         vtblk_set_write_cache(sc, sc->vtblk_write_cache);
1367         VTBLK_UNLOCK(sc);
1368
1369         return (0);
1370 }
1371
1372 static void
1373 vtblk_setup_sysctl(struct vtblk_softc *sc)
1374 {
1375         device_t dev;
1376         struct sysctl_ctx_list *ctx;
1377         struct sysctl_oid *tree;
1378         struct sysctl_oid_list *child;
1379
1380         dev = sc->vtblk_dev;
1381         ctx = device_get_sysctl_ctx(dev);
1382         tree = device_get_sysctl_tree(dev);
1383         child = SYSCTL_CHILDREN(tree);
1384
1385         SYSCTL_ADD_PROC(ctx, child, OID_AUTO, "writecache_mode",
1386             CTLTYPE_INT | CTLFLAG_RW, sc, 0, vtblk_write_cache_sysctl,
1387             "I", "Write cache mode (writethrough (0) or writeback (1))");
1388 }
1389
1390 static int
1391 vtblk_tunable_int(struct vtblk_softc *sc, const char *knob, int def)
1392 {
1393         char path[64];
1394
1395         snprintf(path, sizeof(path),
1396             "hw.vtblk.%d.%s", device_get_unit(sc->vtblk_dev), knob);
1397         TUNABLE_INT_FETCH(path, &def);
1398
1399         return (def);
1400 }