blob: 774c31dce7c0f888017275883bac6eed38bf02c7 [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{
Rusty Russelle467cde2007-10-22 11:03:38 +100024 struct virtio_device *vdev;
25 struct virtqueue *vq;
26
27 /* The disk structure for the kernel. */
28 struct gendisk *disk;
29
Rusty Russelle467cde2007-10-22 11:03:38 +100030 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
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +103035 /* Lock for config space updates */
36 struct mutex config_lock;
37
38 /* enable config space updates */
39 bool config_enable;
40
Rusty Russell0864b792008-12-30 09:26:05 -060041 /* What host tells us, plus 2 for header & tailer. */
42 unsigned int sg_elems;
43
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020044 /* Ida index - used to track minor number allocations. */
45 int index;
46
Rusty Russelle467cde2007-10-22 11:03:38 +100047 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060048 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100049};
50
51struct virtblk_req
52{
Rusty Russelle467cde2007-10-22 11:03:38 +100053 struct request *req;
54 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020055 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050056 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100057};
58
Rusty Russell18445c42008-02-04 23:49:57 -050059static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100060{
61 struct virtio_blk *vblk = vq->vdev->priv;
62 struct virtblk_req *vbr;
63 unsigned int len;
64 unsigned long flags;
65
Asias He2c95a322012-05-25 16:03:27 +080066 spin_lock_irqsave(vblk->disk->queue->queue_lock, flags);
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +030067 while ((vbr = virtqueue_get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040068 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020069
Rusty Russellcb38fa22008-05-02 21:50:45 -050070 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100071 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040072 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100073 break;
74 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040075 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100076 break;
77 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040078 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100079 break;
80 }
81
Christoph Hellwig33659eb2010-08-07 18:17:56 +020082 switch (vbr->req->cmd_type) {
83 case REQ_TYPE_BLOCK_PC:
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020084 vbr->req->resid_len = vbr->in_hdr.residual;
85 vbr->req->sense_len = vbr->in_hdr.sense_len;
86 vbr->req->errors = vbr->in_hdr.errors;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020087 break;
88 case REQ_TYPE_SPECIAL:
john cooper4cb2ea22010-03-25 01:33:33 -040089 vbr->req->errors = (error != 0);
Christoph Hellwig33659eb2010-08-07 18:17:56 +020090 break;
Jens Axboe15fa6e82010-06-18 12:10:18 +020091 default:
92 break;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020093 }
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020094
Tejun Heo40cbbb72009-04-23 11:05:19 +090095 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +100096 mempool_free(vbr, vblk->pool);
97 }
98 /* In case queue is stopped waiting for more buffers. */
99 blk_start_queue(vblk->disk->queue);
Asias He2c95a322012-05-25 16:03:27 +0800100 spin_unlock_irqrestore(vblk->disk->queue->queue_lock, flags);
Rusty Russelle467cde2007-10-22 11:03:38 +1000101}
102
103static bool do_req(struct request_queue *q, struct virtio_blk *vblk,
104 struct request *req)
105{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200106 unsigned long num, out = 0, in = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +1000107 struct virtblk_req *vbr;
108
109 vbr = mempool_alloc(vblk->pool, GFP_ATOMIC);
110 if (!vbr)
111 /* When another request finishes we'll try again. */
112 return false;
113
114 vbr->req = req;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900115
116 if (req->cmd_flags & REQ_FLUSH) {
117 vbr->out_hdr.type = VIRTIO_BLK_T_FLUSH;
Rusty Russelle467cde2007-10-22 11:03:38 +1000118 vbr->out_hdr.sector = 0;
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200119 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900120 } else {
121 switch (req->cmd_type) {
122 case REQ_TYPE_FS:
123 vbr->out_hdr.type = 0;
124 vbr->out_hdr.sector = blk_rq_pos(vbr->req);
125 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
126 break;
127 case REQ_TYPE_BLOCK_PC:
128 vbr->out_hdr.type = VIRTIO_BLK_T_SCSI_CMD;
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200129 vbr->out_hdr.sector = 0;
130 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
131 break;
FUJITA Tomonoridd40e452010-07-03 17:45:38 +0900132 case REQ_TYPE_SPECIAL:
133 vbr->out_hdr.type = VIRTIO_BLK_T_GET_ID;
134 vbr->out_hdr.sector = 0;
135 vbr->out_hdr.ioprio = req_get_ioprio(vbr->req);
136 break;
137 default:
138 /* We don't put anything else in the queue. */
139 BUG();
Christoph Hellwigf1b0ef062009-09-17 19:57:42 +0200140 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000141 }
142
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200143 sg_set_buf(&vblk->sg[out++], &vbr->out_hdr, sizeof(vbr->out_hdr));
Rusty Russelle467cde2007-10-22 11:03:38 +1000144
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200145 /*
146 * If this is a packet command we need a couple of additional headers.
147 * Behind the normal outhdr we put a segment with the scsi command
148 * block, and before the normal inhdr we put the sense data and the
149 * inhdr with additional status information before the normal inhdr.
150 */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200151 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC)
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200152 sg_set_buf(&vblk->sg[out++], vbr->req->cmd, vbr->req->cmd_len);
153
154 num = blk_rq_map_sg(q, vbr->req, vblk->sg + out);
155
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200156 if (vbr->req->cmd_type == REQ_TYPE_BLOCK_PC) {
Liu Yuan6917f832011-04-24 02:49:26 +0800157 sg_set_buf(&vblk->sg[num + out + in++], vbr->req->sense, SCSI_SENSE_BUFFERSIZE);
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200158 sg_set_buf(&vblk->sg[num + out + in++], &vbr->in_hdr,
159 sizeof(vbr->in_hdr));
160 }
161
162 sg_set_buf(&vblk->sg[num + out + in++], &vbr->status,
163 sizeof(vbr->status));
164
165 if (num) {
166 if (rq_data_dir(vbr->req) == WRITE) {
167 vbr->out_hdr.type |= VIRTIO_BLK_T_OUT;
168 out += num;
169 } else {
170 vbr->out_hdr.type |= VIRTIO_BLK_T_IN;
171 in += num;
172 }
Rusty Russelle467cde2007-10-22 11:03:38 +1000173 }
174
Rusty Russellf96fde42012-01-12 15:44:42 +1030175 if (virtqueue_add_buf(vblk->vq, vblk->sg, out, in, vbr, GFP_ATOMIC)<0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000176 mempool_free(vbr, vblk->pool);
177 return false;
178 }
179
Rusty Russelle467cde2007-10-22 11:03:38 +1000180 return true;
181}
182
183static void do_virtblk_request(struct request_queue *q)
184{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200185 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000186 struct request *req;
187 unsigned int issued = 0;
188
Tejun Heo9934c8c2009-05-08 11:54:16 +0900189 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600190 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000191
192 /* If this request fails, stop queue and wait for something to
193 finish to restart it. */
194 if (!do_req(q, vblk, req)) {
195 blk_stop_queue(q);
196 break;
197 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900198 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000199 issued++;
200 }
201
202 if (issued)
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300203 virtqueue_kick(vblk->vq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000204}
205
john cooper4cb2ea22010-03-25 01:33:33 -0400206/* return id (s/n) string for *disk to *id_str
207 */
208static int virtblk_get_id(struct gendisk *disk, char *id_str)
209{
210 struct virtio_blk *vblk = disk->private_data;
211 struct request *req;
212 struct bio *bio;
Mike Snitzere4c47762010-10-09 12:12:13 +1030213 int err;
john cooper4cb2ea22010-03-25 01:33:33 -0400214
215 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
216 GFP_KERNEL);
217 if (IS_ERR(bio))
218 return PTR_ERR(bio);
219
220 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
221 if (IS_ERR(req)) {
222 bio_put(bio);
223 return PTR_ERR(req);
224 }
225
226 req->cmd_type = REQ_TYPE_SPECIAL;
Mike Snitzere4c47762010-10-09 12:12:13 +1030227 err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
228 blk_put_request(req);
229
230 return err;
john cooper4cb2ea22010-03-25 01:33:33 -0400231}
232
Christoph Hellwigfe5a50a2010-09-15 01:27:23 +0200233static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
234 unsigned int cmd, unsigned long data)
Rusty Russelle467cde2007-10-22 11:03:38 +1000235{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200236 struct gendisk *disk = bdev->bd_disk;
237 struct virtio_blk *vblk = disk->private_data;
238
239 /*
240 * Only allow the generic SCSI ioctls if the host can support it.
241 */
242 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200243 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200244
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100245 return scsi_cmd_blk_ioctl(bdev, mode, cmd,
246 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000247}
248
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100249/* We provide getgeo only to please some old bootloader/partitioning tools */
250static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
251{
Ryan Harper48e40432008-04-16 13:56:37 -0500252 struct virtio_blk *vblk = bd->bd_disk->private_data;
253 struct virtio_blk_geometry vgeo;
254 int err;
255
256 /* see if the host passed in geometry config */
257 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
258 offsetof(struct virtio_blk_config, geometry),
259 &vgeo);
260
261 if (!err) {
262 geo->heads = vgeo.heads;
263 geo->sectors = vgeo.sectors;
264 geo->cylinders = vgeo.cylinders;
265 } else {
266 /* some standard values, similar to sd */
267 geo->heads = 1 << 6;
268 geo->sectors = 1 << 5;
269 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
270 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100271 return 0;
272}
273
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700274static const struct block_device_operations virtblk_fops = {
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200275 .ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100276 .owner = THIS_MODULE,
277 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000278};
279
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100280static int index_to_minor(int index)
281{
282 return index << PART_BITS;
283}
284
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200285static int minor_to_index(int minor)
286{
287 return minor >> PART_BITS;
288}
289
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500290static ssize_t virtblk_serial_show(struct device *dev,
291 struct device_attribute *attr, char *buf)
292{
293 struct gendisk *disk = dev_to_disk(dev);
294 int err;
295
296 /* sysfs gives us a PAGE_SIZE buffer */
297 BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
298
299 buf[VIRTIO_BLK_ID_BYTES] = '\0';
300 err = virtblk_get_id(disk, buf);
301 if (!err)
302 return strlen(buf);
303
304 if (err == -EIO) /* Unsupported? Make it empty. */
305 return 0;
306
307 return err;
308}
309DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
310
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100311static void virtblk_config_changed_work(struct work_struct *work)
312{
313 struct virtio_blk *vblk =
314 container_of(work, struct virtio_blk, config_work);
315 struct virtio_device *vdev = vblk->vdev;
316 struct request_queue *q = vblk->disk->queue;
317 char cap_str_2[10], cap_str_10[10];
318 u64 capacity, size;
319
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030320 mutex_lock(&vblk->config_lock);
321 if (!vblk->config_enable)
322 goto done;
323
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100324 /* Host must always specify the capacity. */
325 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
326 &capacity, sizeof(capacity));
327
328 /* If capacity is too big, truncate with warning. */
329 if ((sector_t)capacity != capacity) {
330 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
331 (unsigned long long)capacity);
332 capacity = (sector_t)-1;
333 }
334
335 size = capacity * queue_logical_block_size(q);
336 string_get_size(size, STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
337 string_get_size(size, STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
338
339 dev_notice(&vdev->dev,
340 "new size: %llu %d-byte logical blocks (%s/%s)\n",
341 (unsigned long long)capacity,
342 queue_logical_block_size(q),
343 cap_str_10, cap_str_2);
344
345 set_capacity(vblk->disk, capacity);
Vivek Goyale9986f32012-03-29 10:09:44 +0200346 revalidate_disk(vblk->disk);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030347done:
348 mutex_unlock(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100349}
350
351static void virtblk_config_changed(struct virtio_device *vdev)
352{
353 struct virtio_blk *vblk = vdev->priv;
354
355 queue_work(virtblk_wq, &vblk->config_work);
356}
357
Amit Shah6abd6e52011-12-22 16:58:29 +0530358static int init_vq(struct virtio_blk *vblk)
359{
360 int err = 0;
361
362 /* We expect one virtqueue, for output. */
363 vblk->vq = virtio_find_single_vq(vblk->vdev, blk_done, "requests");
364 if (IS_ERR(vblk->vq))
365 err = PTR_ERR(vblk->vq);
366
367 return err;
368}
369
Ren Mingxinc0aa3e02012-04-10 15:28:05 +0800370/*
371 * Legacy naming scheme used for virtio devices. We are stuck with it for
372 * virtio blk but don't ever use it for any new driver.
373 */
374static int virtblk_name_format(char *prefix, int index, char *buf, int buflen)
375{
376 const int base = 'z' - 'a' + 1;
377 char *begin = buf + strlen(prefix);
378 char *end = buf + buflen;
379 char *p;
380 int unit;
381
382 p = end - 1;
383 *p = '\0';
384 unit = base;
385 do {
386 if (p == begin)
387 return -EINVAL;
388 *--p = 'a' + (index % unit);
389 index = (index / unit) - 1;
390 } while (index >= 0);
391
392 memmove(begin, p, end - p);
393 memcpy(buf, prefix, strlen(prefix));
394
395 return 0;
396}
397
Mike Frysinger98e94442009-05-18 03:39:09 -0400398static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000399{
400 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600401 struct request_queue *q;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200402 int err, index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000403 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600404 u32 v, blk_size, sg_elems, opt_io_size;
405 u16 min_io_size;
406 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000407
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200408 err = ida_simple_get(&vd_index_ida, 0, minor_to_index(1 << MINORBITS),
409 GFP_KERNEL);
410 if (err < 0)
411 goto out;
412 index = err;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100413
Rusty Russell0864b792008-12-30 09:26:05 -0600414 /* We need to know how many segments before we allocate. */
415 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
416 offsetof(struct virtio_blk_config, seg_max),
417 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200418
419 /* We need at least one SG element, whatever they say. */
420 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600421 sg_elems = 1;
422
423 /* We need an extra sg elements at head and tail. */
424 sg_elems += 2;
425 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
426 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000427 if (!vblk) {
428 err = -ENOMEM;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200429 goto out_free_index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000430 }
431
Rusty Russelle467cde2007-10-22 11:03:38 +1000432 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600433 vblk->sg_elems = sg_elems;
434 sg_init_table(vblk->sg, vblk->sg_elems);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030435 mutex_init(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100436 INIT_WORK(&vblk->config_work, virtblk_config_changed_work);
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030437 vblk->config_enable = true;
Rusty Russelle467cde2007-10-22 11:03:38 +1000438
Amit Shah6abd6e52011-12-22 16:58:29 +0530439 err = init_vq(vblk);
440 if (err)
Rusty Russelle467cde2007-10-22 11:03:38 +1000441 goto out_free_vblk;
Rusty Russelle467cde2007-10-22 11:03:38 +1000442
443 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
444 if (!vblk->pool) {
445 err = -ENOMEM;
446 goto out_free_vq;
447 }
448
Rusty Russelle467cde2007-10-22 11:03:38 +1000449 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100450 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000451 if (!vblk->disk) {
452 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100453 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000454 }
455
Asias He2c95a322012-05-25 16:03:27 +0800456 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, NULL);
Christoph Hellwig69740c82010-02-24 14:22:25 -0600457 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000458 err = -ENOMEM;
459 goto out_put_disk;
460 }
461
Christoph Hellwig69740c82010-02-24 14:22:25 -0600462 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900463
Ren Mingxinc0aa3e02012-04-10 15:28:05 +0800464 virtblk_name_format("vd", index, vblk->disk->disk_name, DISK_NAME_LEN);
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100465
Rusty Russelle467cde2007-10-22 11:03:38 +1000466 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100467 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000468 vblk->disk->private_data = vblk;
469 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500470 vblk->disk->driverfs_dev = &vdev->dev;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200471 vblk->index = index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100472
Tejun Heo02c42b72010-09-03 11:56:18 +0200473 /* configure queue flush support */
Tejun Heo4913efe2010-09-03 11:56:16 +0200474 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
475 blk_queue_flush(q, REQ_FLUSH);
Rusty Russelle467cde2007-10-22 11:03:38 +1000476
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200477 /* If disk is read-only in the host, the guest should obey */
478 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
479 set_disk_ro(vblk->disk, 1);
480
Rusty Russella586d4f2008-02-04 23:49:56 -0500481 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500482 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
483 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000484
485 /* If capacity is too big, truncate with warning. */
486 if ((sector_t)cap != cap) {
487 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
488 (unsigned long long)cap);
489 cap = (sector_t)-1;
490 }
491 set_capacity(vblk->disk, cap);
492
Rusty Russell0864b792008-12-30 09:26:05 -0600493 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500494 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600495
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600496 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600497 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600498
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600499 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500500 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600501
Rusty Russella586d4f2008-02-04 23:49:56 -0500502 /* Host can optionally specify maximum segment size and number of
503 * segments. */
504 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
505 offsetof(struct virtio_blk_config, size_max),
506 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000507 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600508 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600509 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600510 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000511
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200512 /* Host can optionally specify the block size of the device */
513 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
514 offsetof(struct virtio_blk_config, blk_size),
515 &blk_size);
516 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600517 blk_queue_logical_block_size(q, blk_size);
518 else
519 blk_size = queue_logical_block_size(q);
520
521 /* Use topology information if available */
522 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
523 offsetof(struct virtio_blk_config, physical_block_exp),
524 &physical_block_exp);
525 if (!err && physical_block_exp)
526 blk_queue_physical_block_size(q,
527 blk_size * (1 << physical_block_exp));
528
529 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
530 offsetof(struct virtio_blk_config, alignment_offset),
531 &alignment_offset);
532 if (!err && alignment_offset)
533 blk_queue_alignment_offset(q, blk_size * alignment_offset);
534
535 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
536 offsetof(struct virtio_blk_config, min_io_size),
537 &min_io_size);
538 if (!err && min_io_size)
539 blk_queue_io_min(q, blk_size * min_io_size);
540
541 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
542 offsetof(struct virtio_blk_config, opt_io_size),
543 &opt_io_size);
544 if (!err && opt_io_size)
545 blk_queue_io_opt(q, blk_size * opt_io_size);
546
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200547
Rusty Russelle467cde2007-10-22 11:03:38 +1000548 add_disk(vblk->disk);
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500549 err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
550 if (err)
551 goto out_del_disk;
552
Rusty Russelle467cde2007-10-22 11:03:38 +1000553 return 0;
554
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500555out_del_disk:
556 del_gendisk(vblk->disk);
557 blk_cleanup_queue(vblk->disk->queue);
Rusty Russelle467cde2007-10-22 11:03:38 +1000558out_put_disk:
559 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000560out_mempool:
561 mempool_destroy(vblk->pool);
562out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600563 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000564out_free_vblk:
565 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200566out_free_index:
567 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000568out:
569 return err;
570}
571
Mike Frysinger98e94442009-05-18 03:39:09 -0400572static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000573{
574 struct virtio_blk *vblk = vdev->priv;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200575 int index = vblk->index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000576
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030577 /* Prevent config work handler from accessing the device. */
578 mutex_lock(&vblk->config_lock);
579 vblk->config_enable = false;
580 mutex_unlock(&vblk->config_lock);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100581
Asias He02e2b122012-05-25 10:34:47 +0800582 del_gendisk(vblk->disk);
Asias He483001c2012-05-25 10:34:48 +0800583 blk_cleanup_queue(vblk->disk->queue);
Asias He02e2b122012-05-25 10:34:47 +0800584
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500585 /* Stop all the virtqueues. */
586 vdev->config->reset(vdev);
587
Michael S. Tsirkin4678d6f2012-01-12 15:44:44 +1030588 flush_work(&vblk->config_work);
589
Rusty Russelle467cde2007-10-22 11:03:38 +1000590 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000591 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600592 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000593 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200594 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000595}
596
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530597#ifdef CONFIG_PM
598static int virtblk_freeze(struct virtio_device *vdev)
599{
600 struct virtio_blk *vblk = vdev->priv;
601
602 /* Ensure we don't receive any more interrupts */
603 vdev->config->reset(vdev);
604
605 /* Prevent config work handler from accessing the device. */
606 mutex_lock(&vblk->config_lock);
607 vblk->config_enable = false;
608 mutex_unlock(&vblk->config_lock);
609
610 flush_work(&vblk->config_work);
611
612 spin_lock_irq(vblk->disk->queue->queue_lock);
613 blk_stop_queue(vblk->disk->queue);
614 spin_unlock_irq(vblk->disk->queue->queue_lock);
615 blk_sync_queue(vblk->disk->queue);
616
617 vdev->config->del_vqs(vdev);
618 return 0;
619}
620
621static int virtblk_restore(struct virtio_device *vdev)
622{
623 struct virtio_blk *vblk = vdev->priv;
624 int ret;
625
626 vblk->config_enable = true;
627 ret = init_vq(vdev->priv);
628 if (!ret) {
629 spin_lock_irq(vblk->disk->queue->queue_lock);
630 blk_start_queue(vblk->disk->queue);
631 spin_unlock_irq(vblk->disk->queue->queue_lock);
632 }
633 return ret;
634}
635#endif
636
Márton Németh47483e22010-01-10 13:40:02 +0100637static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000638 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
639 { 0 },
640};
641
Rusty Russellc45a6812008-05-02 21:50:50 -0500642static unsigned int features[] = {
Tejun Heo02c42b72010-09-03 11:56:18 +0200643 VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
644 VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
645 VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500646};
647
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600648/*
649 * virtio_blk causes spurious section mismatch warning by
650 * simultaneously referring to a __devinit and a __devexit function.
651 * Use __refdata to avoid this warning.
652 */
653static struct virtio_driver __refdata virtio_blk = {
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100654 .feature_table = features,
655 .feature_table_size = ARRAY_SIZE(features),
656 .driver.name = KBUILD_MODNAME,
657 .driver.owner = THIS_MODULE,
658 .id_table = id_table,
659 .probe = virtblk_probe,
660 .remove = __devexit_p(virtblk_remove),
661 .config_changed = virtblk_config_changed,
Amit Shahf8fb5bc2011-12-22 16:58:30 +0530662#ifdef CONFIG_PM
663 .freeze = virtblk_freeze,
664 .restore = virtblk_restore,
665#endif
Rusty Russelle467cde2007-10-22 11:03:38 +1000666};
667
668static int __init init(void)
669{
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100670 int error;
671
672 virtblk_wq = alloc_workqueue("virtio-blk", 0, 0);
673 if (!virtblk_wq)
674 return -ENOMEM;
675
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100676 major = register_blkdev(0, "virtblk");
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100677 if (major < 0) {
678 error = major;
679 goto out_destroy_workqueue;
680 }
681
682 error = register_virtio_driver(&virtio_blk);
683 if (error)
684 goto out_unregister_blkdev;
685 return 0;
686
687out_unregister_blkdev:
688 unregister_blkdev(major, "virtblk");
689out_destroy_workqueue:
690 destroy_workqueue(virtblk_wq);
691 return error;
Rusty Russelle467cde2007-10-22 11:03:38 +1000692}
693
694static void __exit fini(void)
695{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100696 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000697 unregister_virtio_driver(&virtio_blk);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100698 destroy_workqueue(virtblk_wq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000699}
700module_init(init);
701module_exit(fini);
702
703MODULE_DEVICE_TABLE(virtio, id_table);
704MODULE_DESCRIPTION("Virtio block driver");
705MODULE_LICENSE("GPL");