blob: 079c08808d8a41b7fe5d27b00d389579ffae0930 [file] [log] [blame]
Rusty Russelle467cde2007-10-22 11:03:38 +10001//#define DEBUG
2#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09003#include <linux/slab.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10004#include <linux/blkdev.h>
5#include <linux/hdreg.h>
6#include <linux/virtio.h>
7#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +02008#include <linux/scatterlist.h>
Christoph Hellwig7a7c9242011-02-01 21:43:48 +01009#include <linux/string_helpers.h>
Liu Yuan6917f832011-04-24 02:49:26 +080010#include <scsi/scsi_cmnd.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +020011
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010012#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100013
Christian Borntraegerd50ed902008-02-01 09:05:00 +010014static int major, index;
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010015struct workqueue_struct *virtblk_wq;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010016
Rusty Russelle467cde2007-10-22 11:03:38 +100017struct virtio_blk
18{
19 spinlock_t lock;
20
21 struct virtio_device *vdev;
22 struct virtqueue *vq;
23
24 /* The disk structure for the kernel. */
25 struct gendisk *disk;
26
27 /* Request tracking. */
28 struct list_head reqs;
29
30 mempool_t *pool;
31
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010032 /* Process context for config space updates */
33 struct work_struct config_work;
34
Rusty Russell0864b792008-12-30 09:26:05 -060035 /* What host tells us, plus 2 for header & tailer. */
36 unsigned int sg_elems;
37
Rusty Russelle467cde2007-10-22 11:03:38 +100038 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060039 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100040};
41
42struct virtblk_req
43{
44 struct list_head list;
45 struct request *req;
46 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020047 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050048 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100049};
50
Rusty Russell18445c42008-02-04 23:49:57 -050051static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100052{
53 struct virtio_blk *vblk = vq->vdev->priv;
54 struct virtblk_req *vbr;
55 unsigned int len;
56 unsigned long flags;
57
58 spin_lock_irqsave(&vblk->lock, flags);
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +030059 while ((vbr = virtqueue_get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040060 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020061
Rusty Russellcb38fa22008-05-02 21:50:45 -050062 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100063 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040064 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100065 break;
66 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040067 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100068 break;
69 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040070 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100071 break;
72 }
73
Christoph Hellwig33659eb2010-08-07 18:17:56 +020074 switch (vbr->req->cmd_type) {
75 case REQ_TYPE_BLOCK_PC:
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020076 vbr->req->resid_len = vbr->in_hdr.residual;
77 vbr->req->sense_len = vbr->in_hdr.sense_len;
78 vbr->req->errors = vbr->in_hdr.errors;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020079 break;
80 case REQ_TYPE_SPECIAL:
john cooper4cb2ea22010-03-25 01:33:33 -040081 vbr->req->errors = (error != 0);
Christoph Hellwig33659eb2010-08-07 18:17:56 +020082 break;
Jens Axboe15fa6e82010-06-18 12:10:18 +020083 default:
84 break;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020085 }
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020086
Tejun Heo40cbbb72009-04-23 11:05:19 +090087 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +100088 list_del(&vbr->list);
89 mempool_free(vbr, vblk->pool);
90 }
91 /* In case queue is stopped waiting for more buffers. */
92 blk_start_queue(vblk->disk->queue);
93 spin_unlock_irqrestore(&vblk->lock, flags);
Rusty Russelle467cde2007-10-22 11:03:38 +100094}
95
96static bool do_req(struct request_queue *q, struct virtio_blk *vblk,
97 struct request *req)
98{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020099 unsigned long num, out = 0, in = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +1000100 struct virtblk_req *vbr;
101
102 vbr = mempool_alloc(vblk->pool, GFP_ATOMIC);
103 if (!vbr)
104 /* When another request finishes we'll try again. */
105 return false;
106
107 vbr->req = req;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900108
109 if (req->cmd_flags & REQ_FLUSH) {
110 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
Rusty Russelle467cde2007-10-22 11:03:38 +1000111 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200112 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900113 } else {
114 switch (req->cmd_type) {
115 case REQ_TYPE_FS:
116 vbr->out_hdr.type = 0;
117 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
118 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
119 break;
120 case REQ_TYPE_BLOCK_PC:
121 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200122 vbr->out_hdr.sector = 0;
123 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
124 break;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900125 case REQ_TYPE_SPECIAL:
126 vbr->out_hdr.type = VIRTIO_BLK_T_GET_ID;
127 vbr->out_hdr.sector = 0;
128 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
129 break;
130 default:
131 /* We don't put anything else in the queue. */
132 BUG();
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200133 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000134 }
135
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200136 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000137
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200138 /*
139 * If this is a packet command we need a couple of additional headers.
140 * Behind the normal outhdr we put a segment with the scsi command
141 * block, and before the normal inhdr we put the sense data and the
142 * inhdr with additional status information before the normal inhdr.
143 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200144 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC)
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200145 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
146
147 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
148
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200149 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC) {
Liu Yuan6917f832011-04-24 02:49:26 +0800150 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, SCSI_SENSE_BUFFERSIZE);
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200151 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
152 sizeof(vbr->in_hdr));
153 }
154
155 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
156 sizeof(vbr->status));
157
158 if (num) {
159 if (rq_data_dir(vbr->req) == WRITE) {
160 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
161 out += num;
162 } else {
163 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
164 in += num;
165 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000166 }
167
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300168 if (virtqueue_add_buf(vblk->vq, vblk->sg, out, in, vbr) < 0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000169 mempool_free(vbr, vblk->pool);
170 return false;
171 }
172
173 list_add_tail(&vbr->list, &vblk->reqs);
174 return true;
175}
176
177static void do_virtblk_request(struct request_queue *q)
178{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200179 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000180 struct request *req;
181 unsigned int issued = 0;
182
Tejun Heo9934c8c2009-05-08 11:54:16 +0900183 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600184 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000185
186 /* If this request fails, stop queue and wait for something to
187 finish to restart it. */
188 if (!do_req(q, vblk, req)) {
189 blk_stop_queue(q);
190 break;
191 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900192 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000193 issued++;
194 }
195
196 if (issued)
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300197 virtqueue_kick(vblk->vq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000198}
199
john cooper4cb2ea22010-03-25 01:33:33 -0400200/* return id (s/n) string for *disk to *id_str
201 */
202static int virtblk_get_id(struct gendisk *disk, char *id_str)
203{
204 struct virtio_blk *vblk = disk->private_data;
205 struct request *req;
206 struct bio *bio;
Mike Snitzere4c47762010-10-09 12:12:13 +1030207 int err;
john cooper4cb2ea22010-03-25 01:33:33 -0400208
209 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
210 GFP_KERNEL);
211 if (IS_ERR(bio))
212 return PTR_ERR(bio);
213
214 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
215 if (IS_ERR(req)) {
216 bio_put(bio);
217 return PTR_ERR(req);
218 }
219
220 req->cmd_type = REQ_TYPE_SPECIAL;
Mike Snitzere4c47762010-10-09 12:12:13 +1030221 err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
222 blk_put_request(req);
223
224 return err;
john cooper4cb2ea22010-03-25 01:33:33 -0400225}
226
Christoph Hellwigfe5a50a2010-09-15 01:27:23 +0200227static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
228 unsigned int cmd, unsigned long data)
Rusty Russelle467cde2007-10-22 11:03:38 +1000229{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200230 struct gendisk *disk = bdev->bd_disk;
231 struct virtio_blk *vblk = disk->private_data;
232
233 /*
234 * Only allow the generic SCSI ioctls if the host can support it.
235 */
236 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200237 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200238
Rusty Russell3225bea2009-10-22 16:39:28 -0600239 return scsi_cmd_ioctl(disk->queue, disk, mode, cmd,
240 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000241}
242
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100243/* We provide getgeo only to please some old bootloader/partitioning tools */
244static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
245{
Ryan Harper48e40432008-04-16 13:56:37 -0500246 struct virtio_blk *vblk = bd->bd_disk->private_data;
247 struct virtio_blk_geometry vgeo;
248 int err;
249
250 /* see if the host passed in geometry config */
251 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
252 offsetof(struct virtio_blk_config, geometry),
253 &vgeo);
254
255 if (!err) {
256 geo->heads = vgeo.heads;
257 geo->sectors = vgeo.sectors;
258 geo->cylinders = vgeo.cylinders;
259 } else {
260 /* some standard values, similar to sd */
261 geo->heads = 1 << 6;
262 geo->sectors = 1 << 5;
263 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
264 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100265 return 0;
266}
267
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700268static const struct block_device_operations virtblk_fops = {
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200269 .ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100270 .owner = THIS_MODULE,
271 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000272};
273
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100274static int index_to_minor(int index)
275{
276 return index << PART_BITS;
277}
278
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500279static ssize_t virtblk_serial_show(struct device *dev,
280 struct device_attribute *attr, char *buf)
281{
282 struct gendisk *disk = dev_to_disk(dev);
283 int err;
284
285 /* sysfs gives us a PAGE_SIZE buffer */
286 BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
287
288 buf[VIRTIO_BLK_ID_BYTES] = '\0';
289 err = virtblk_get_id(disk, buf);
290 if (!err)
291 return strlen(buf);
292
293 if (err == -EIO) /* Unsupported? Make it empty. */
294 return 0;
295
296 return err;
297}
298DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
299
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100300static void virtblk_config_changed_work(struct work_struct *work)
301{
302 struct virtio_blk *vblk =
303 container_of(work, struct virtio_blk, config_work);
304 struct virtio_device *vdev = vblk->vdev;
305 struct request_queue *q = vblk->disk->queue;
306 char cap_str_2[10], cap_str_10[10];
307 u64 capacity, size;
308
309 /* Host must always specify the capacity. */
310 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
311 &capacity, sizeof(capacity));
312
313 /* If capacity is too big, truncate with warning. */
314 if ((sector_t)capacity != capacity) {
315 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
316 (unsigned long long)capacity);
317 capacity = (sector_t)-1;
318 }
319
320 size = capacity * queue_logical_block_size(q);
321 string_get_size(size, STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
322 string_get_size(size, STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
323
324 dev_notice(&vdev->dev,
325 "new size: %llu %d-byte logical blocks (%s/%s)\n",
326 (unsigned long long)capacity,
327 queue_logical_block_size(q),
328 cap_str_10, cap_str_2);
329
330 set_capacity(vblk->disk, capacity);
331}
332
333static void virtblk_config_changed(struct virtio_device *vdev)
334{
335 struct virtio_blk *vblk = vdev->priv;
336
337 queue_work(virtblk_wq, &vblk->config_work);
338}
339
Mike Frysinger98e94442009-05-18 03:39:09 -0400340static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000341{
342 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600343 struct request_queue *q;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100344 int err;
Rusty Russelle467cde2007-10-22 11:03:38 +1000345 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600346 u32 v, blk_size, sg_elems, opt_io_size;
347 u16 min_io_size;
348 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000349
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100350 if (index_to_minor(index) >= 1 << MINORBITS)
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100351 return -ENOSPC;
352
Rusty Russell0864b792008-12-30 09:26:05 -0600353 /* We need to know how many segments before we allocate. */
354 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
355 offsetof(struct virtio_blk_config, seg_max),
356 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200357
358 /* We need at least one SG element, whatever they say. */
359 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600360 sg_elems = 1;
361
362 /* We need an extra sg elements at head and tail. */
363 sg_elems += 2;
364 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
365 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000366 if (!vblk) {
367 err = -ENOMEM;
368 goto out;
369 }
370
371 INIT_LIST_HEAD(&vblk->reqs);
372 spin_lock_init(&vblk->lock);
373 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600374 vblk->sg_elems = sg_elems;
375 sg_init_table(vblk->sg, vblk->sg_elems);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100376 INIT_WORK(&vblk->config_work, virtblk_config_changed_work);
Rusty Russelle467cde2007-10-22 11:03:38 +1000377
378 /* We expect one virtqueue, for output. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600379 vblk->vq = virtio_find_single_vq(vdev, blk_done, "requests");
Rusty Russelle467cde2007-10-22 11:03:38 +1000380 if (IS_ERR(vblk->vq)) {
381 err = PTR_ERR(vblk->vq);
382 goto out_free_vblk;
383 }
384
385 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
386 if (!vblk->pool) {
387 err = -ENOMEM;
388 goto out_free_vq;
389 }
390
Rusty Russelle467cde2007-10-22 11:03:38 +1000391 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100392 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000393 if (!vblk->disk) {
394 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100395 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000396 }
397
Christoph Hellwig69740c82010-02-24 14:22:25 -0600398 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
399 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000400 err = -ENOMEM;
401 goto out_put_disk;
402 }
403
Christoph Hellwig69740c82010-02-24 14:22:25 -0600404 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900405
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100406 if (index < 26) {
407 sprintf(vblk->disk->disk_name, "vd%c", 'a' + index % 26);
408 } else if (index < (26 + 1) * 26) {
409 sprintf(vblk->disk->disk_name, "vd%c%c",
410 'a' + index / 26 - 1, 'a' + index % 26);
411 } else {
412 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
413 const unsigned int m2 = (index / 26 - 1) % 26;
414 const unsigned int m3 = index % 26;
415 sprintf(vblk->disk->disk_name, "vd%c%c%c",
416 'a' + m1, 'a' + m2, 'a' + m3);
417 }
418
Rusty Russelle467cde2007-10-22 11:03:38 +1000419 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100420 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000421 vblk->disk->private_data = vblk;
422 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500423 vblk->disk->driverfs_dev = &vdev->dev;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100424 index++;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100425
Tejun Heo02c42b72010-09-03 11:56:18 +0200426 /* configure queue flush support */
Tejun Heo4913efe2010-09-03 11:56:16 +0200427 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
428 blk_queue_flush(q, REQ_FLUSH);
Rusty Russelle467cde2007-10-22 11:03:38 +1000429
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200430 /* If disk is read-only in the host, the guest should obey */
431 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
432 set_disk_ro(vblk->disk, 1);
433
Rusty Russella586d4f2008-02-04 23:49:56 -0500434 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500435 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
436 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000437
438 /* If capacity is too big, truncate with warning. */
439 if ((sector_t)cap != cap) {
440 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
441 (unsigned long long)cap);
442 cap = (sector_t)-1;
443 }
444 set_capacity(vblk->disk, cap);
445
Rusty Russell0864b792008-12-30 09:26:05 -0600446 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500447 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600448
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600449 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600450 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600451
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600452 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500453 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600454
Rusty Russella586d4f2008-02-04 23:49:56 -0500455 /* Host can optionally specify maximum segment size and number of
456 * segments. */
457 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
458 offsetof(struct virtio_blk_config, size_max),
459 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000460 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600461 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600462 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600463 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000464
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200465 /* Host can optionally specify the block size of the device */
466 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
467 offsetof(struct virtio_blk_config, blk_size),
468 &blk_size);
469 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600470 blk_queue_logical_block_size(q, blk_size);
471 else
472 blk_size = queue_logical_block_size(q);
473
474 /* Use topology information if available */
475 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
476 offsetof(struct virtio_blk_config, physical_block_exp),
477 &physical_block_exp);
478 if (!err && physical_block_exp)
479 blk_queue_physical_block_size(q,
480 blk_size * (1 << physical_block_exp));
481
482 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
483 offsetof(struct virtio_blk_config, alignment_offset),
484 &alignment_offset);
485 if (!err && alignment_offset)
486 blk_queue_alignment_offset(q, blk_size * alignment_offset);
487
488 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
489 offsetof(struct virtio_blk_config, min_io_size),
490 &min_io_size);
491 if (!err && min_io_size)
492 blk_queue_io_min(q, blk_size * min_io_size);
493
494 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
495 offsetof(struct virtio_blk_config, opt_io_size),
496 &opt_io_size);
497 if (!err && opt_io_size)
498 blk_queue_io_opt(q, blk_size * opt_io_size);
499
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200500
Rusty Russelle467cde2007-10-22 11:03:38 +1000501 add_disk(vblk->disk);
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500502 err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
503 if (err)
504 goto out_del_disk;
505
Rusty Russelle467cde2007-10-22 11:03:38 +1000506 return 0;
507
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500508out_del_disk:
509 del_gendisk(vblk->disk);
510 blk_cleanup_queue(vblk->disk->queue);
Rusty Russelle467cde2007-10-22 11:03:38 +1000511out_put_disk:
512 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000513out_mempool:
514 mempool_destroy(vblk->pool);
515out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600516 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000517out_free_vblk:
518 kfree(vblk);
519out:
520 return err;
521}
522
Mike Frysinger98e94442009-05-18 03:39:09 -0400523static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000524{
525 struct virtio_blk *vblk = vdev->priv;
Rusty Russelle467cde2007-10-22 11:03:38 +1000526
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100527 flush_work(&vblk->config_work);
528
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500529 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000530 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500531
532 /* Stop all the virtqueues. */
533 vdev->config->reset(vdev);
534
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500535 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000536 blk_cleanup_queue(vblk->disk->queue);
537 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000538 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600539 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000540 kfree(vblk);
541}
542
Márton Németh47483e22010-01-10 13:40:02 +0100543static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000544 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
545 { 0 },
546};
547
Rusty Russellc45a6812008-05-02 21:50:50 -0500548static unsigned int features[] = {
Tejun Heo02c42b72010-09-03 11:56:18 +0200549 VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
550 VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
551 VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500552};
553
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600554/*
555 * virtio_blk causes spurious section mismatch warning by
556 * simultaneously referring to a __devinit and a __devexit function.
557 * Use __refdata to avoid this warning.
558 */
559static struct virtio_driver __refdata virtio_blk = {
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100560 .feature_table = features,
561 .feature_table_size = ARRAY_SIZE(features),
562 .driver.name = KBUILD_MODNAME,
563 .driver.owner = THIS_MODULE,
564 .id_table = id_table,
565 .probe = virtblk_probe,
566 .remove = __devexit_p(virtblk_remove),
567 .config_changed = virtblk_config_changed,
Rusty Russelle467cde2007-10-22 11:03:38 +1000568};
569
570static int __init init(void)
571{
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100572 int error;
573
574 virtblk_wq = alloc_workqueue("virtio-blk", 0, 0);
575 if (!virtblk_wq)
576 return -ENOMEM;
577
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100578 major = register_blkdev(0, "virtblk");
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100579 if (major < 0) {
580 error = major;
581 goto out_destroy_workqueue;
582 }
583
584 error = register_virtio_driver(&virtio_blk);
585 if (error)
586 goto out_unregister_blkdev;
587 return 0;
588
589out_unregister_blkdev:
590 unregister_blkdev(major, "virtblk");
591out_destroy_workqueue:
592 destroy_workqueue(virtblk_wq);
593 return error;
Rusty Russelle467cde2007-10-22 11:03:38 +1000594}
595
596static void __exit fini(void)
597{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100598 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000599 unregister_virtio_driver(&virtio_blk);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100600 destroy_workqueue(virtblk_wq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000601}
602module_init(init);
603module_exit(fini);
604
605MODULE_DEVICE_TABLE(virtio, id_table);
606MODULE_DESCRIPTION("Virtio block driver");
607MODULE_LICENSE("GPL");