2 #include <linux/spinlock.h>
3 #include <linux/blkdev.h>
4 #include <linux/hdreg.h>
5 #include <linux/virtio.h>
6 #include <linux/virtio_ids.h>
7 #include <linux/virtio_blk.h>
8 #include <linux/scatterlist.h>
12 static int major
, index
;
18 struct virtio_device
*vdev
;
21 /* The disk structure for the kernel. */
24 /* Request tracking. */
25 struct list_head reqs
;
29 /* What host tells us, plus 2 for header & tailer. */
30 unsigned int sg_elems
;
32 /* Scatterlist: can be too big for stack. */
33 struct scatterlist sg
[/*sg_elems*/];
38 struct list_head list
;
40 struct virtio_blk_outhdr out_hdr
;
41 struct virtio_scsi_inhdr in_hdr
;
45 static void blk_done(struct virtqueue
*vq
)
47 struct virtio_blk
*vblk
= vq
->vdev
->priv
;
48 struct virtblk_req
*vbr
;
52 spin_lock_irqsave(&vblk
->lock
, flags
);
53 while ((vbr
= vblk
->vq
->vq_ops
->get_buf(vblk
->vq
, &len
)) != NULL
) {
56 switch (vbr
->status
) {
60 case VIRTIO_BLK_S_UNSUPP
:
68 if (blk_pc_request(vbr
->req
)) {
69 vbr
->req
->resid_len
= vbr
->in_hdr
.residual
;
70 vbr
->req
->sense_len
= vbr
->in_hdr
.sense_len
;
71 vbr
->req
->errors
= vbr
->in_hdr
.errors
;
74 __blk_end_request_all(vbr
->req
, error
);
76 mempool_free(vbr
, vblk
->pool
);
78 /* In case queue is stopped waiting for more buffers. */
79 blk_start_queue(vblk
->disk
->queue
);
80 spin_unlock_irqrestore(&vblk
->lock
, flags
);
83 static bool do_req(struct request_queue
*q
, struct virtio_blk
*vblk
,
86 unsigned long num
, out
= 0, in
= 0;
87 struct virtblk_req
*vbr
;
89 vbr
= mempool_alloc(vblk
->pool
, GFP_ATOMIC
);
91 /* When another request finishes we'll try again. */
95 switch (req
->cmd_type
) {
97 vbr
->out_hdr
.type
= 0;
98 vbr
->out_hdr
.sector
= blk_rq_pos(vbr
->req
);
99 vbr
->out_hdr
.ioprio
= req_get_ioprio(vbr
->req
);
101 case REQ_TYPE_BLOCK_PC
:
102 vbr
->out_hdr
.type
= VIRTIO_BLK_T_SCSI_CMD
;
103 vbr
->out_hdr
.sector
= 0;
104 vbr
->out_hdr
.ioprio
= req_get_ioprio(vbr
->req
);
106 case REQ_TYPE_LINUX_BLOCK
:
107 if (req
->cmd
[0] == REQ_LB_OP_FLUSH
) {
108 vbr
->out_hdr
.type
= VIRTIO_BLK_T_FLUSH
;
109 vbr
->out_hdr
.sector
= 0;
110 vbr
->out_hdr
.ioprio
= req_get_ioprio(vbr
->req
);
115 /* We don't put anything else in the queue. */
119 if (blk_barrier_rq(vbr
->req
))
120 vbr
->out_hdr
.type
|= VIRTIO_BLK_T_BARRIER
;
122 sg_set_buf(&vblk
->sg
[out
++], &vbr
->out_hdr
, sizeof(vbr
->out_hdr
));
125 * If this is a packet command we need a couple of additional headers.
126 * Behind the normal outhdr we put a segment with the scsi command
127 * block, and before the normal inhdr we put the sense data and the
128 * inhdr with additional status information before the normal inhdr.
130 if (blk_pc_request(vbr
->req
))
131 sg_set_buf(&vblk
->sg
[out
++], vbr
->req
->cmd
, vbr
->req
->cmd_len
);
133 num
= blk_rq_map_sg(q
, vbr
->req
, vblk
->sg
+ out
);
135 if (blk_pc_request(vbr
->req
)) {
136 sg_set_buf(&vblk
->sg
[num
+ out
+ in
++], vbr
->req
->sense
, 96);
137 sg_set_buf(&vblk
->sg
[num
+ out
+ in
++], &vbr
->in_hdr
,
138 sizeof(vbr
->in_hdr
));
141 sg_set_buf(&vblk
->sg
[num
+ out
+ in
++], &vbr
->status
,
142 sizeof(vbr
->status
));
145 if (rq_data_dir(vbr
->req
) == WRITE
) {
146 vbr
->out_hdr
.type
|= VIRTIO_BLK_T_OUT
;
149 vbr
->out_hdr
.type
|= VIRTIO_BLK_T_IN
;
154 if (vblk
->vq
->vq_ops
->add_buf(vblk
->vq
, vblk
->sg
, out
, in
, vbr
) < 0) {
155 mempool_free(vbr
, vblk
->pool
);
159 list_add_tail(&vbr
->list
, &vblk
->reqs
);
163 static void do_virtblk_request(struct request_queue
*q
)
165 struct virtio_blk
*vblk
= q
->queuedata
;
167 unsigned int issued
= 0;
169 while ((req
= blk_peek_request(q
)) != NULL
) {
170 BUG_ON(req
->nr_phys_segments
+ 2 > vblk
->sg_elems
);
172 /* If this request fails, stop queue and wait for something to
173 finish to restart it. */
174 if (!do_req(q
, vblk
, req
)) {
178 blk_start_request(req
);
183 vblk
->vq
->vq_ops
->kick(vblk
->vq
);
186 /* return ATA identify data
188 static int virtblk_identify(struct gendisk
*disk
, void *argp
)
190 struct virtio_blk
*vblk
= disk
->private_data
;
194 opaque
= kmalloc(VIRTIO_BLK_ID_BYTES
, GFP_KERNEL
);
198 err
= virtio_config_buf(vblk
->vdev
, VIRTIO_BLK_F_IDENTIFY
,
199 offsetof(struct virtio_blk_config
, identify
), opaque
,
200 VIRTIO_BLK_ID_BYTES
);
205 if (copy_to_user(argp
, opaque
, VIRTIO_BLK_ID_BYTES
))
214 static void virtblk_prepare_flush(struct request_queue
*q
, struct request
*req
)
216 req
->cmd_type
= REQ_TYPE_LINUX_BLOCK
;
217 req
->cmd
[0] = REQ_LB_OP_FLUSH
;
220 static int virtblk_ioctl(struct block_device
*bdev
, fmode_t mode
,
221 unsigned cmd
, unsigned long data
)
223 struct gendisk
*disk
= bdev
->bd_disk
;
224 struct virtio_blk
*vblk
= disk
->private_data
;
225 void __user
*argp
= (void __user
*)data
;
227 if (cmd
== HDIO_GET_IDENTITY
)
228 return virtblk_identify(disk
, argp
);
231 * Only allow the generic SCSI ioctls if the host can support it.
233 if (!virtio_has_feature(vblk
->vdev
, VIRTIO_BLK_F_SCSI
))
236 return scsi_cmd_ioctl(disk
->queue
, disk
, mode
, cmd
, argp
);
239 /* We provide getgeo only to please some old bootloader/partitioning tools */
240 static int virtblk_getgeo(struct block_device
*bd
, struct hd_geometry
*geo
)
242 struct virtio_blk
*vblk
= bd
->bd_disk
->private_data
;
243 struct virtio_blk_geometry vgeo
;
246 /* see if the host passed in geometry config */
247 err
= virtio_config_val(vblk
->vdev
, VIRTIO_BLK_F_GEOMETRY
,
248 offsetof(struct virtio_blk_config
, geometry
),
252 geo
->heads
= vgeo
.heads
;
253 geo
->sectors
= vgeo
.sectors
;
254 geo
->cylinders
= vgeo
.cylinders
;
256 /* some standard values, similar to sd */
258 geo
->sectors
= 1 << 5;
259 geo
->cylinders
= get_capacity(bd
->bd_disk
) >> 11;
264 static const struct block_device_operations virtblk_fops
= {
265 .locked_ioctl
= virtblk_ioctl
,
266 .owner
= THIS_MODULE
,
267 .getgeo
= virtblk_getgeo
,
270 static int index_to_minor(int index
)
272 return index
<< PART_BITS
;
275 static int __devinit
virtblk_probe(struct virtio_device
*vdev
)
277 struct virtio_blk
*vblk
;
281 u32 blk_size
, sg_elems
;
283 if (index_to_minor(index
) >= 1 << MINORBITS
)
286 /* We need to know how many segments before we allocate. */
287 err
= virtio_config_val(vdev
, VIRTIO_BLK_F_SEG_MAX
,
288 offsetof(struct virtio_blk_config
, seg_max
),
293 /* We need an extra sg elements at head and tail. */
295 vdev
->priv
= vblk
= kmalloc(sizeof(*vblk
) +
296 sizeof(vblk
->sg
[0]) * sg_elems
, GFP_KERNEL
);
302 INIT_LIST_HEAD(&vblk
->reqs
);
303 spin_lock_init(&vblk
->lock
);
305 vblk
->sg_elems
= sg_elems
;
306 sg_init_table(vblk
->sg
, vblk
->sg_elems
);
308 /* We expect one virtqueue, for output. */
309 vblk
->vq
= virtio_find_single_vq(vdev
, blk_done
, "requests");
310 if (IS_ERR(vblk
->vq
)) {
311 err
= PTR_ERR(vblk
->vq
);
315 vblk
->pool
= mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req
));
321 /* FIXME: How many partitions? How long is a piece of string? */
322 vblk
->disk
= alloc_disk(1 << PART_BITS
);
328 vblk
->disk
->queue
= blk_init_queue(do_virtblk_request
, &vblk
->lock
);
329 if (!vblk
->disk
->queue
) {
334 vblk
->disk
->queue
->queuedata
= vblk
;
335 queue_flag_set_unlocked(QUEUE_FLAG_VIRT
, vblk
->disk
->queue
);
338 sprintf(vblk
->disk
->disk_name
, "vd%c", 'a' + index
% 26);
339 } else if (index
< (26 + 1) * 26) {
340 sprintf(vblk
->disk
->disk_name
, "vd%c%c",
341 'a' + index
/ 26 - 1, 'a' + index
% 26);
343 const unsigned int m1
= (index
/ 26 - 1) / 26 - 1;
344 const unsigned int m2
= (index
/ 26 - 1) % 26;
345 const unsigned int m3
= index
% 26;
346 sprintf(vblk
->disk
->disk_name
, "vd%c%c%c",
347 'a' + m1
, 'a' + m2
, 'a' + m3
);
350 vblk
->disk
->major
= major
;
351 vblk
->disk
->first_minor
= index_to_minor(index
);
352 vblk
->disk
->private_data
= vblk
;
353 vblk
->disk
->fops
= &virtblk_fops
;
354 vblk
->disk
->driverfs_dev
= &vdev
->dev
;
357 /* If barriers are supported, tell block layer that queue is ordered */
358 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_FLUSH
))
359 blk_queue_ordered(vblk
->disk
->queue
, QUEUE_ORDERED_DRAIN_FLUSH
,
360 virtblk_prepare_flush
);
361 else if (virtio_has_feature(vdev
, VIRTIO_BLK_F_BARRIER
))
362 blk_queue_ordered(vblk
->disk
->queue
, QUEUE_ORDERED_TAG
, NULL
);
364 /* If disk is read-only in the host, the guest should obey */
365 if (virtio_has_feature(vdev
, VIRTIO_BLK_F_RO
))
366 set_disk_ro(vblk
->disk
, 1);
368 /* Host must always specify the capacity. */
369 vdev
->config
->get(vdev
, offsetof(struct virtio_blk_config
, capacity
),
372 /* If capacity is too big, truncate with warning. */
373 if ((sector_t
)cap
!= cap
) {
374 dev_warn(&vdev
->dev
, "Capacity %llu too large: truncating\n",
375 (unsigned long long)cap
);
378 set_capacity(vblk
->disk
, cap
);
380 /* We can handle whatever the host told us to handle. */
381 blk_queue_max_phys_segments(vblk
->disk
->queue
, vblk
->sg_elems
-2);
382 blk_queue_max_hw_segments(vblk
->disk
->queue
, vblk
->sg_elems
-2);
384 /* No need to bounce any requests */
385 blk_queue_bounce_limit(vblk
->disk
->queue
, BLK_BOUNCE_ANY
);
387 /* No real sector limit. */
388 blk_queue_max_sectors(vblk
->disk
->queue
, -1U);
390 /* Host can optionally specify maximum segment size and number of
392 err
= virtio_config_val(vdev
, VIRTIO_BLK_F_SIZE_MAX
,
393 offsetof(struct virtio_blk_config
, size_max
),
396 blk_queue_max_segment_size(vblk
->disk
->queue
, v
);
398 blk_queue_max_segment_size(vblk
->disk
->queue
, -1U);
400 /* Host can optionally specify the block size of the device */
401 err
= virtio_config_val(vdev
, VIRTIO_BLK_F_BLK_SIZE
,
402 offsetof(struct virtio_blk_config
, blk_size
),
405 blk_queue_logical_block_size(vblk
->disk
->queue
, blk_size
);
407 add_disk(vblk
->disk
);
411 put_disk(vblk
->disk
);
413 mempool_destroy(vblk
->pool
);
415 vdev
->config
->del_vqs(vdev
);
422 static void __devexit
virtblk_remove(struct virtio_device
*vdev
)
424 struct virtio_blk
*vblk
= vdev
->priv
;
426 /* Nothing should be pending. */
427 BUG_ON(!list_empty(&vblk
->reqs
));
429 /* Stop all the virtqueues. */
430 vdev
->config
->reset(vdev
);
432 del_gendisk(vblk
->disk
);
433 blk_cleanup_queue(vblk
->disk
->queue
);
434 put_disk(vblk
->disk
);
435 mempool_destroy(vblk
->pool
);
436 vdev
->config
->del_vqs(vdev
);
440 static struct virtio_device_id id_table
[] = {
441 { VIRTIO_ID_BLOCK
, VIRTIO_DEV_ANY_ID
},
445 static unsigned int features
[] = {
446 VIRTIO_BLK_F_BARRIER
, VIRTIO_BLK_F_SEG_MAX
, VIRTIO_BLK_F_SIZE_MAX
,
447 VIRTIO_BLK_F_GEOMETRY
, VIRTIO_BLK_F_RO
, VIRTIO_BLK_F_BLK_SIZE
,
448 VIRTIO_BLK_F_SCSI
, VIRTIO_BLK_F_IDENTIFY
, VIRTIO_BLK_F_FLUSH
452 * virtio_blk causes spurious section mismatch warning by
453 * simultaneously referring to a __devinit and a __devexit function.
454 * Use __refdata to avoid this warning.
456 static struct virtio_driver __refdata virtio_blk
= {
457 .feature_table
= features
,
458 .feature_table_size
= ARRAY_SIZE(features
),
459 .driver
.name
= KBUILD_MODNAME
,
460 .driver
.owner
= THIS_MODULE
,
461 .id_table
= id_table
,
462 .probe
= virtblk_probe
,
463 .remove
= __devexit_p(virtblk_remove
),
466 static int __init
init(void)
468 major
= register_blkdev(0, "virtblk");
471 return register_virtio_driver(&virtio_blk
);
474 static void __exit
fini(void)
476 unregister_blkdev(major
, "virtblk");
477 unregister_virtio_driver(&virtio_blk
);
482 MODULE_DEVICE_TABLE(virtio
, id_table
);
483 MODULE_DESCRIPTION("Virtio block driver");
484 MODULE_LICENSE("GPL");