blob: 4d0b70adf5f73356bb79fafc06927b5f33207a64 [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>
Rusty Russelle467cde2007-10-22 11:03:38 +10007#include <linux/virtio.h>
8#include <linux/virtio_blk.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +02009#include <linux/scatterlist.h>
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010010#include <linux/string_helpers.h>
Liu Yuan6917f832011-04-24 02:49:26 +080011#include <scsi/scsi_cmnd.h>
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020012#include <linux/idr.h>
Jens Axboe3d1266c2007-10-24 13:21:21 +020013
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010014#define PART_BITS 4
Rusty Russelle467cde2007-10-22 11:03:38 +100015
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020016static int major;
17static DEFINE_IDA(vd_index_ida);
18
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010019struct workqueue_struct *virtblk_wq;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +010020
Rusty Russelle467cde2007-10-22 11:03:38 +100021struct virtio_blk
22{
23 spinlock_t lock;
24
25 struct virtio_device *vdev;
26 struct virtqueue *vq;
27
28 /* The disk structure for the kernel. */
29 struct gendisk *disk;
30
31 /* Request tracking. */
32 struct list_head reqs;
33
34 mempool_t *pool;
35
Christoph Hellwig7a7c9242011-02-01 21:43:48 +010036 /* Process context for config space updates */
37 struct work_struct config_work;
38
Rusty Russell0864b792008-12-30 09:26:05 -060039 /* What host tells us, plus 2 for header & tailer. */
40 unsigned int sg_elems;
41
Michael S. Tsirkin5087a502011-10-30 21:29:59 +020042 /* Ida index - used to track minor number allocations. */
43 int index;
44
Rusty Russelle467cde2007-10-22 11:03:38 +100045 /* Scatterlist: can be too big for stack. */
Rusty Russell0864b792008-12-30 09:26:05 -060046 struct scatterlist sg[/*sg_elems*/];
Rusty Russelle467cde2007-10-22 11:03:38 +100047};
48
49struct virtblk_req
50{
51 struct list_head list;
52 struct request *req;
53 struct virtio_blk_outhdr out_hdr;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020054 struct virtio_scsi_inhdr in_hdr;
Rusty Russellcb38fa22008-05-02 21:50:45 -050055 u8 status;
Rusty Russelle467cde2007-10-22 11:03:38 +100056};
57
Rusty Russell18445c42008-02-04 23:49:57 -050058static void blk_done(struct virtqueue *vq)
Rusty Russelle467cde2007-10-22 11:03:38 +100059{
60 struct virtio_blk *vblk = vq->vdev->priv;
61 struct virtblk_req *vbr;
62 unsigned int len;
63 unsigned long flags;
64
65 spin_lock_irqsave(&vblk->lock, flags);
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +030066 while ((vbr = virtqueue_get_buf(vblk->vq, &len)) != NULL) {
Kiyoshi Ueda83169822008-10-01 10:11:20 -040067 int error;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020068
Rusty Russellcb38fa22008-05-02 21:50:45 -050069 switch (vbr->status) {
Rusty Russelle467cde2007-10-22 11:03:38 +100070 case VIRTIO_BLK_S_OK:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040071 error = 0;
Rusty Russelle467cde2007-10-22 11:03:38 +100072 break;
73 case VIRTIO_BLK_S_UNSUPP:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040074 error = -ENOTTY;
Rusty Russelle467cde2007-10-22 11:03:38 +100075 break;
76 default:
Kiyoshi Ueda83169822008-10-01 10:11:20 -040077 error = -EIO;
Rusty Russelle467cde2007-10-22 11:03:38 +100078 break;
79 }
80
Christoph Hellwig33659eb2010-08-07 18:17:56 +020081 switch (vbr->req->cmd_type) {
82 case REQ_TYPE_BLOCK_PC:
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020083 vbr->req->resid_len = vbr->in_hdr.residual;
84 vbr->req->sense_len = vbr->in_hdr.sense_len;
85 vbr->req->errors = vbr->in_hdr.errors;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020086 break;
87 case REQ_TYPE_SPECIAL:
john cooper4cb2ea22010-03-25 01:33:33 -040088 vbr->req->errors = (error != 0);
Christoph Hellwig33659eb2010-08-07 18:17:56 +020089 break;
Jens Axboe15fa6e82010-06-18 12:10:18 +020090 default:
91 break;
Christoph Hellwig33659eb2010-08-07 18:17:56 +020092 }
Hannes Reinecke1cde26f2009-05-18 14:41:30 +020093
Tejun Heo40cbbb72009-04-23 11:05:19 +090094 __blk_end_request_all(vbr->req, error);
Rusty Russelle467cde2007-10-22 11:03:38 +100095 list_del(&vbr->list);
96 mempool_free(vbr, vblk->pool);
97 }
98 /* In case queue is stopped waiting for more buffers. */
99 blk_start_queue(vblk->disk->queue);
100 spin_unlock_irqrestore(&vblk->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
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300175 if (virtqueue_add_buf(vblk->vq, vblk->sg, out, in, vbr) < 0) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000176 mempool_free(vbr, vblk->pool);
177 return false;
178 }
179
180 list_add_tail(&vbr->list, &vblk->reqs);
181 return true;
182}
183
184static void do_virtblk_request(struct request_queue *q)
185{
Christoph Hellwig6c3b46f2009-05-18 14:38:28 +0200186 struct virtio_blk *vblk = q->queuedata;
Rusty Russelle467cde2007-10-22 11:03:38 +1000187 struct request *req;
188 unsigned int issued = 0;
189
Tejun Heo9934c8c2009-05-08 11:54:16 +0900190 while ((req = blk_peek_request(q)) != NULL) {
Rusty Russell0864b792008-12-30 09:26:05 -0600191 BUG_ON(req->nr_phys_segments + 2 > vblk->sg_elems);
Rusty Russelle467cde2007-10-22 11:03:38 +1000192
193 /* If this request fails, stop queue and wait for something to
194 finish to restart it. */
195 if (!do_req(q, vblk, req)) {
196 blk_stop_queue(q);
197 break;
198 }
Tejun Heo9934c8c2009-05-08 11:54:16 +0900199 blk_start_request(req);
Rusty Russelle467cde2007-10-22 11:03:38 +1000200 issued++;
201 }
202
203 if (issued)
Michael S. Tsirkin09ec6b62010-04-12 16:18:36 +0300204 virtqueue_kick(vblk->vq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000205}
206
john cooper4cb2ea22010-03-25 01:33:33 -0400207/* return id (s/n) string for *disk to *id_str
208 */
209static int virtblk_get_id(struct gendisk *disk, char *id_str)
210{
211 struct virtio_blk *vblk = disk->private_data;
212 struct request *req;
213 struct bio *bio;
Mike Snitzere4c47762010-10-09 12:12:13 +1030214 int err;
john cooper4cb2ea22010-03-25 01:33:33 -0400215
216 bio = bio_map_kern(vblk->disk->queue, id_str, VIRTIO_BLK_ID_BYTES,
217 GFP_KERNEL);
218 if (IS_ERR(bio))
219 return PTR_ERR(bio);
220
221 req = blk_make_request(vblk->disk->queue, bio, GFP_KERNEL);
222 if (IS_ERR(req)) {
223 bio_put(bio);
224 return PTR_ERR(req);
225 }
226
227 req->cmd_type = REQ_TYPE_SPECIAL;
Mike Snitzere4c47762010-10-09 12:12:13 +1030228 err = blk_execute_rq(vblk->disk->queue, vblk->disk, req, false);
229 blk_put_request(req);
230
231 return err;
john cooper4cb2ea22010-03-25 01:33:33 -0400232}
233
Christoph Hellwigfe5a50a2010-09-15 01:27:23 +0200234static int virtblk_ioctl(struct block_device *bdev, fmode_t mode,
235 unsigned int cmd, unsigned long data)
Rusty Russelle467cde2007-10-22 11:03:38 +1000236{
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200237 struct gendisk *disk = bdev->bd_disk;
238 struct virtio_blk *vblk = disk->private_data;
239
240 /*
241 * Only allow the generic SCSI ioctls if the host can support it.
242 */
243 if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI))
Christoph Hellwigd9ecdea2009-06-20 21:29:41 +0200244 return -ENOTTY;
Hannes Reinecke1cde26f2009-05-18 14:41:30 +0200245
Rusty Russell3225bea2009-10-22 16:39:28 -0600246 return scsi_cmd_ioctl(disk->queue, disk, mode, cmd,
247 (void __user *)data);
Rusty Russelle467cde2007-10-22 11:03:38 +1000248}
249
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100250/* We provide getgeo only to please some old bootloader/partitioning tools */
251static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
252{
Ryan Harper48e40432008-04-16 13:56:37 -0500253 struct virtio_blk *vblk = bd->bd_disk->private_data;
254 struct virtio_blk_geometry vgeo;
255 int err;
256
257 /* see if the host passed in geometry config */
258 err = virtio_config_val(vblk->vdev, VIRTIO_BLK_F_GEOMETRY,
259 offsetof(struct virtio_blk_config, geometry),
260 &vgeo);
261
262 if (!err) {
263 geo->heads = vgeo.heads;
264 geo->sectors = vgeo.sectors;
265 geo->cylinders = vgeo.cylinders;
266 } else {
267 /* some standard values, similar to sd */
268 geo->heads = 1 << 6;
269 geo->sectors = 1 << 5;
270 geo->cylinders = get_capacity(bd->bd_disk) >> 11;
271 }
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100272 return 0;
273}
274
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700275static const struct block_device_operations virtblk_fops = {
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +0200276 .ioctl = virtblk_ioctl,
Christian Borntraeger135da0b2008-01-23 17:56:50 +0100277 .owner = THIS_MODULE,
278 .getgeo = virtblk_getgeo,
Rusty Russelle467cde2007-10-22 11:03:38 +1000279};
280
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100281static int index_to_minor(int index)
282{
283 return index << PART_BITS;
284}
285
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200286static int minor_to_index(int minor)
287{
288 return minor >> PART_BITS;
289}
290
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500291static ssize_t virtblk_serial_show(struct device *dev,
292 struct device_attribute *attr, char *buf)
293{
294 struct gendisk *disk = dev_to_disk(dev);
295 int err;
296
297 /* sysfs gives us a PAGE_SIZE buffer */
298 BUILD_BUG_ON(PAGE_SIZE < VIRTIO_BLK_ID_BYTES);
299
300 buf[VIRTIO_BLK_ID_BYTES] = '\0';
301 err = virtblk_get_id(disk, buf);
302 if (!err)
303 return strlen(buf);
304
305 if (err == -EIO) /* Unsupported? Make it empty. */
306 return 0;
307
308 return err;
309}
310DEVICE_ATTR(serial, S_IRUGO, virtblk_serial_show, NULL);
311
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100312static void virtblk_config_changed_work(struct work_struct *work)
313{
314 struct virtio_blk *vblk =
315 container_of(work, struct virtio_blk, config_work);
316 struct virtio_device *vdev = vblk->vdev;
317 struct request_queue *q = vblk->disk->queue;
318 char cap_str_2[10], cap_str_10[10];
319 u64 capacity, size;
320
321 /* Host must always specify the capacity. */
322 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
323 &capacity, sizeof(capacity));
324
325 /* If capacity is too big, truncate with warning. */
326 if ((sector_t)capacity != capacity) {
327 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
328 (unsigned long long)capacity);
329 capacity = (sector_t)-1;
330 }
331
332 size = capacity * queue_logical_block_size(q);
333 string_get_size(size, STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
334 string_get_size(size, STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
335
336 dev_notice(&vdev->dev,
337 "new size: %llu %d-byte logical blocks (%s/%s)\n",
338 (unsigned long long)capacity,
339 queue_logical_block_size(q),
340 cap_str_10, cap_str_2);
341
342 set_capacity(vblk->disk, capacity);
343}
344
345static void virtblk_config_changed(struct virtio_device *vdev)
346{
347 struct virtio_blk *vblk = vdev->priv;
348
349 queue_work(virtblk_wq, &vblk->config_work);
350}
351
Mike Frysinger98e94442009-05-18 03:39:09 -0400352static int __devinit virtblk_probe(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000353{
354 struct virtio_blk *vblk;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600355 struct request_queue *q;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200356 int err, index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000357 u64 cap;
Christoph Hellwig69740c82010-02-24 14:22:25 -0600358 u32 v, blk_size, sg_elems, opt_io_size;
359 u16 min_io_size;
360 u8 physical_block_exp, alignment_offset;
Rusty Russelle467cde2007-10-22 11:03:38 +1000361
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200362 err = ida_simple_get(&vd_index_ida, 0, minor_to_index(1 << MINORBITS),
363 GFP_KERNEL);
364 if (err < 0)
365 goto out;
366 index = err;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100367
Rusty Russell0864b792008-12-30 09:26:05 -0600368 /* We need to know how many segments before we allocate. */
369 err = virtio_config_val(vdev, VIRTIO_BLK_F_SEG_MAX,
370 offsetof(struct virtio_blk_config, seg_max),
371 &sg_elems);
Christoph Hellwiga5b365a2010-05-25 14:17:54 +0200372
373 /* We need at least one SG element, whatever they say. */
374 if (err || !sg_elems)
Rusty Russell0864b792008-12-30 09:26:05 -0600375 sg_elems = 1;
376
377 /* We need an extra sg elements at head and tail. */
378 sg_elems += 2;
379 vdev->priv = vblk = kmalloc(sizeof(*vblk) +
380 sizeof(vblk->sg[0]) * sg_elems, GFP_KERNEL);
Rusty Russelle467cde2007-10-22 11:03:38 +1000381 if (!vblk) {
382 err = -ENOMEM;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200383 goto out_free_index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000384 }
385
386 INIT_LIST_HEAD(&vblk->reqs);
387 spin_lock_init(&vblk->lock);
388 vblk->vdev = vdev;
Rusty Russell0864b792008-12-30 09:26:05 -0600389 vblk->sg_elems = sg_elems;
390 sg_init_table(vblk->sg, vblk->sg_elems);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100391 INIT_WORK(&vblk->config_work, virtblk_config_changed_work);
Rusty Russelle467cde2007-10-22 11:03:38 +1000392
393 /* We expect one virtqueue, for output. */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600394 vblk->vq = virtio_find_single_vq(vdev, blk_done, "requests");
Rusty Russelle467cde2007-10-22 11:03:38 +1000395 if (IS_ERR(vblk->vq)) {
396 err = PTR_ERR(vblk->vq);
397 goto out_free_vblk;
398 }
399
400 vblk->pool = mempool_create_kmalloc_pool(1,sizeof(struct virtblk_req));
401 if (!vblk->pool) {
402 err = -ENOMEM;
403 goto out_free_vq;
404 }
405
Rusty Russelle467cde2007-10-22 11:03:38 +1000406 /* FIXME: How many partitions? How long is a piece of string? */
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100407 vblk->disk = alloc_disk(1 << PART_BITS);
Rusty Russelle467cde2007-10-22 11:03:38 +1000408 if (!vblk->disk) {
409 err = -ENOMEM;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100410 goto out_mempool;
Rusty Russelle467cde2007-10-22 11:03:38 +1000411 }
412
Christoph Hellwig69740c82010-02-24 14:22:25 -0600413 q = vblk->disk->queue = blk_init_queue(do_virtblk_request, &vblk->lock);
414 if (!q) {
Rusty Russelle467cde2007-10-22 11:03:38 +1000415 err = -ENOMEM;
416 goto out_put_disk;
417 }
418
Christoph Hellwig69740c82010-02-24 14:22:25 -0600419 q->queuedata = vblk;
Fernando Luis Vázquez Cao7d116b62008-10-27 18:45:15 +0900420
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100421 if (index < 26) {
422 sprintf(vblk->disk->disk_name, "vd%c", 'a' + index % 26);
423 } else if (index < (26 + 1) * 26) {
424 sprintf(vblk->disk->disk_name, "vd%c%c",
425 'a' + index / 26 - 1, 'a' + index % 26);
426 } else {
427 const unsigned int m1 = (index / 26 - 1) / 26 - 1;
428 const unsigned int m2 = (index / 26 - 1) % 26;
429 const unsigned int m3 = index % 26;
430 sprintf(vblk->disk->disk_name, "vd%c%c%c",
431 'a' + m1, 'a' + m2, 'a' + m3);
432 }
433
Rusty Russelle467cde2007-10-22 11:03:38 +1000434 vblk->disk->major = major;
Christian Borntraegerd50ed902008-02-01 09:05:00 +0100435 vblk->disk->first_minor = index_to_minor(index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000436 vblk->disk->private_data = vblk;
437 vblk->disk->fops = &virtblk_fops;
Jeremy Katzc4839342008-03-02 17:00:15 -0500438 vblk->disk->driverfs_dev = &vdev->dev;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200439 vblk->index = index;
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100440
Tejun Heo02c42b72010-09-03 11:56:18 +0200441 /* configure queue flush support */
Tejun Heo4913efe2010-09-03 11:56:16 +0200442 if (virtio_has_feature(vdev, VIRTIO_BLK_F_FLUSH))
443 blk_queue_flush(q, REQ_FLUSH);
Rusty Russelle467cde2007-10-22 11:03:38 +1000444
Christian Borntraeger3ef53602008-05-16 11:17:03 +0200445 /* If disk is read-only in the host, the guest should obey */
446 if (virtio_has_feature(vdev, VIRTIO_BLK_F_RO))
447 set_disk_ro(vblk->disk, 1);
448
Rusty Russella586d4f2008-02-04 23:49:56 -0500449 /* Host must always specify the capacity. */
Rusty Russell72e61eb2008-05-02 21:50:49 -0500450 vdev->config->get(vdev, offsetof(struct virtio_blk_config, capacity),
451 &cap, sizeof(cap));
Rusty Russelle467cde2007-10-22 11:03:38 +1000452
453 /* If capacity is too big, truncate with warning. */
454 if ((sector_t)cap != cap) {
455 dev_warn(&vdev->dev, "Capacity %llu too large: truncating\n",
456 (unsigned long long)cap);
457 cap = (sector_t)-1;
458 }
459 set_capacity(vblk->disk, cap);
460
Rusty Russell0864b792008-12-30 09:26:05 -0600461 /* We can handle whatever the host told us to handle. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500462 blk_queue_max_segments(q, vblk->sg_elems-2);
Rusty Russell0864b792008-12-30 09:26:05 -0600463
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600464 /* No need to bounce any requests */
Christoph Hellwig69740c82010-02-24 14:22:25 -0600465 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
Christoph Hellwig4eff3ca2009-07-17 21:47:45 -0600466
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600467 /* No real sector limit. */
Martin K. Petersenee714f22010-03-10 00:48:32 -0500468 blk_queue_max_hw_sectors(q, -1U);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600469
Rusty Russella586d4f2008-02-04 23:49:56 -0500470 /* Host can optionally specify maximum segment size and number of
471 * segments. */
472 err = virtio_config_val(vdev, VIRTIO_BLK_F_SIZE_MAX,
473 offsetof(struct virtio_blk_config, size_max),
474 &v);
Rusty Russelle467cde2007-10-22 11:03:38 +1000475 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600476 blk_queue_max_segment_size(q, v);
Rusty Russell4b7f7e22008-12-30 09:26:04 -0600477 else
Christoph Hellwig69740c82010-02-24 14:22:25 -0600478 blk_queue_max_segment_size(q, -1U);
Rusty Russelle467cde2007-10-22 11:03:38 +1000479
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200480 /* Host can optionally specify the block size of the device */
481 err = virtio_config_val(vdev, VIRTIO_BLK_F_BLK_SIZE,
482 offsetof(struct virtio_blk_config, blk_size),
483 &blk_size);
484 if (!err)
Christoph Hellwig69740c82010-02-24 14:22:25 -0600485 blk_queue_logical_block_size(q, blk_size);
486 else
487 blk_size = queue_logical_block_size(q);
488
489 /* Use topology information if available */
490 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
491 offsetof(struct virtio_blk_config, physical_block_exp),
492 &physical_block_exp);
493 if (!err && physical_block_exp)
494 blk_queue_physical_block_size(q,
495 blk_size * (1 << physical_block_exp));
496
497 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
498 offsetof(struct virtio_blk_config, alignment_offset),
499 &alignment_offset);
500 if (!err && alignment_offset)
501 blk_queue_alignment_offset(q, blk_size * alignment_offset);
502
503 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
504 offsetof(struct virtio_blk_config, min_io_size),
505 &min_io_size);
506 if (!err && min_io_size)
507 blk_queue_io_min(q, blk_size * min_io_size);
508
509 err = virtio_config_val(vdev, VIRTIO_BLK_F_TOPOLOGY,
510 offsetof(struct virtio_blk_config, opt_io_size),
511 &opt_io_size);
512 if (!err && opt_io_size)
513 blk_queue_io_opt(q, blk_size * opt_io_size);
514
Christian Borntraeger066f4d82008-05-29 11:08:26 +0200515
Rusty Russelle467cde2007-10-22 11:03:38 +1000516 add_disk(vblk->disk);
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500517 err = device_create_file(disk_to_dev(vblk->disk), &dev_attr_serial);
518 if (err)
519 goto out_del_disk;
520
Rusty Russelle467cde2007-10-22 11:03:38 +1000521 return 0;
522
Ryan Harpera5eb9e42010-06-23 22:19:57 -0500523out_del_disk:
524 del_gendisk(vblk->disk);
525 blk_cleanup_queue(vblk->disk->queue);
Rusty Russelle467cde2007-10-22 11:03:38 +1000526out_put_disk:
527 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000528out_mempool:
529 mempool_destroy(vblk->pool);
530out_free_vq:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600531 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000532out_free_vblk:
533 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200534out_free_index:
535 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000536out:
537 return err;
538}
539
Mike Frysinger98e94442009-05-18 03:39:09 -0400540static void __devexit virtblk_remove(struct virtio_device *vdev)
Rusty Russelle467cde2007-10-22 11:03:38 +1000541{
542 struct virtio_blk *vblk = vdev->priv;
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200543 int index = vblk->index;
Rusty Russelle467cde2007-10-22 11:03:38 +1000544
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100545 flush_work(&vblk->config_work);
546
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500547 /* Nothing should be pending. */
Rusty Russelle467cde2007-10-22 11:03:38 +1000548 BUG_ON(!list_empty(&vblk->reqs));
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500549
550 /* Stop all the virtqueues. */
551 vdev->config->reset(vdev);
552
Chris Lalancetteac9d4632008-05-30 15:09:41 -0500553 del_gendisk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000554 blk_cleanup_queue(vblk->disk->queue);
555 put_disk(vblk->disk);
Rusty Russelle467cde2007-10-22 11:03:38 +1000556 mempool_destroy(vblk->pool);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600557 vdev->config->del_vqs(vdev);
Rusty Russelle467cde2007-10-22 11:03:38 +1000558 kfree(vblk);
Michael S. Tsirkin5087a502011-10-30 21:29:59 +0200559 ida_simple_remove(&vd_index_ida, index);
Rusty Russelle467cde2007-10-22 11:03:38 +1000560}
561
Márton Németh47483e22010-01-10 13:40:02 +0100562static const struct virtio_device_id id_table[] = {
Rusty Russelle467cde2007-10-22 11:03:38 +1000563 { VIRTIO_ID_BLOCK, VIRTIO_DEV_ANY_ID },
564 { 0 },
565};
566
Rusty Russellc45a6812008-05-02 21:50:50 -0500567static unsigned int features[] = {
Tejun Heo02c42b72010-09-03 11:56:18 +0200568 VIRTIO_BLK_F_SEG_MAX, VIRTIO_BLK_F_SIZE_MAX, VIRTIO_BLK_F_GEOMETRY,
569 VIRTIO_BLK_F_RO, VIRTIO_BLK_F_BLK_SIZE, VIRTIO_BLK_F_SCSI,
570 VIRTIO_BLK_F_FLUSH, VIRTIO_BLK_F_TOPOLOGY
Rusty Russellc45a6812008-05-02 21:50:50 -0500571};
572
Rakib Mullick4fbfff762009-07-17 20:13:22 +0600573/*
574 * virtio_blk causes spurious section mismatch warning by
575 * simultaneously referring to a __devinit and a __devexit function.
576 * Use __refdata to avoid this warning.
577 */
578static struct virtio_driver __refdata virtio_blk = {
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100579 .feature_table = features,
580 .feature_table_size = ARRAY_SIZE(features),
581 .driver.name = KBUILD_MODNAME,
582 .driver.owner = THIS_MODULE,
583 .id_table = id_table,
584 .probe = virtblk_probe,
585 .remove = __devexit_p(virtblk_remove),
586 .config_changed = virtblk_config_changed,
Rusty Russelle467cde2007-10-22 11:03:38 +1000587};
588
589static int __init init(void)
590{
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100591 int error;
592
593 virtblk_wq = alloc_workqueue("virtio-blk", 0, 0);
594 if (!virtblk_wq)
595 return -ENOMEM;
596
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100597 major = register_blkdev(0, "virtblk");
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100598 if (major < 0) {
599 error = major;
600 goto out_destroy_workqueue;
601 }
602
603 error = register_virtio_driver(&virtio_blk);
604 if (error)
605 goto out_unregister_blkdev;
606 return 0;
607
608out_unregister_blkdev:
609 unregister_blkdev(major, "virtblk");
610out_destroy_workqueue:
611 destroy_workqueue(virtblk_wq);
612 return error;
Rusty Russelle467cde2007-10-22 11:03:38 +1000613}
614
615static void __exit fini(void)
616{
Christian Borntraeger4f3bf192008-01-31 15:53:53 +0100617 unregister_blkdev(major, "virtblk");
Rusty Russelle467cde2007-10-22 11:03:38 +1000618 unregister_virtio_driver(&virtio_blk);
Christoph Hellwig7a7c9242011-02-01 21:43:48 +0100619 destroy_workqueue(virtblk_wq);
Rusty Russelle467cde2007-10-22 11:03:38 +1000620}
621module_init(init);
622module_exit(fini);
623
624MODULE_DEVICE_TABLE(virtio, id_table);
625MODULE_DESCRIPTION("Virtio block driver");
626MODULE_LICENSE("GPL");