blob: 0d39f2f4294a3c2587e5c019e39904b3f8440fc2 [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>
Paul Gortmaker0c8d44f2011-07-01 15:56:05 -04006#include <linux/module.h>
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +10307#include <linux/mutex.h>
Rusty Russelle467cde2007-10-22 11:03:38 +10008#include <linux/virtio.h>
9#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +020010#include <linux/scatterlist.h>
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010011#include <linux/string_helpers.h>
Liu Yuan6917f832011-04-24 02:49:26 +080012#include <scsi/scsi_cmnd.h>
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020013#include <linux/idr.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +020014
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010015#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100016
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020017static int major;
18static DEFINE_IDA(vd_index_ida);
19
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010020struct workqueue_struct *virtblk_wq;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010021
Rusty Russelle467cde2007-10-22 11:03:38 +100022struct virtio_blk
23{
24 spinlock_t lock;
25
26 struct virtio_device *vdev;
27 struct virtqueue *vq;
28
29 /* The disk structure for the kernel. */
30 struct gendisk *disk;
31
32 /* Request tracking. */
33 struct list_head reqs;
34
35 mempool_t *pool;
36
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010037 /* Process context for config space updates */
38 struct work_struct config_work;
39
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +103040 /* Lock for config space updates */
41 struct mutex config_lock;
42
43 /* enable config space updates */
44 bool config_enable;
45
Rusty Russell0864b792008-12-30 09:26:05 -060046 /* What host tells us, plus 2 for header & tailer. */
47 unsigned int sg_elems;
48
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020049 /* Ida index - used to track minor number allocations. */
50 int index;
51
Rusty Russelle467cde2007-10-22 11:03:38 +100052 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060053 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100054};
55
56struct virtblk_req
57{
58 struct list_head list;
59 struct request *req;
60 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020061 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050062 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100063};
64
Rusty Russell18445c42008-02-04 23:49:57 -050065static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100066{
67 struct virtio_blk *vblk = vq->vdev->priv;
68 struct virtblk_req *vbr;
69 unsigned int len;
70 unsigned long flags;
71
72 spin_lock_irqsave(&vblk->lock, flags);
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +030073 while ((vbr = virtqueue_get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040074 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020075
Rusty Russellcb38fa22008-05-02 21:50:45 -050076 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100077 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040078 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100079 break;
80 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040081 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100082 break;
83 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040084 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100085 break;
86 }
87
Christoph Hellwig33659eb2010-08-07 18:17:56 +020088 switch (vbr->req->cmd_type) {
89 case REQ_TYPE_BLOCK_PC:
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020090 vbr->req->resid_len = vbr->in_hdr.residual;
91 vbr->req->sense_len = vbr->in_hdr.sense_len;
92 vbr->req->errors = vbr->in_hdr.errors;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020093 break;
94 case REQ_TYPE_SPECIAL:
john cooper4cb2ea22010-03-25 01:33:33 -040095 vbr->req->errors = (error != 0);
Christoph Hellwig33659eb2010-08-07 18:17:56 +020096 break;
Jens Axboe15fa6e82010-06-18 12:10:18 +020097 default:
98 break;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020099 }
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200100
Tejun Heo40cbbb72009-04-23 11:05:19 +0900101 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +1000102 list_del(&vbr->list);
103 mempool_free(vbr, vblk->pool);
104 }
105 /* In case queue is stopped waiting for more buffers. */
106 blk_start_queue(vblk->disk->queue);
107 spin_unlock_irqrestore(&vblk->lock, flags);
Rusty Russelle467cde2007-10-22 11:03:38 +1000108}
109
110static bool do_req(struct request_queue *q, struct virtio_blk *vblk,
111 struct request *req)
112{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200113 unsigned long num, out = 0, in = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +1000114 struct virtblk_req *vbr;
115
116 vbr = mempool_alloc(vblk->pool, GFP_ATOMIC);
117 if (!vbr)
118 /* When another request finishes we'll try again. */
119 return false;
120
121 vbr->req = req;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900122
123 if (req->cmd_flags & REQ_FLUSH) {
124 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
Rusty Russelle467cde2007-10-22 11:03:38 +1000125 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200126 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900127 } else {
128 switch (req->cmd_type) {
129 case REQ_TYPE_FS:
130 vbr->out_hdr.type = 0;
131 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
132 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
133 break;
134 case REQ_TYPE_BLOCK_PC:
135 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200136 vbr->out_hdr.sector = 0;
137 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
138 break;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900139 case REQ_TYPE_SPECIAL:
140 vbr->out_hdr.type = VIRTIO_BLK_T_GET_ID;
141 vbr->out_hdr.sector = 0;
142 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
143 break;
144 default:
145 /* We don't put anything else in the queue. */
146 BUG();
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200147 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000148 }
149
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200150 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000151
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200152 /*
153 * If this is a packet command we need a couple of additional headers.
154 * Behind the normal outhdr we put a segment with the scsi command
155 * block, and before the normal inhdr we put the sense data and the
156 * inhdr with additional status information before the normal inhdr.
157 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200158 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC)
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200159 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
160
161 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
162
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200163 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC) {
Liu Yuan6917f832011-04-24 02:49:26 +0800164 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, SCSI_SENSE_BUFFERSIZE);
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200165 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
166 sizeof(vbr->in_hdr));
167 }
168
169 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
170 sizeof(vbr->status));
171
172 if (num) {
173 if (rq_data_dir(vbr->req) == WRITE) {
174 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
175 out += num;
176 } else {
177 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
178 in += num;
179 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000180 }
181
Rusty Russellf96fde42012-01-12 15:44:42 +1030182 if (virtqueue_add_buf(vblk->vq, vblk->sg, out, in, vbr, GFP_ATOMIC)<0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000183 mempool_free(vbr, vblk->pool);
184 return false;
185 }
186
187 list_add_tail(&vbr->list, &vblk->reqs);
188 return true;
189}
190
191static void do_virtblk_request(struct request_queue *q)
192{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200193 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000194 struct request *req;
195 unsigned int issued = 0;
196
Tejun Heo9934c8c2009-05-08 11:54:16 +0900197 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600198 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000199
200 /* If this request fails, stop queue and wait for something to
201 finish to restart it. */
202 if (!do_req(q, vblk, req)) {
203 blk_stop_queue(q);
204 break;
205 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900206 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000207 issued++;
208 }
209
210 if (issued)
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300211 virtqueue_kick(vblk->vq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000212}
213
john cooper4cb2ea22010-03-25 01:33:33 -0400214/* return id (s/n) string for *disk to *id_str
215 */
216static int virtblk_get_id(struct gendisk *disk, char *id_str)
217{
218 struct virtio_blk *vblk = disk->private_data;
219 struct request *req;
220 struct bio *bio;
Mike Snitzere4c47762010-10-09 12:12:13 +1030221 int err;
john cooper4cb2ea22010-03-25 01:33:33 -0400222
223 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
224 GFP_KERNEL);
225 if (IS_ERR(bio))
226 return PTR_ERR(bio);
227
228 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
229 if (IS_ERR(req)) {
230 bio_put(bio);
231 return PTR_ERR(req);
232 }
233
234 req->cmd_type = REQ_TYPE_SPECIAL;
Mike Snitzere4c47762010-10-09 12:12:13 +1030235 err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
236 blk_put_request(req);
237
238 return err;
john cooper4cb2ea22010-03-25 01:33:33 -0400239}
240
Christoph Hellwigfe5a50a2010-09-15 01:27:23 +0200241static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
242 unsigned int cmd, unsigned long data)
Rusty Russelle467cde2007-10-22 11:03:38 +1000243{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200244 struct gendisk *disk = bdev->bd_disk;
245 struct virtio_blk *vblk = disk->private_data;
246
247 /*
248 * Only allow the generic SCSI ioctls if the host can support it.
249 */
250 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200251 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200252
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100253 return scsi_cmd_blk_ioctl(bdev, mode, cmd,
254 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000255}
256
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100257/* We provide getgeo only to please some old bootloader/partitioning tools */
258static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
259{
Ryan Harper48e40432008-04-16 13:56:37 -0500260 struct virtio_blk *vblk = bd->bd_disk->private_data;
261 struct virtio_blk_geometry vgeo;
262 int err;
263
264 /* see if the host passed in geometry config */
265 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
266 offsetof(struct virtio_blk_config, geometry),
267 &vgeo);
268
269 if (!err) {
270 geo->heads = vgeo.heads;
271 geo->sectors = vgeo.sectors;
272 geo->cylinders = vgeo.cylinders;
273 } else {
274 /* some standard values, similar to sd */
275 geo->heads = 1 << 6;
276 geo->sectors = 1 << 5;
277 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
278 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100279 return 0;
280}
281
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700282static const struct block_device_operations virtblk_fops = {
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200283 .ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100284 .owner = THIS_MODULE,
285 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000286};
287
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100288static int index_to_minor(int index)
289{
290 return index << PART_BITS;
291}
292
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200293static int minor_to_index(int minor)
294{
295 return minor >> PART_BITS;
296}
297
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500298static ssize_t virtblk_serial_show(struct device *dev,
299 struct device_attribute *attr, char *buf)
300{
301 struct gendisk *disk = dev_to_disk(dev);
302 int err;
303
304 /* sysfs gives us a PAGE_SIZE buffer */
305 BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
306
307 buf[VIRTIO_BLK_ID_BYTES] = '\0';
308 err = virtblk_get_id(disk, buf);
309 if (!err)
310 return strlen(buf);
311
312 if (err == -EIO) /* Unsupported? Make it empty. */
313 return 0;
314
315 return err;
316}
317DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
318
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100319static void virtblk_config_changed_work(struct work_struct *work)
320{
321 struct virtio_blk *vblk =
322 container_of(work, struct virtio_blk, config_work);
323 struct virtio_device *vdev = vblk->vdev;
324 struct request_queue *q = vblk->disk->queue;
325 char cap_str_2[10], cap_str_10[10];
326 u64 capacity, size;
327
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030328 mutex_lock(&vblk->config_lock);
329 if (!vblk->config_enable)
330 goto done;
331
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100332 /* Host must always specify the capacity. */
333 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
334 &capacity, sizeof(capacity));
335
336 /* If capacity is too big, truncate with warning. */
337 if ((sector_t)capacity != capacity) {
338 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
339 (unsigned long long)capacity);
340 capacity = (sector_t)-1;
341 }
342
343 size = capacity * queue_logical_block_size(q);
344 string_get_size(size, STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
345 string_get_size(size, STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
346
347 dev_notice(&vdev->dev,
348 "new size: %llu %d-byte logical blocks (%s/%s)\n",
349 (unsigned long long)capacity,
350 queue_logical_block_size(q),
351 cap_str_10, cap_str_2);
352
353 set_capacity(vblk->disk, capacity);
Vivek Goyale9986f32012-03-29 10:09:44 +0200354 revalidate_disk(vblk->disk);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030355done:
356 mutex_unlock(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100357}
358
359static void virtblk_config_changed(struct virtio_device *vdev)
360{
361 struct virtio_blk *vblk = vdev->priv;
362
363 queue_work(virtblk_wq, &vblk->config_work);
364}
365
Amit Shah6abd6e52011-12-22 16:58:29 +0530366static int init_vq(struct virtio_blk *vblk)
367{
368 int err = 0;
369
370 /* We expect one virtqueue, for output. */
371 vblk->vq = virtio_find_single_vq(vblk->vdev, blk_done, "requests");
372 if (IS_ERR(vblk->vq))
373 err = PTR_ERR(vblk->vq);
374
375 return err;
376}
377
Ren Mingxinc0aa3e02012-04-10 15:28:05 +0800378/*
379 * Legacy naming scheme used for virtio devices. We are stuck with it for
380 * virtio blk but don't ever use it for any new driver.
381 */
382static int virtblk_name_format(char *prefix, int index, char *buf, int buflen)
383{
384 const int base = 'z' - 'a' + 1;
385 char *begin = buf + strlen(prefix);
386 char *end = buf + buflen;
387 char *p;
388 int unit;
389
390 p = end - 1;
391 *p = '\0';
392 unit = base;
393 do {
394 if (p == begin)
395 return -EINVAL;
396 *--p = 'a' + (index % unit);
397 index = (index / unit) - 1;
398 } while (index >= 0);
399
400 memmove(begin, p, end - p);
401 memcpy(buf, prefix, strlen(prefix));
402
403 return 0;
404}
405
Mike Frysinger98e94442009-05-18 03:39:09 -0400406static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000407{
408 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600409 struct request_queue *q;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200410 int err, index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000411 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600412 u32 v, blk_size, sg_elems, opt_io_size;
413 u16 min_io_size;
414 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000415
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200416 err = ida_simple_get(&vd_index_ida, 0, minor_to_index(1 << MINORBITS),
417 GFP_KERNEL);
418 if (err < 0)
419 goto out;
420 index = err;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100421
Rusty Russell0864b792008-12-30 09:26:05 -0600422 /* We need to know how many segments before we allocate. */
423 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
424 offsetof(struct virtio_blk_config, seg_max),
425 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200426
427 /* We need at least one SG element, whatever they say. */
428 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600429 sg_elems = 1;
430
431 /* We need an extra sg elements at head and tail. */
432 sg_elems += 2;
433 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
434 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000435 if (!vblk) {
436 err = -ENOMEM;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200437 goto out_free_index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000438 }
439
440 INIT_LIST_HEAD(&vblk->reqs);
441 spin_lock_init(&vblk->lock);
442 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600443 vblk->sg_elems = sg_elems;
444 sg_init_table(vblk->sg, vblk->sg_elems);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030445 mutex_init(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100446 INIT_WORK(&vblk->config_work, virtblk_config_changed_work);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030447 vblk->config_enable = true;
Rusty Russelle467cde2007-10-22 11:03:38 +1000448
Amit Shah6abd6e52011-12-22 16:58:29 +0530449 err = init_vq(vblk);
450 if (err)
Rusty Russelle467cde2007-10-22 11:03:38 +1000451 goto out_free_vblk;
Rusty Russelle467cde2007-10-22 11:03:38 +1000452
453 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
454 if (!vblk->pool) {
455 err = -ENOMEM;
456 goto out_free_vq;
457 }
458
Rusty Russelle467cde2007-10-22 11:03:38 +1000459 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100460 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000461 if (!vblk->disk) {
462 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100463 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000464 }
465
Christoph Hellwig69740c82010-02-24 14:22:25 -0600466 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
467 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000468 err = -ENOMEM;
469 goto out_put_disk;
470 }
471
Christoph Hellwig69740c82010-02-24 14:22:25 -0600472 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900473
Ren Mingxinc0aa3e02012-04-10 15:28:05 +0800474 virtblk_name_format("vd", index, vblk->disk->disk_name, DISK_NAME_LEN);
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100475
Rusty Russelle467cde2007-10-22 11:03:38 +1000476 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100477 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000478 vblk->disk->private_data = vblk;
479 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500480 vblk->disk->driverfs_dev = &vdev->dev;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200481 vblk->index = index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100482
Tejun Heo02c42b72010-09-03 11:56:18 +0200483 /* configure queue flush support */
Tejun Heo4913efe2010-09-03 11:56:16 +0200484 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
485 blk_queue_flush(q, REQ_FLUSH);
Rusty Russelle467cde2007-10-22 11:03:38 +1000486
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200487 /* If disk is read-only in the host, the guest should obey */
488 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
489 set_disk_ro(vblk->disk, 1);
490
Rusty Russella586d4f2008-02-04 23:49:56 -0500491 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500492 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
493 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000494
495 /* If capacity is too big, truncate with warning. */
496 if ((sector_t)cap != cap) {
497 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
498 (unsigned long long)cap);
499 cap = (sector_t)-1;
500 }
501 set_capacity(vblk->disk, cap);
502
Rusty Russell0864b792008-12-30 09:26:05 -0600503 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500504 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600505
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600506 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600507 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600508
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600509 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500510 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600511
Rusty Russella586d4f2008-02-04 23:49:56 -0500512 /* Host can optionally specify maximum segment size and number of
513 * segments. */
514 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
515 offsetof(struct virtio_blk_config, size_max),
516 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000517 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600518 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600519 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600520 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000521
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200522 /* Host can optionally specify the block size of the device */
523 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
524 offsetof(struct virtio_blk_config, blk_size),
525 &blk_size);
526 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600527 blk_queue_logical_block_size(q, blk_size);
528 else
529 blk_size = queue_logical_block_size(q);
530
531 /* Use topology information if available */
532 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
533 offsetof(struct virtio_blk_config, physical_block_exp),
534 &physical_block_exp);
535 if (!err && physical_block_exp)
536 blk_queue_physical_block_size(q,
537 blk_size * (1 << physical_block_exp));
538
539 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
540 offsetof(struct virtio_blk_config, alignment_offset),
541 &alignment_offset);
542 if (!err && alignment_offset)
543 blk_queue_alignment_offset(q, blk_size * alignment_offset);
544
545 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
546 offsetof(struct virtio_blk_config, min_io_size),
547 &min_io_size);
548 if (!err && min_io_size)
549 blk_queue_io_min(q, blk_size * min_io_size);
550
551 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
552 offsetof(struct virtio_blk_config, opt_io_size),
553 &opt_io_size);
554 if (!err && opt_io_size)
555 blk_queue_io_opt(q, blk_size * opt_io_size);
556
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200557
Rusty Russelle467cde2007-10-22 11:03:38 +1000558 add_disk(vblk->disk);
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500559 err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
560 if (err)
561 goto out_del_disk;
562
Rusty Russelle467cde2007-10-22 11:03:38 +1000563 return 0;
564
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500565out_del_disk:
566 del_gendisk(vblk->disk);
567 blk_cleanup_queue(vblk->disk->queue);
Rusty Russelle467cde2007-10-22 11:03:38 +1000568out_put_disk:
569 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000570out_mempool:
571 mempool_destroy(vblk->pool);
572out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600573 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000574out_free_vblk:
575 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200576out_free_index:
577 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000578out:
579 return err;
580}
581
Mike Frysinger98e94442009-05-18 03:39:09 -0400582static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000583{
584 struct virtio_blk *vblk = vdev->priv;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200585 int index = vblk->index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000586
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030587 /* Prevent config work handler from accessing the device. */
588 mutex_lock(&vblk->config_lock);
589 vblk->config_enable = false;
590 mutex_unlock(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100591
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500592 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000593 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500594
595 /* Stop all the virtqueues. */
596 vdev->config->reset(vdev);
597
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030598 flush_work(&vblk->config_work);
599
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500600 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000601 blk_cleanup_queue(vblk->disk->queue);
602 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000603 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600604 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000605 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200606 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000607}
608
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530609#ifdef CONFIG_PM
610static int virtblk_freeze(struct virtio_device *vdev)
611{
612 struct virtio_blk *vblk = vdev->priv;
613
614 /* Ensure we don't receive any more interrupts */
615 vdev->config->reset(vdev);
616
617 /* Prevent config work handler from accessing the device. */
618 mutex_lock(&vblk->config_lock);
619 vblk->config_enable = false;
620 mutex_unlock(&vblk->config_lock);
621
622 flush_work(&vblk->config_work);
623
624 spin_lock_irq(vblk->disk->queue->queue_lock);
625 blk_stop_queue(vblk->disk->queue);
626 spin_unlock_irq(vblk->disk->queue->queue_lock);
627 blk_sync_queue(vblk->disk->queue);
628
629 vdev->config->del_vqs(vdev);
630 return 0;
631}
632
633static int virtblk_restore(struct virtio_device *vdev)
634{
635 struct virtio_blk *vblk = vdev->priv;
636 int ret;
637
638 vblk->config_enable = true;
639 ret = init_vq(vdev->priv);
640 if (!ret) {
641 spin_lock_irq(vblk->disk->queue->queue_lock);
642 blk_start_queue(vblk->disk->queue);
643 spin_unlock_irq(vblk->disk->queue->queue_lock);
644 }
645 return ret;
646}
647#endif
648
Márton Németh47483e22010-01-10 13:40:02 +0100649static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000650 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
651 { 0 },
652};
653
Rusty Russellc45a6812008-05-02 21:50:50 -0500654static unsigned int features[] = {
Tejun Heo02c42b72010-09-03 11:56:18 +0200655 VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
656 VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
657 VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500658};
659
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600660/*
661 * virtio_blk causes spurious section mismatch warning by
662 * simultaneously referring to a __devinit and a __devexit function.
663 * Use __refdata to avoid this warning.
664 */
665static struct virtio_driver __refdata virtio_blk = {
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100666 .feature_table = features,
667 .feature_table_size = ARRAY_SIZE(features),
668 .driver.name = KBUILD_MODNAME,
669 .driver.owner = THIS_MODULE,
670 .id_table = id_table,
671 .probe = virtblk_probe,
672 .remove = __devexit_p(virtblk_remove),
673 .config_changed = virtblk_config_changed,
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530674#ifdef CONFIG_PM
675 .freeze = virtblk_freeze,
676 .restore = virtblk_restore,
677#endif
Rusty Russelle467cde2007-10-22 11:03:38 +1000678};
679
680static int __init init(void)
681{
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100682 int error;
683
684 virtblk_wq = alloc_workqueue("virtio-blk", 0, 0);
685 if (!virtblk_wq)
686 return -ENOMEM;
687
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100688 major = register_blkdev(0, "virtblk");
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100689 if (major < 0) {
690 error = major;
691 goto out_destroy_workqueue;
692 }
693
694 error = register_virtio_driver(&virtio_blk);
695 if (error)
696 goto out_unregister_blkdev;
697 return 0;
698
699out_unregister_blkdev:
700 unregister_blkdev(major, "virtblk");
701out_destroy_workqueue:
702 destroy_workqueue(virtblk_wq);
703 return error;
Rusty Russelle467cde2007-10-22 11:03:38 +1000704}
705
706static void __exit fini(void)
707{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100708 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000709 unregister_virtio_driver(&virtio_blk);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100710 destroy_workqueue(virtblk_wq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000711}
712module_init(init);
713module_exit(fini);
714
715MODULE_DEVICE_TABLE(virtio, id_table);
716MODULE_DESCRIPTION("Virtio block driver");
717MODULE_LICENSE("GPL");