blob: 619868d91ca8729037515b06480f7a7a8c011821 [file] [log] [blame]
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001/*
2 * blkfront.c
3 *
4 * XenLinux virtual block device driver.
5 *
6 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7 * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8 * Copyright (c) 2004, Christian Limpach
9 * Copyright (c) 2004, Andrew Warfield
10 * Copyright (c) 2005, Christopher Clark
11 * Copyright (c) 2005, XenSource Ltd
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation; or, when distributed
16 * separately from the Linux kernel or incorporated into other
17 * software packages, subject to the following license:
18 *
19 * Permission is hereby granted, free of charge, to any person obtaining a copy
20 * of this source file (the "Software"), to deal in the Software without
21 * restriction, including without limitation the rights to use, copy, modify,
22 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
23 * and to permit persons to whom the Software is furnished to do so, subject to
24 * the following conditions:
25 *
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
34 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
35 * IN THE SOFTWARE.
36 */
37
38#include <linux/interrupt.h>
39#include <linux/blkdev.h>
Ian Campbell597592d2008-02-21 13:03:45 -080040#include <linux/hdreg.h>
Christian Limpach440a01a2008-06-17 10:47:08 +020041#include <linux/cdrom.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070042#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020044#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010045#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090046#include <linux/bitmap.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070047
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070048#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070049#include <xen/xenbus.h>
50#include <xen/grant_table.h>
51#include <xen/events.h>
52#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010053#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070054
55#include <xen/interface/grant_table.h>
56#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070057#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070058
59#include <asm/xen/hypervisor.h>
60
61enum blkif_state {
62 BLKIF_STATE_DISCONNECTED,
63 BLKIF_STATE_CONNECTED,
64 BLKIF_STATE_SUSPENDED,
65};
66
67struct blk_shadow {
68 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040069 struct request *request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070070 unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST];
71};
72
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020073static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -070074static const struct block_device_operations xlvbd_block_fops;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070075
Jeremy Fitzhardinge667c78af2010-12-08 12:39:12 -080076#define BLK_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070077
78/*
79 * We have one of these per vbd, whether ide, scsi or 'other'. They
80 * hang in private_data off the gendisk structure. We may end up
81 * putting all kinds of interesting stuff here :-)
82 */
83struct blkfront_info
84{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +000085 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070086 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070087 struct gendisk *gd;
88 int vdevice;
89 blkif_vdev_t handle;
90 enum blkif_state connected;
91 int ring_ref;
92 struct blkif_front_ring ring;
Jens Axboe9e973e62009-02-24 08:10:09 +010093 struct scatterlist sg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070094 unsigned int evtchn, irq;
95 struct request_queue *rq;
96 struct work_struct work;
97 struct gnttab_free_callback callback;
98 struct blk_shadow shadow[BLK_RING_SIZE];
99 unsigned long shadow_free;
Tejun Heo4913efe2010-09-03 11:56:16 +0200100 unsigned int feature_flush;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400101 unsigned int flush_op;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400102 unsigned int feature_discard:1;
103 unsigned int feature_secdiscard:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800104 unsigned int discard_granularity;
105 unsigned int discard_alignment;
Christian Limpach1d78d702008-04-02 10:54:04 -0700106 int is_ready;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700107};
108
109static DEFINE_SPINLOCK(blkif_io_lock);
110
Jan Beulich0e345822010-08-07 18:28:55 +0200111static unsigned int nr_minors;
112static unsigned long *minors;
113static DEFINE_SPINLOCK(minor_lock);
114
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700115#define MAXIMUM_OUTSTANDING_BLOCK_REQS \
116 (BLKIF_MAX_SEGMENTS_PER_REQUEST * BLK_RING_SIZE)
117#define GRANT_INVALID_REF 0
118
119#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700120#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700121
122#define BLKIF_MAJOR(dev) ((dev)>>8)
123#define BLKIF_MINOR(dev) ((dev) & 0xff)
124
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700125#define EXT_SHIFT 28
126#define EXTENDED (1<<EXT_SHIFT)
127#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
128#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000129#define EMULATED_HD_DISK_MINOR_OFFSET (0)
130#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200131#define EMULATED_SD_DISK_MINOR_OFFSET (0)
132#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700133
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700134#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700135
136static int get_id_from_freelist(struct blkfront_info *info)
137{
138 unsigned long free = info->shadow_free;
Roel Kluinb9ed7252009-05-22 09:25:32 +0200139 BUG_ON(free >= BLK_RING_SIZE);
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400140 info->shadow_free = info->shadow[free].req.u.rw.id;
141 info->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700142 return free;
143}
144
145static void add_id_to_freelist(struct blkfront_info *info,
146 unsigned long id)
147{
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400148 info->shadow[id].req.u.rw.id = info->shadow_free;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400149 info->shadow[id].request = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700150 info->shadow_free = id;
151}
152
Jan Beulich0e345822010-08-07 18:28:55 +0200153static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
154{
155 unsigned int end = minor + nr;
156 int rc;
157
158 if (end > nr_minors) {
159 unsigned long *bitmap, *old;
160
Thomas Meyerf0941482011-11-29 22:08:00 +0100161 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200162 GFP_KERNEL);
163 if (bitmap == NULL)
164 return -ENOMEM;
165
166 spin_lock(&minor_lock);
167 if (end > nr_minors) {
168 old = minors;
169 memcpy(bitmap, minors,
170 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
171 minors = bitmap;
172 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
173 } else
174 old = bitmap;
175 spin_unlock(&minor_lock);
176 kfree(old);
177 }
178
179 spin_lock(&minor_lock);
180 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900181 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200182 rc = 0;
183 } else
184 rc = -EBUSY;
185 spin_unlock(&minor_lock);
186
187 return rc;
188}
189
190static void xlbd_release_minors(unsigned int minor, unsigned int nr)
191{
192 unsigned int end = minor + nr;
193
194 BUG_ON(end > nr_minors);
195 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900196 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200197 spin_unlock(&minor_lock);
198}
199
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700200static void blkif_restart_queue_callback(void *arg)
201{
202 struct blkfront_info *info = (struct blkfront_info *)arg;
203 schedule_work(&info->work);
204}
205
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700206static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800207{
208 /* We don't have real geometry info, but let's at least return
209 values consistent with the size of the device */
210 sector_t nsect = get_capacity(bd->bd_disk);
211 sector_t cylinders = nsect;
212
213 hg->heads = 0xff;
214 hg->sectors = 0x3f;
215 sector_div(cylinders, hg->heads * hg->sectors);
216 hg->cylinders = cylinders;
217 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
218 hg->cylinders = 0xffff;
219 return 0;
220}
221
Al Viroa63c8482008-03-02 10:23:47 -0500222static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200223 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200224{
Al Viroa63c8482008-03-02 10:23:47 -0500225 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200226 int i;
227
228 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
229 command, (long)argument);
230
231 switch (command) {
232 case CDROMMULTISESSION:
233 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
234 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
235 if (put_user(0, (char __user *)(argument + i)))
236 return -EFAULT;
237 return 0;
238
239 case CDROM_GET_CAPABILITY: {
240 struct gendisk *gd = info->gd;
241 if (gd->flags & GENHD_FL_CD)
242 return 0;
243 return -EINVAL;
244 }
245
246 default:
247 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
248 command);*/
249 return -EINVAL; /* same return as native Linux */
250 }
251
252 return 0;
253}
254
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700255/*
Jeremy Fitzhardingec64e38e2010-11-01 14:32:27 -0400256 * Generate a Xen blkfront IO request from a blk layer request. Reads
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400257 * and writes are handled as expected.
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700258 *
Jeremy Fitzhardingec64e38e2010-11-01 14:32:27 -0400259 * @req: a request struct
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700260 */
261static int blkif_queue_request(struct request *req)
262{
263 struct blkfront_info *info = req->rq_disk->private_data;
264 unsigned long buffer_mfn;
265 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700266 unsigned long id;
267 unsigned int fsect, lsect;
Jens Axboe9e973e62009-02-24 08:10:09 +0100268 int i, ref;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700269 grant_ref_t gref_head;
Jens Axboe9e973e62009-02-24 08:10:09 +0100270 struct scatterlist *sg;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700271
272 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
273 return 1;
274
275 if (gnttab_alloc_grant_references(
276 BLKIF_MAX_SEGMENTS_PER_REQUEST, &gref_head) < 0) {
277 gnttab_request_free_callback(
278 &info->callback,
279 blkif_restart_queue_callback,
280 info,
281 BLKIF_MAX_SEGMENTS_PER_REQUEST);
282 return 1;
283 }
284
285 /* Fill out a communications ring structure. */
286 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
287 id = get_id_from_freelist(info);
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400288 info->shadow[id].request = req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700289
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400290 ring_req->u.rw.id = id;
Owen Smith51de6952010-12-22 15:05:00 +0000291 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400292 ring_req->u.rw.handle = info->handle;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700293
294 ring_req->operation = rq_data_dir(req) ?
295 BLKIF_OP_WRITE : BLKIF_OP_READ;
Jeremy Fitzhardingebe2f8372010-11-02 10:38:33 -0400296
297 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA)) {
298 /*
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400299 * Ideally we can do an unordered flush-to-disk. In case the
300 * backend onlysupports barriers, use that. A barrier request
Jeremy Fitzhardingebe2f8372010-11-02 10:38:33 -0400301 * a superset of FUA, so we can implement it the same
302 * way. (It's also a FLUSH+FUA, since it is
303 * guaranteed ordered WRT previous writes.)
304 */
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400305 ring_req->operation = info->flush_op;
Jeremy Fitzhardingebe2f8372010-11-02 10:38:33 -0400306 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700307
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400308 if (unlikely(req->cmd_flags & (REQ_DISCARD | REQ_SECURE))) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800309 /* id, sector_number and handle are set above. */
310 ring_req->operation = BLKIF_OP_DISCARD;
Li Dongyanged30bf32011-09-01 18:39:09 +0800311 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400312 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
313 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
314 else
315 ring_req->u.discard.flag = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800316 } else {
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400317 ring_req->u.rw.nr_segments = blk_rq_map_sg(req->q, req,
318 info->sg);
319 BUG_ON(ring_req->u.rw.nr_segments >
320 BLKIF_MAX_SEGMENTS_PER_REQUEST);
Jens Axboe9e973e62009-02-24 08:10:09 +0100321
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400322 for_each_sg(info->sg, sg, ring_req->u.rw.nr_segments, i) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800323 buffer_mfn = pfn_to_mfn(page_to_pfn(sg_page(sg)));
324 fsect = sg->offset >> 9;
325 lsect = fsect + (sg->length >> 9) - 1;
326 /* install a grant reference. */
327 ref = gnttab_claim_grant_reference(&gref_head);
328 BUG_ON(ref == -ENOSPC);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700329
Li Dongyanged30bf32011-09-01 18:39:09 +0800330 gnttab_grant_foreign_access_ref(
331 ref,
332 info->xbdev->otherend_id,
333 buffer_mfn,
334 rq_data_dir(req));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700335
Li Dongyanged30bf32011-09-01 18:39:09 +0800336 info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn);
337 ring_req->u.rw.seg[i] =
338 (struct blkif_request_segment) {
339 .gref = ref,
340 .first_sect = fsect,
341 .last_sect = lsect };
342 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700343 }
344
345 info->ring.req_prod_pvt++;
346
347 /* Keep a private copy so we can reissue requests when recovering. */
348 info->shadow[id].req = *ring_req;
349
350 gnttab_free_grant_references(gref_head);
351
352 return 0;
353}
354
355
356static inline void flush_requests(struct blkfront_info *info)
357{
358 int notify;
359
360 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
361
362 if (notify)
363 notify_remote_via_irq(info->irq);
364}
365
366/*
367 * do_blkif_request
368 * read a block; request is in a request queue
369 */
Jens Axboe165125e2007-07-24 09:28:11 +0200370static void do_blkif_request(struct request_queue *rq)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700371{
372 struct blkfront_info *info = NULL;
373 struct request *req;
374 int queued;
375
376 pr_debug("Entered do_blkif_request\n");
377
378 queued = 0;
379
Tejun Heo9934c8c2009-05-08 11:54:16 +0900380 while ((req = blk_peek_request(rq)) != NULL) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700381 info = req->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700382
383 if (RING_FULL(&info->ring))
384 goto wait;
385
Tejun Heo9934c8c2009-05-08 11:54:16 +0900386 blk_start_request(req);
Tejun Heo296b2f62009-05-08 11:54:15 +0900387
Konrad Rzeszutek Wilkd11e6152011-09-16 15:15:14 -0400388 if ((req->cmd_type != REQ_TYPE_FS) ||
389 ((req->cmd_flags & (REQ_FLUSH | REQ_FUA)) &&
390 !info->flush_op)) {
Tejun Heo296b2f62009-05-08 11:54:15 +0900391 __blk_end_request_all(req, -EIO);
392 continue;
393 }
394
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700395 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
Tejun Heo83096eb2009-05-07 22:24:39 +0900396 "(%u/%u) buffer:%p [%s]\n",
397 req, req->cmd, (unsigned long)blk_rq_pos(req),
398 blk_rq_cur_sectors(req), blk_rq_sectors(req),
399 req->buffer, rq_data_dir(req) ? "write" : "read");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700400
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700401 if (blkif_queue_request(req)) {
402 blk_requeue_request(rq, req);
403wait:
404 /* Avoid pointless unplugs. */
405 blk_stop_queue(rq);
406 break;
407 }
408
409 queued++;
410 }
411
412 if (queued != 0)
413 flush_requests(info);
414}
415
416static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size)
417{
Jens Axboe165125e2007-07-24 09:28:11 +0200418 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800419 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700420
421 rq = blk_init_queue(do_blkif_request, &blkif_io_lock);
422 if (rq == NULL)
423 return -1;
424
Fernando Luis Vázquez Cao66d352e2008-10-27 18:45:54 +0900425 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700426
Li Dongyanged30bf32011-09-01 18:39:09 +0800427 if (info->feature_discard) {
428 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
429 blk_queue_max_discard_sectors(rq, get_capacity(gd));
430 rq->limits.discard_granularity = info->discard_granularity;
431 rq->limits.discard_alignment = info->discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400432 if (info->feature_secdiscard)
433 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800434 }
435
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700436 /* Hard sector size and max sectors impersonate the equiv. hardware. */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400437 blk_queue_logical_block_size(rq, sector_size);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500438 blk_queue_max_hw_sectors(rq, 512);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700439
440 /* Each segment in a request is up to an aligned page in size. */
441 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
442 blk_queue_max_segment_size(rq, PAGE_SIZE);
443
444 /* Ensure a merged request will fit in a single I/O ring slot. */
Martin K. Petersen8a783622010-02-26 00:20:39 -0500445 blk_queue_max_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700446
447 /* Make sure buffer addresses are sector-aligned. */
448 blk_queue_dma_alignment(rq, 511);
449
Ian Campbell1c91fe12008-06-17 10:47:08 +0200450 /* Make sure we don't use bounce buffers. */
451 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
452
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700453 gd->queue = rq;
454
455 return 0;
456}
457
458
Tejun Heo4913efe2010-09-03 11:56:16 +0200459static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700460{
Tejun Heo4913efe2010-09-03 11:56:16 +0200461 blk_queue_flush(info->rq, info->feature_flush);
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400462 printk(KERN_INFO "blkfront: %s: %s: %s\n",
Tejun Heo4913efe2010-09-03 11:56:16 +0200463 info->gd->disk_name,
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400464 info->flush_op == BLKIF_OP_WRITE_BARRIER ?
465 "barrier" : (info->flush_op == BLKIF_OP_FLUSH_DISKCACHE ?
466 "flush diskcache" : "barrier or flush"),
Tejun Heo4913efe2010-09-03 11:56:16 +0200467 info->feature_flush ? "enabled" : "disabled");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700468}
469
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000470static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
471{
472 int major;
473 major = BLKIF_MAJOR(vdevice);
474 *minor = BLKIF_MINOR(vdevice);
475 switch (major) {
476 case XEN_IDE0_MAJOR:
477 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
478 *minor = ((*minor / 64) * PARTS_PER_DISK) +
479 EMULATED_HD_DISK_MINOR_OFFSET;
480 break;
481 case XEN_IDE1_MAJOR:
482 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
483 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
484 EMULATED_HD_DISK_MINOR_OFFSET;
485 break;
486 case XEN_SCSI_DISK0_MAJOR:
487 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
488 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
489 break;
490 case XEN_SCSI_DISK1_MAJOR:
491 case XEN_SCSI_DISK2_MAJOR:
492 case XEN_SCSI_DISK3_MAJOR:
493 case XEN_SCSI_DISK4_MAJOR:
494 case XEN_SCSI_DISK5_MAJOR:
495 case XEN_SCSI_DISK6_MAJOR:
496 case XEN_SCSI_DISK7_MAJOR:
497 *offset = (*minor / PARTS_PER_DISK) +
498 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
499 EMULATED_SD_DISK_NAME_OFFSET;
500 *minor = *minor +
501 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
502 EMULATED_SD_DISK_MINOR_OFFSET;
503 break;
504 case XEN_SCSI_DISK8_MAJOR:
505 case XEN_SCSI_DISK9_MAJOR:
506 case XEN_SCSI_DISK10_MAJOR:
507 case XEN_SCSI_DISK11_MAJOR:
508 case XEN_SCSI_DISK12_MAJOR:
509 case XEN_SCSI_DISK13_MAJOR:
510 case XEN_SCSI_DISK14_MAJOR:
511 case XEN_SCSI_DISK15_MAJOR:
512 *offset = (*minor / PARTS_PER_DISK) +
513 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
514 EMULATED_SD_DISK_NAME_OFFSET;
515 *minor = *minor +
516 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
517 EMULATED_SD_DISK_MINOR_OFFSET;
518 break;
519 case XENVBD_MAJOR:
520 *offset = *minor / PARTS_PER_DISK;
521 break;
522 default:
523 printk(KERN_WARNING "blkfront: your disk configuration is "
524 "incorrect, please use an xvd device instead\n");
525 return -ENODEV;
526 }
527 return 0;
528}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700529
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700530static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
531 struct blkfront_info *info,
532 u16 vdisk_info, u16 sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700533{
534 struct gendisk *gd;
535 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000536 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700537 unsigned int offset;
538 int minor;
539 int nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700540
541 BUG_ON(info->gd != NULL);
542 BUG_ON(info->rq != NULL);
543
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700544 if ((info->vdevice>>EXT_SHIFT) > 1) {
545 /* this is above the extended range; something is wrong */
546 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
547 return -ENODEV;
548 }
549
550 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000551 err = xen_translate_vdev(info->vdevice, &minor, &offset);
552 if (err)
553 return err;
554 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700555 } else {
556 minor = BLKIF_MINOR_EXT(info->vdevice);
557 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000558 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +0200559 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000560 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
561 "emulated IDE disks,\n\t choose an xvd device name"
562 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700563 }
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000564 err = -ENODEV;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700565
566 if ((minor % nr_parts) == 0)
567 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700568
Jan Beulich0e345822010-08-07 18:28:55 +0200569 err = xlbd_reserve_minors(minor, nr_minors);
570 if (err)
571 goto out;
572 err = -ENODEV;
573
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700574 gd = alloc_disk(nr_minors);
575 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +0200576 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700577
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700578 if (nr_minors > 1) {
579 if (offset < 26)
580 sprintf(gd->disk_name, "%s%c", DEV_NAME, 'a' + offset);
581 else
582 sprintf(gd->disk_name, "%s%c%c", DEV_NAME,
583 'a' + ((offset / 26)-1), 'a' + (offset % 26));
584 } else {
585 if (offset < 26)
586 sprintf(gd->disk_name, "%s%c%d", DEV_NAME,
587 'a' + offset,
588 minor & (nr_parts - 1));
589 else
590 sprintf(gd->disk_name, "%s%c%c%d", DEV_NAME,
591 'a' + ((offset / 26) - 1),
592 'a' + (offset % 26),
593 minor & (nr_parts - 1));
594 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700595
596 gd->major = XENVBD_MAJOR;
597 gd->first_minor = minor;
598 gd->fops = &xlvbd_block_fops;
599 gd->private_data = info;
600 gd->driverfs_dev = &(info->xbdev->dev);
601 set_capacity(gd, capacity);
602
603 if (xlvbd_init_blk_queue(gd, sector_size)) {
604 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +0200605 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700606 }
607
608 info->rq = gd->queue;
609 info->gd = gd;
610
Tejun Heo4913efe2010-09-03 11:56:16 +0200611 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700612
613 if (vdisk_info & VDISK_READONLY)
614 set_disk_ro(gd, 1);
615
616 if (vdisk_info & VDISK_REMOVABLE)
617 gd->flags |= GENHD_FL_REMOVABLE;
618
619 if (vdisk_info & VDISK_CDROM)
620 gd->flags |= GENHD_FL_CD;
621
622 return 0;
623
Jan Beulich0e345822010-08-07 18:28:55 +0200624 release:
625 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700626 out:
627 return err;
628}
629
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200630static void xlvbd_release_gendisk(struct blkfront_info *info)
631{
632 unsigned int minor, nr_minors;
633 unsigned long flags;
634
635 if (info->rq == NULL)
636 return;
637
638 spin_lock_irqsave(&blkif_io_lock, flags);
639
640 /* No more blkif_request(). */
641 blk_stop_queue(info->rq);
642
643 /* No more gnttab callback work. */
644 gnttab_cancel_free_callback(&info->callback);
645 spin_unlock_irqrestore(&blkif_io_lock, flags);
646
647 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo30d65032010-12-24 15:59:06 +0100648 flush_work_sync(&info->work);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200649
650 del_gendisk(info->gd);
651
652 minor = info->gd->first_minor;
653 nr_minors = info->gd->minors;
654 xlbd_release_minors(minor, nr_minors);
655
656 blk_cleanup_queue(info->rq);
657 info->rq = NULL;
658
659 put_disk(info->gd);
660 info->gd = NULL;
661}
662
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700663static void kick_pending_request_queues(struct blkfront_info *info)
664{
665 if (!RING_FULL(&info->ring)) {
666 /* Re-enable calldowns. */
667 blk_start_queue(info->rq);
668 /* Kick things off immediately. */
669 do_blkif_request(info->rq);
670 }
671}
672
673static void blkif_restart_queue(struct work_struct *work)
674{
675 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
676
677 spin_lock_irq(&blkif_io_lock);
678 if (info->connected == BLKIF_STATE_CONNECTED)
679 kick_pending_request_queues(info);
680 spin_unlock_irq(&blkif_io_lock);
681}
682
683static void blkif_free(struct blkfront_info *info, int suspend)
684{
685 /* Prevent new requests being issued until we fix things up. */
686 spin_lock_irq(&blkif_io_lock);
687 info->connected = suspend ?
688 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
689 /* No more blkif_request(). */
690 if (info->rq)
691 blk_stop_queue(info->rq);
692 /* No more gnttab callback work. */
693 gnttab_cancel_free_callback(&info->callback);
694 spin_unlock_irq(&blkif_io_lock);
695
696 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo30d65032010-12-24 15:59:06 +0100697 flush_work_sync(&info->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700698
699 /* Free resources associated with old device channel. */
700 if (info->ring_ref != GRANT_INVALID_REF) {
701 gnttab_end_foreign_access(info->ring_ref, 0,
702 (unsigned long)info->ring.sring);
703 info->ring_ref = GRANT_INVALID_REF;
704 info->ring.sring = NULL;
705 }
706 if (info->irq)
707 unbind_from_irqhandler(info->irq, info);
708 info->evtchn = info->irq = 0;
709
710}
711
712static void blkif_completion(struct blk_shadow *s)
713{
714 int i;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400715 /* Do not let BLKIF_OP_DISCARD as nr_segment is in the same place
716 * flag. */
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400717 for (i = 0; i < s->req.u.rw.nr_segments; i++)
Owen Smith51de6952010-12-22 15:05:00 +0000718 gnttab_end_foreign_access(s->req.u.rw.seg[i].gref, 0, 0UL);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700719}
720
721static irqreturn_t blkif_interrupt(int irq, void *dev_id)
722{
723 struct request *req;
724 struct blkif_response *bret;
725 RING_IDX i, rp;
726 unsigned long flags;
727 struct blkfront_info *info = (struct blkfront_info *)dev_id;
Kiyoshi Uedaf530f0362007-12-11 17:47:36 -0500728 int error;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700729
730 spin_lock_irqsave(&blkif_io_lock, flags);
731
732 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
733 spin_unlock_irqrestore(&blkif_io_lock, flags);
734 return IRQ_HANDLED;
735 }
736
737 again:
738 rp = info->ring.sring->rsp_prod;
739 rmb(); /* Ensure we see queued responses up to 'rp'. */
740
741 for (i = info->ring.rsp_cons; i != rp; i++) {
742 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700743
744 bret = RING_GET_RESPONSE(&info->ring, i);
745 id = bret->id;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400746 req = info->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700747
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400748 if (bret->operation != BLKIF_OP_DISCARD)
749 blkif_completion(&info->shadow[id]);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700750
751 add_id_to_freelist(info, id);
752
Kiyoshi Uedaf530f0362007-12-11 17:47:36 -0500753 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700754 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800755 case BLKIF_OP_DISCARD:
756 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
757 struct request_queue *rq = info->rq;
758 printk(KERN_WARNING "blkfront: %s: discard op failed\n",
759 info->gd->disk_name);
760 error = -EOPNOTSUPP;
761 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400762 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800763 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400764 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800765 }
766 __blk_end_request_all(req, error);
767 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400768 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700769 case BLKIF_OP_WRITE_BARRIER:
770 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400771 printk(KERN_WARNING "blkfront: %s: write %s op failed\n",
772 info->flush_op == BLKIF_OP_WRITE_BARRIER ?
773 "barrier" : "flush disk cache",
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700774 info->gd->disk_name);
Kiyoshi Uedaf530f0362007-12-11 17:47:36 -0500775 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -0400776 }
777 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400778 info->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400779 printk(KERN_WARNING "blkfront: %s: empty write %s op failed\n",
780 info->flush_op == BLKIF_OP_WRITE_BARRIER ?
781 "barrier" : "flush disk cache",
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -0400782 info->gd->disk_name);
783 error = -EOPNOTSUPP;
784 }
785 if (unlikely(error)) {
786 if (error == -EOPNOTSUPP)
787 error = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +0200788 info->feature_flush = 0;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400789 info->flush_op = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +0200790 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700791 }
792 /* fall through */
793 case BLKIF_OP_READ:
794 case BLKIF_OP_WRITE:
795 if (unlikely(bret->status != BLKIF_RSP_OKAY))
796 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
797 "request: %x\n", bret->status);
798
Tejun Heo40cbbb72009-04-23 11:05:19 +0900799 __blk_end_request_all(req, error);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700800 break;
801 default:
802 BUG();
803 }
804 }
805
806 info->ring.rsp_cons = i;
807
808 if (i != info->ring.req_prod_pvt) {
809 int more_to_do;
810 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
811 if (more_to_do)
812 goto again;
813 } else
814 info->ring.sring->rsp_event = i + 1;
815
816 kick_pending_request_queues(info);
817
818 spin_unlock_irqrestore(&blkif_io_lock, flags);
819
820 return IRQ_HANDLED;
821}
822
823
824static int setup_blkring(struct xenbus_device *dev,
825 struct blkfront_info *info)
826{
827 struct blkif_sring *sring;
828 int err;
829
830 info->ring_ref = GRANT_INVALID_REF;
831
Ian Campbella144ff02008-06-17 10:47:08 +0200832 sring = (struct blkif_sring *)__get_free_page(GFP_NOIO | __GFP_HIGH);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700833 if (!sring) {
834 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
835 return -ENOMEM;
836 }
837 SHARED_RING_INIT(sring);
838 FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE);
839
Jens Axboe9e973e62009-02-24 08:10:09 +0100840 sg_init_table(info->sg, BLKIF_MAX_SEGMENTS_PER_REQUEST);
841
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700842 err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring));
843 if (err < 0) {
844 free_page((unsigned long)sring);
845 info->ring.sring = NULL;
846 goto fail;
847 }
848 info->ring_ref = err;
849
850 err = xenbus_alloc_evtchn(dev, &info->evtchn);
851 if (err)
852 goto fail;
853
854 err = bind_evtchn_to_irqhandler(info->evtchn,
855 blkif_interrupt,
856 IRQF_SAMPLE_RANDOM, "blkif", info);
857 if (err <= 0) {
858 xenbus_dev_fatal(dev, err,
859 "bind_evtchn_to_irqhandler failed");
860 goto fail;
861 }
862 info->irq = err;
863
864 return 0;
865fail:
866 blkif_free(info, 0);
867 return err;
868}
869
870
871/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +0000872static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700873 struct blkfront_info *info)
874{
875 const char *message = NULL;
876 struct xenbus_transaction xbt;
877 int err;
878
879 /* Create shared ring, alloc event channel. */
880 err = setup_blkring(dev, info);
881 if (err)
882 goto out;
883
884again:
885 err = xenbus_transaction_start(&xbt);
886 if (err) {
887 xenbus_dev_fatal(dev, err, "starting transaction");
888 goto destroy_blkring;
889 }
890
891 err = xenbus_printf(xbt, dev->nodename,
892 "ring-ref", "%u", info->ring_ref);
893 if (err) {
894 message = "writing ring-ref";
895 goto abort_transaction;
896 }
897 err = xenbus_printf(xbt, dev->nodename,
898 "event-channel", "%u", info->evtchn);
899 if (err) {
900 message = "writing event-channel";
901 goto abort_transaction;
902 }
Markus Armbruster3e334232008-04-02 10:54:02 -0700903 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
904 XEN_IO_PROTO_ABI_NATIVE);
905 if (err) {
906 message = "writing protocol";
907 goto abort_transaction;
908 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700909
910 err = xenbus_transaction_end(xbt, 0);
911 if (err) {
912 if (err == -EAGAIN)
913 goto again;
914 xenbus_dev_fatal(dev, err, "completing transaction");
915 goto destroy_blkring;
916 }
917
918 xenbus_switch_state(dev, XenbusStateInitialised);
919
920 return 0;
921
922 abort_transaction:
923 xenbus_transaction_end(xbt, 1);
924 if (message)
925 xenbus_dev_fatal(dev, err, "%s", message);
926 destroy_blkring:
927 blkif_free(info, 0);
928 out:
929 return err;
930}
931
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700932/**
933 * Entry point to this code when a new device is created. Allocate the basic
934 * structures and the ring buffer for communication with the backend, and
935 * inform the backend of the appropriate details for those. Switch to
936 * Initialised state.
937 */
938static int blkfront_probe(struct xenbus_device *dev,
939 const struct xenbus_device_id *id)
940{
941 int err, vdevice, i;
942 struct blkfront_info *info;
943
944 /* FIXME: Use dynamic device id if this is not set. */
945 err = xenbus_scanf(XBT_NIL, dev->nodename,
946 "virtual-device", "%i", &vdevice);
947 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700948 /* go looking in the extended area instead */
949 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
950 "%i", &vdevice);
951 if (err != 1) {
952 xenbus_dev_fatal(dev, err, "reading virtual-device");
953 return err;
954 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700955 }
956
Stefano Stabellinib98a4092010-07-29 14:53:16 +0100957 if (xen_hvm_domain()) {
958 char *type;
959 int len;
960 /* no unplug has been done: do not hook devices != xen vbds */
Ian Campbell1dc7ce92010-08-23 11:59:29 +0100961 if (xen_platform_pci_unplug & XEN_UNPLUG_UNNECESSARY) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +0100962 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +0100963
Stefano Stabellinib98a4092010-07-29 14:53:16 +0100964 if (!VDEV_IS_EXTENDED(vdevice))
965 major = BLKIF_MAJOR(vdevice);
966 else
967 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +0100968
Stefano Stabellinib98a4092010-07-29 14:53:16 +0100969 if (major != XENVBD_MAJOR) {
970 printk(KERN_INFO
971 "%s: HVM does not support vbd %d as xen block device\n",
972 __FUNCTION__, vdevice);
973 return -ENODEV;
974 }
975 }
976 /* do not create a PV cdrom device if we are an HVM guest */
977 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
978 if (IS_ERR(type))
979 return -ENODEV;
980 if (strncmp(type, "cdrom", 5) == 0) {
981 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +0100982 return -ENODEV;
983 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +0100984 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +0100985 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700986 info = kzalloc(sizeof(*info), GFP_KERNEL);
987 if (!info) {
988 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
989 return -ENOMEM;
990 }
991
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000992 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700993 info->xbdev = dev;
994 info->vdevice = vdevice;
995 info->connected = BLKIF_STATE_DISCONNECTED;
996 INIT_WORK(&info->work, blkif_restart_queue);
997
998 for (i = 0; i < BLK_RING_SIZE; i++)
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400999 info->shadow[i].req.u.rw.id = i+1;
1000 info->shadow[BLK_RING_SIZE-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001001
1002 /* Front end dir is a number, which is used as the id. */
1003 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001004 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001005
Ian Campbell203fd612009-12-04 15:33:54 +00001006 err = talk_to_blkback(dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001007 if (err) {
1008 kfree(info);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001009 dev_set_drvdata(&dev->dev, NULL);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001010 return err;
1011 }
1012
1013 return 0;
1014}
1015
1016
1017static int blkif_recover(struct blkfront_info *info)
1018{
1019 int i;
1020 struct blkif_request *req;
1021 struct blk_shadow *copy;
1022 int j;
1023
1024 /* Stage 1: Make a safe copy of the shadow state. */
Ian Campbella144ff02008-06-17 10:47:08 +02001025 copy = kmalloc(sizeof(info->shadow),
1026 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001027 if (!copy)
1028 return -ENOMEM;
1029 memcpy(copy, info->shadow, sizeof(info->shadow));
1030
1031 /* Stage 2: Set up free list. */
1032 memset(&info->shadow, 0, sizeof(info->shadow));
1033 for (i = 0; i < BLK_RING_SIZE; i++)
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001034 info->shadow[i].req.u.rw.id = i+1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001035 info->shadow_free = info->ring.req_prod_pvt;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001036 info->shadow[BLK_RING_SIZE-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001037
1038 /* Stage 3: Find pending requests and requeue them. */
1039 for (i = 0; i < BLK_RING_SIZE; i++) {
1040 /* Not in use? */
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001041 if (!copy[i].request)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001042 continue;
1043
1044 /* Grab a request slot and copy shadow state into it. */
1045 req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
1046 *req = copy[i].req;
1047
1048 /* We get a new request id, and must reset the shadow state. */
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001049 req->u.rw.id = get_id_from_freelist(info);
1050 memcpy(&info->shadow[req->u.rw.id], &copy[i], sizeof(copy[i]));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001051
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001052 if (req->operation != BLKIF_OP_DISCARD) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001053 /* Rewrite any grant references invalidated by susp/resume. */
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001054 for (j = 0; j < req->u.rw.nr_segments; j++)
1055 gnttab_grant_foreign_access_ref(
1056 req->u.rw.seg[j].gref,
1057 info->xbdev->otherend_id,
1058 pfn_to_mfn(info->shadow[req->u.rw.id].frame[j]),
1059 rq_data_dir(info->shadow[req->u.rw.id].request));
1060 }
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001061 info->shadow[req->u.rw.id].req = *req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001062
1063 info->ring.req_prod_pvt++;
1064 }
1065
1066 kfree(copy);
1067
1068 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1069
1070 spin_lock_irq(&blkif_io_lock);
1071
1072 /* Now safe for us to use the shared ring */
1073 info->connected = BLKIF_STATE_CONNECTED;
1074
1075 /* Send off requeued requests */
1076 flush_requests(info);
1077
1078 /* Kick any other new requests queued since we resumed */
1079 kick_pending_request_queues(info);
1080
1081 spin_unlock_irq(&blkif_io_lock);
1082
1083 return 0;
1084}
1085
1086/**
1087 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1088 * driver restart. We tear down our blkif structure and recreate it, but
1089 * leave the device-layer structures intact so that this is transparent to the
1090 * rest of the kernel.
1091 */
1092static int blkfront_resume(struct xenbus_device *dev)
1093{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001094 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001095 int err;
1096
1097 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
1098
1099 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
1100
Ian Campbell203fd612009-12-04 15:33:54 +00001101 err = talk_to_blkback(dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001102 if (info->connected == BLKIF_STATE_SUSPENDED && !err)
1103 err = blkif_recover(info);
1104
1105 return err;
1106}
1107
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001108static void
1109blkfront_closing(struct blkfront_info *info)
1110{
1111 struct xenbus_device *xbdev = info->xbdev;
1112 struct block_device *bdev = NULL;
1113
1114 mutex_lock(&info->mutex);
1115
1116 if (xbdev->state == XenbusStateClosing) {
1117 mutex_unlock(&info->mutex);
1118 return;
1119 }
1120
1121 if (info->gd)
1122 bdev = bdget_disk(info->gd, 0);
1123
1124 mutex_unlock(&info->mutex);
1125
1126 if (!bdev) {
1127 xenbus_frontend_closed(xbdev);
1128 return;
1129 }
1130
1131 mutex_lock(&bdev->bd_mutex);
1132
Daniel Stodden7b32d102010-04-30 22:01:23 +00001133 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001134 xenbus_dev_error(xbdev, -EBUSY,
1135 "Device in use; refusing to close");
1136 xenbus_switch_state(xbdev, XenbusStateClosing);
1137 } else {
1138 xlvbd_release_gendisk(info);
1139 xenbus_frontend_closed(xbdev);
1140 }
1141
1142 mutex_unlock(&bdev->bd_mutex);
1143 bdput(bdev);
1144}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001145
Li Dongyanged30bf32011-09-01 18:39:09 +08001146static void blkfront_setup_discard(struct blkfront_info *info)
1147{
1148 int err;
1149 char *type;
1150 unsigned int discard_granularity;
1151 unsigned int discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001152 unsigned int discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08001153
1154 type = xenbus_read(XBT_NIL, info->xbdev->otherend, "type", NULL);
1155 if (IS_ERR(type))
1156 return;
1157
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001158 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001159 if (strncmp(type, "phy", 3) == 0) {
1160 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1161 "discard-granularity", "%u", &discard_granularity,
1162 "discard-alignment", "%u", &discard_alignment,
1163 NULL);
1164 if (!err) {
1165 info->feature_discard = 1;
1166 info->discard_granularity = discard_granularity;
1167 info->discard_alignment = discard_alignment;
1168 }
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001169 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1170 "discard-secure", "%d", &discard_secure,
1171 NULL);
1172 if (!err)
1173 info->feature_secdiscard = discard_secure;
1174
Li Dongyanged30bf32011-09-01 18:39:09 +08001175 } else if (strncmp(type, "file", 4) == 0)
1176 info->feature_discard = 1;
1177
1178 kfree(type);
1179}
1180
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001181/*
1182 * Invoked when the backend is finally 'ready' (and has told produced
1183 * the details about the physical device - #sectors, size, etc).
1184 */
1185static void blkfront_connect(struct blkfront_info *info)
1186{
1187 unsigned long long sectors;
1188 unsigned long sector_size;
1189 unsigned int binfo;
1190 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08001191 int barrier, flush, discard;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001192
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001193 switch (info->connected) {
1194 case BLKIF_STATE_CONNECTED:
1195 /*
1196 * Potentially, the back-end may be signalling
1197 * a capacity change; update the capacity.
1198 */
1199 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1200 "sectors", "%Lu", &sectors);
1201 if (XENBUS_EXIST_ERR(err))
1202 return;
1203 printk(KERN_INFO "Setting capacity to %Lu\n",
1204 sectors);
1205 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07001206 revalidate_disk(info->gd);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001207
1208 /* fall through */
1209 case BLKIF_STATE_SUSPENDED:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001210 return;
1211
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08001212 default:
1213 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001214 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001215
1216 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
1217 __func__, info->xbdev->otherend);
1218
1219 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1220 "sectors", "%llu", &sectors,
1221 "info", "%u", &binfo,
1222 "sector-size", "%lu", &sector_size,
1223 NULL);
1224 if (err) {
1225 xenbus_dev_fatal(info->xbdev, err,
1226 "reading backend fields at %s",
1227 info->xbdev->otherend);
1228 return;
1229 }
1230
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001231 info->feature_flush = 0;
1232 info->flush_op = 0;
1233
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001234 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
Marek Marczykowski4352b472011-05-03 12:04:52 -04001235 "feature-barrier", "%d", &barrier,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001236 NULL);
Jeremy Fitzhardinge7901d142010-07-28 10:49:29 -07001237
1238 /*
1239 * If there's no "feature-barrier" defined, then it means
1240 * we're dealing with a very old backend which writes
Tejun Heo4913efe2010-09-03 11:56:16 +02001241 * synchronously; nothing to do.
Jeremy Fitzhardinge7901d142010-07-28 10:49:29 -07001242 *
Tejun Heo6958f142010-09-03 11:56:16 +02001243 * If there are barriers, then we use flush.
Jeremy Fitzhardinge7901d142010-07-28 10:49:29 -07001244 */
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001245 if (!err && barrier) {
Jeremy Fitzhardingebe2f8372010-11-02 10:38:33 -04001246 info->feature_flush = REQ_FLUSH | REQ_FUA;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001247 info->flush_op = BLKIF_OP_WRITE_BARRIER;
1248 }
1249 /*
1250 * And if there is "feature-flush-cache" use that above
1251 * barriers.
1252 */
1253 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1254 "feature-flush-cache", "%d", &flush,
1255 NULL);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001256
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001257 if (!err && flush) {
1258 info->feature_flush = REQ_FLUSH;
1259 info->flush_op = BLKIF_OP_FLUSH_DISKCACHE;
1260 }
Li Dongyanged30bf32011-09-01 18:39:09 +08001261
1262 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1263 "feature-discard", "%d", &discard,
1264 NULL);
1265
1266 if (!err && discard)
1267 blkfront_setup_discard(info);
1268
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001269 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001270 if (err) {
1271 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
1272 info->xbdev->otherend);
1273 return;
1274 }
1275
1276 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1277
1278 /* Kick pending requests. */
1279 spin_lock_irq(&blkif_io_lock);
1280 info->connected = BLKIF_STATE_CONNECTED;
1281 kick_pending_request_queues(info);
1282 spin_unlock_irq(&blkif_io_lock);
1283
1284 add_disk(info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07001285
1286 info->is_ready = 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001287}
1288
1289/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001290 * Callback received when the backend's state changes.
1291 */
Ian Campbell203fd612009-12-04 15:33:54 +00001292static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001293 enum xenbus_state backend_state)
1294{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001295 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001296
Ian Campbell203fd612009-12-04 15:33:54 +00001297 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001298
1299 switch (backend_state) {
1300 case XenbusStateInitialising:
1301 case XenbusStateInitWait:
1302 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04001303 case XenbusStateReconfiguring:
1304 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001305 case XenbusStateUnknown:
1306 case XenbusStateClosed:
1307 break;
1308
1309 case XenbusStateConnected:
1310 blkfront_connect(info);
1311 break;
1312
1313 case XenbusStateClosing:
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001314 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001315 break;
1316 }
1317}
1318
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001319static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001320{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001321 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
1322 struct block_device *bdev = NULL;
1323 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001324
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001325 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001326
1327 blkif_free(info, 0);
1328
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001329 mutex_lock(&info->mutex);
1330
1331 disk = info->gd;
1332 if (disk)
1333 bdev = bdget_disk(disk, 0);
1334
1335 info->xbdev = NULL;
1336 mutex_unlock(&info->mutex);
1337
1338 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02001339 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001340 return 0;
1341 }
1342
1343 /*
1344 * The xbdev was removed before we reached the Closed
1345 * state. See if it's safe to remove the disk. If the bdev
1346 * isn't closed yet, we let release take care of it.
1347 */
1348
1349 mutex_lock(&bdev->bd_mutex);
1350 info = disk->private_data;
1351
Daniel Stoddend54142c2010-08-07 18:51:21 +02001352 dev_warn(disk_to_dev(disk),
1353 "%s was hot-unplugged, %d stale handles\n",
1354 xbdev->nodename, bdev->bd_openers);
1355
Daniel Stodden7b32d102010-04-30 22:01:23 +00001356 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001357 xlvbd_release_gendisk(info);
1358 disk->private_data = NULL;
1359 kfree(info);
1360 }
1361
1362 mutex_unlock(&bdev->bd_mutex);
1363 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001364
1365 return 0;
1366}
1367
Christian Limpach1d78d702008-04-02 10:54:04 -07001368static int blkfront_is_ready(struct xenbus_device *dev)
1369{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001370 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07001371
Jan Beulich5d7ed202010-08-07 18:31:12 +02001372 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07001373}
1374
Al Viroa63c8482008-03-02 10:23:47 -05001375static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001376{
Daniel Stodden13961742010-08-07 18:36:53 +02001377 struct gendisk *disk = bdev->bd_disk;
1378 struct blkfront_info *info;
1379 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001380
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001381 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001382
Daniel Stodden13961742010-08-07 18:36:53 +02001383 info = disk->private_data;
1384 if (!info) {
1385 /* xbdev gone */
1386 err = -ERESTARTSYS;
1387 goto out;
1388 }
1389
1390 mutex_lock(&info->mutex);
1391
1392 if (!info->gd)
1393 /* xbdev is closed */
1394 err = -ERESTARTSYS;
1395
1396 mutex_unlock(&info->mutex);
1397
Daniel Stodden13961742010-08-07 18:36:53 +02001398out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001399 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02001400 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001401}
1402
Al Viroa63c8482008-03-02 10:23:47 -05001403static int blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001404{
Al Viroa63c8482008-03-02 10:23:47 -05001405 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001406 struct block_device *bdev;
1407 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001408
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001409 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001410
1411 bdev = bdget_disk(disk, 0);
1412 bdput(bdev);
1413
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02001414 if (bdev->bd_openers)
1415 goto out;
1416
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001417 /*
1418 * Check if we have been instructed to close. We will have
1419 * deferred this request, because the bdev was still open.
1420 */
1421
1422 mutex_lock(&info->mutex);
1423 xbdev = info->xbdev;
1424
1425 if (xbdev && xbdev->state == XenbusStateClosing) {
1426 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02001427 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001428 xlvbd_release_gendisk(info);
1429 xenbus_frontend_closed(info->xbdev);
1430 }
1431
1432 mutex_unlock(&info->mutex);
1433
1434 if (!xbdev) {
1435 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02001436 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001437 xlvbd_release_gendisk(info);
1438 disk->private_data = NULL;
1439 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001440 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001441
Jens Axboea4cc14e2010-08-08 21:50:05 -04001442out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001443 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001444 return 0;
1445}
1446
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001447static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001448{
1449 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05001450 .open = blkif_open,
1451 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08001452 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001453 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001454};
1455
1456
Márton Némethec9c42e2010-01-10 13:39:52 +01001457static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001458 { "vbd" },
1459 { "" }
1460};
1461
Jan Beulich73db1442011-12-22 09:08:13 +00001462static DEFINE_XENBUS_DRIVER(blkfront, ,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001463 .probe = blkfront_probe,
1464 .remove = blkfront_remove,
1465 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00001466 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07001467 .is_ready = blkfront_is_ready,
Jan Beulich73db1442011-12-22 09:08:13 +00001468);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001469
1470static int __init xlblk_init(void)
1471{
Laszlo Ersek469738e2011-10-07 21:34:38 +02001472 int ret;
1473
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001474 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001475 return -ENODEV;
1476
1477 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
1478 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
1479 XENVBD_MAJOR, DEV_NAME);
1480 return -ENODEV;
1481 }
1482
Jan Beulich73db1442011-12-22 09:08:13 +00001483 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02001484 if (ret) {
1485 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
1486 return ret;
1487 }
1488
1489 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001490}
1491module_init(xlblk_init);
1492
1493
Jan Beulich5a60d0c2008-06-17 10:47:08 +02001494static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001495{
Jan Beulich73db1442011-12-22 09:08:13 +00001496 return xenbus_unregister_driver(&blkfront_driver);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001497}
1498module_exit(xlblk_exit);
1499
1500MODULE_DESCRIPTION("Xen virtual block device frontend");
1501MODULE_LICENSE("GPL");
1502MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07001503MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07001504MODULE_ALIAS("xenblk");