blob: 429d5264094095d331fa4a7a95ccbcf6bf1a129a [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>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010047#include <linux/list.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070048
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070049#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070050#include <xen/xenbus.h>
51#include <xen/grant_table.h>
52#include <xen/events.h>
53#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010054#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070055
56#include <xen/interface/grant_table.h>
57#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070058#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070059
60#include <asm/xen/hypervisor.h>
61
62enum blkif_state {
63 BLKIF_STATE_DISCONNECTED,
64 BLKIF_STATE_CONNECTED,
65 BLKIF_STATE_SUSPENDED,
66};
67
Roger Pau Monne0a8704a52012-10-24 18:58:45 +020068struct grant {
69 grant_ref_t gref;
70 unsigned long pfn;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010071 struct list_head node;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +020072};
73
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070074struct blk_shadow {
75 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040076 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020077 struct grant **grants_used;
78 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +020079 struct scatterlist *sg;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020080};
81
82struct split_bio {
83 struct bio *bio;
84 atomic_t pending;
85 int err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070086};
87
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020088static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -070089static const struct block_device_operations xlvbd_block_fops;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070090
Roger Pau Monne402b27f2013-04-18 16:06:54 +020091/*
92 * Maximum number of segments in indirect requests, the actual value used by
93 * the frontend driver is the minimum of this value and the value provided
94 * by the backend driver.
95 */
96
97static unsigned int xen_blkif_max_segments = 32;
Konrad Rzeszutek Wilk2d5dc3b2013-05-15 10:39:34 -040098module_param_named(max, xen_blkif_max_segments, int, S_IRUGO);
99MODULE_PARM_DESC(max, "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200100
Jeremy Fitzhardinge667c78af2010-12-08 12:39:12 -0800101#define BLK_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700102
103/*
104 * We have one of these per vbd, whether ide, scsi or 'other'. They
105 * hang in private_data off the gendisk structure. We may end up
106 * putting all kinds of interesting stuff here :-)
107 */
108struct blkfront_info
109{
Steven Noonan34678112012-02-17 12:04:44 -0800110 spinlock_t io_lock;
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000111 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700112 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700113 struct gendisk *gd;
114 int vdevice;
115 blkif_vdev_t handle;
116 enum blkif_state connected;
117 int ring_ref;
118 struct blkif_front_ring ring;
119 unsigned int evtchn, irq;
120 struct request_queue *rq;
121 struct work_struct work;
122 struct gnttab_free_callback callback;
123 struct blk_shadow shadow[BLK_RING_SIZE];
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100124 struct list_head persistent_gnts;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200125 unsigned int persistent_gnts_c;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700126 unsigned long shadow_free;
Tejun Heo4913efe2010-09-03 11:56:16 +0200127 unsigned int feature_flush;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400128 unsigned int flush_op;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400129 unsigned int feature_discard:1;
130 unsigned int feature_secdiscard:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800131 unsigned int discard_granularity;
132 unsigned int discard_alignment;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200133 unsigned int feature_persistent:1;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200134 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700135 int is_ready;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700136};
137
Jan Beulich0e345822010-08-07 18:28:55 +0200138static unsigned int nr_minors;
139static unsigned long *minors;
140static DEFINE_SPINLOCK(minor_lock);
141
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700142#define MAXIMUM_OUTSTANDING_BLOCK_REQS \
143 (BLKIF_MAX_SEGMENTS_PER_REQUEST * BLK_RING_SIZE)
144#define GRANT_INVALID_REF 0
145
146#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700147#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700148
149#define BLKIF_MAJOR(dev) ((dev)>>8)
150#define BLKIF_MINOR(dev) ((dev) & 0xff)
151
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700152#define EXT_SHIFT 28
153#define EXTENDED (1<<EXT_SHIFT)
154#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
155#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000156#define EMULATED_HD_DISK_MINOR_OFFSET (0)
157#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200158#define EMULATED_SD_DISK_MINOR_OFFSET (0)
159#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700160
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700161#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700162
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200163#define SEGS_PER_INDIRECT_FRAME \
164 (PAGE_SIZE/sizeof(struct blkif_request_segment_aligned))
165#define INDIRECT_GREFS(_segs) \
166 ((_segs + SEGS_PER_INDIRECT_FRAME - 1)/SEGS_PER_INDIRECT_FRAME)
167
168static int blkfront_setup_indirect(struct blkfront_info *info);
169
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700170static int get_id_from_freelist(struct blkfront_info *info)
171{
172 unsigned long free = info->shadow_free;
Roel Kluinb9ed7252009-05-22 09:25:32 +0200173 BUG_ON(free >= BLK_RING_SIZE);
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400174 info->shadow_free = info->shadow[free].req.u.rw.id;
175 info->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700176 return free;
177}
178
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400179static int add_id_to_freelist(struct blkfront_info *info,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700180 unsigned long id)
181{
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400182 if (info->shadow[id].req.u.rw.id != id)
183 return -EINVAL;
184 if (info->shadow[id].request == NULL)
185 return -EINVAL;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400186 info->shadow[id].req.u.rw.id = info->shadow_free;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400187 info->shadow[id].request = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700188 info->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400189 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700190}
191
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100192static int fill_grant_buffer(struct blkfront_info *info, int num)
193{
194 struct page *granted_page;
195 struct grant *gnt_list_entry, *n;
196 int i = 0;
197
198 while(i < num) {
199 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
200 if (!gnt_list_entry)
201 goto out_of_memory;
202
203 granted_page = alloc_page(GFP_NOIO);
204 if (!granted_page) {
205 kfree(gnt_list_entry);
206 goto out_of_memory;
207 }
208
209 gnt_list_entry->pfn = page_to_pfn(granted_page);
210 gnt_list_entry->gref = GRANT_INVALID_REF;
211 list_add(&gnt_list_entry->node, &info->persistent_gnts);
212 i++;
213 }
214
215 return 0;
216
217out_of_memory:
218 list_for_each_entry_safe(gnt_list_entry, n,
219 &info->persistent_gnts, node) {
220 list_del(&gnt_list_entry->node);
221 __free_page(pfn_to_page(gnt_list_entry->pfn));
222 kfree(gnt_list_entry);
223 i--;
224 }
225 BUG_ON(i != 0);
226 return -ENOMEM;
227}
228
229static struct grant *get_grant(grant_ref_t *gref_head,
230 struct blkfront_info *info)
231{
232 struct grant *gnt_list_entry;
233 unsigned long buffer_mfn;
234
235 BUG_ON(list_empty(&info->persistent_gnts));
236 gnt_list_entry = list_first_entry(&info->persistent_gnts, struct grant,
237 node);
238 list_del(&gnt_list_entry->node);
239
240 if (gnt_list_entry->gref != GRANT_INVALID_REF) {
241 info->persistent_gnts_c--;
242 return gnt_list_entry;
243 }
244
245 /* Assign a gref to this page */
246 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
247 BUG_ON(gnt_list_entry->gref == -ENOSPC);
248 buffer_mfn = pfn_to_mfn(gnt_list_entry->pfn);
249 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
250 info->xbdev->otherend_id,
251 buffer_mfn, 0);
252 return gnt_list_entry;
253}
254
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400255static const char *op_name(int op)
256{
257 static const char *const names[] = {
258 [BLKIF_OP_READ] = "read",
259 [BLKIF_OP_WRITE] = "write",
260 [BLKIF_OP_WRITE_BARRIER] = "barrier",
261 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
262 [BLKIF_OP_DISCARD] = "discard" };
263
264 if (op < 0 || op >= ARRAY_SIZE(names))
265 return "unknown";
266
267 if (!names[op])
268 return "reserved";
269
270 return names[op];
271}
Jan Beulich0e345822010-08-07 18:28:55 +0200272static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
273{
274 unsigned int end = minor + nr;
275 int rc;
276
277 if (end > nr_minors) {
278 unsigned long *bitmap, *old;
279
Thomas Meyerf0941482011-11-29 22:08:00 +0100280 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200281 GFP_KERNEL);
282 if (bitmap == NULL)
283 return -ENOMEM;
284
285 spin_lock(&minor_lock);
286 if (end > nr_minors) {
287 old = minors;
288 memcpy(bitmap, minors,
289 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
290 minors = bitmap;
291 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
292 } else
293 old = bitmap;
294 spin_unlock(&minor_lock);
295 kfree(old);
296 }
297
298 spin_lock(&minor_lock);
299 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900300 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200301 rc = 0;
302 } else
303 rc = -EBUSY;
304 spin_unlock(&minor_lock);
305
306 return rc;
307}
308
309static void xlbd_release_minors(unsigned int minor, unsigned int nr)
310{
311 unsigned int end = minor + nr;
312
313 BUG_ON(end > nr_minors);
314 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900315 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200316 spin_unlock(&minor_lock);
317}
318
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700319static void blkif_restart_queue_callback(void *arg)
320{
321 struct blkfront_info *info = (struct blkfront_info *)arg;
322 schedule_work(&info->work);
323}
324
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700325static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800326{
327 /* We don't have real geometry info, but let's at least return
328 values consistent with the size of the device */
329 sector_t nsect = get_capacity(bd->bd_disk);
330 sector_t cylinders = nsect;
331
332 hg->heads = 0xff;
333 hg->sectors = 0x3f;
334 sector_div(cylinders, hg->heads * hg->sectors);
335 hg->cylinders = cylinders;
336 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
337 hg->cylinders = 0xffff;
338 return 0;
339}
340
Al Viroa63c8482008-03-02 10:23:47 -0500341static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa00542008-08-04 11:59:05 +0200342 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200343{
Al Viroa63c8482008-03-02 10:23:47 -0500344 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200345 int i;
346
347 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
348 command, (long)argument);
349
350 switch (command) {
351 case CDROMMULTISESSION:
352 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
353 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
354 if (put_user(0, (char __user *)(argument + i)))
355 return -EFAULT;
356 return 0;
357
358 case CDROM_GET_CAPABILITY: {
359 struct gendisk *gd = info->gd;
360 if (gd->flags & GENHD_FL_CD)
361 return 0;
362 return -EINVAL;
363 }
364
365 default:
366 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
367 command);*/
368 return -EINVAL; /* same return as native Linux */
369 }
370
371 return 0;
372}
373
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700374/*
Jeremy Fitzhardingec64e38e2010-11-01 14:32:27 -0400375 * Generate a Xen blkfront IO request from a blk layer request. Reads
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400376 * and writes are handled as expected.
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700377 *
Jeremy Fitzhardingec64e38e2010-11-01 14:32:27 -0400378 * @req: a request struct
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700379 */
380static int blkif_queue_request(struct request *req)
381{
382 struct blkfront_info *info = req->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700383 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700384 unsigned long id;
385 unsigned int fsect, lsect;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200386 int i, ref, n;
387 struct blkif_request_segment_aligned *segments = NULL;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200388
389 /*
390 * Used to store if we are able to queue the request by just using
391 * existing persistent grants, or if we have to get new grants,
392 * as there are not sufficiently many free.
393 */
394 bool new_persistent_gnts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700395 grant_ref_t gref_head;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200396 struct grant *gnt_list_entry = NULL;
Jens Axboe9e973e62009-02-24 08:10:09 +0100397 struct scatterlist *sg;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200398 int nseg, max_grefs;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700399
400 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
401 return 1;
402
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200403 max_grefs = info->max_indirect_segments ?
404 info->max_indirect_segments +
405 INDIRECT_GREFS(info->max_indirect_segments) :
406 BLKIF_MAX_SEGMENTS_PER_REQUEST;
407
408 /* Check if we have enough grants to allocate a requests */
409 if (info->persistent_gnts_c < max_grefs) {
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200410 new_persistent_gnts = 1;
411 if (gnttab_alloc_grant_references(
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200412 max_grefs - info->persistent_gnts_c,
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200413 &gref_head) < 0) {
414 gnttab_request_free_callback(
415 &info->callback,
416 blkif_restart_queue_callback,
417 info,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200418 max_grefs);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200419 return 1;
420 }
421 } else
422 new_persistent_gnts = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700423
424 /* Fill out a communications ring structure. */
425 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
426 id = get_id_from_freelist(info);
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400427 info->shadow[id].request = req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700428
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400429 if (unlikely(req->cmd_flags & (REQ_DISCARD | REQ_SECURE))) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800430 ring_req->operation = BLKIF_OP_DISCARD;
Li Dongyanged30bf32011-09-01 18:39:09 +0800431 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200432 ring_req->u.discard.id = id;
433 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400434 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
435 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
436 else
437 ring_req->u.discard.flag = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800438 } else {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200439 BUG_ON(info->max_indirect_segments == 0 &&
440 req->nr_phys_segments > BLKIF_MAX_SEGMENTS_PER_REQUEST);
441 BUG_ON(info->max_indirect_segments &&
442 req->nr_phys_segments > info->max_indirect_segments);
Roger Pau Monneb7649152013-05-02 10:58:50 +0200443 nseg = blk_rq_map_sg(req->q, req, info->shadow[id].sg);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200444 ring_req->u.rw.id = id;
445 if (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST) {
446 /*
447 * The indirect operation can only be a BLKIF_OP_READ or
448 * BLKIF_OP_WRITE
449 */
450 BUG_ON(req->cmd_flags & (REQ_FLUSH | REQ_FUA));
451 ring_req->operation = BLKIF_OP_INDIRECT;
452 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
453 BLKIF_OP_WRITE : BLKIF_OP_READ;
454 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
455 ring_req->u.indirect.handle = info->handle;
456 ring_req->u.indirect.nr_segments = nseg;
457 } else {
458 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
459 ring_req->u.rw.handle = info->handle;
460 ring_req->operation = rq_data_dir(req) ?
461 BLKIF_OP_WRITE : BLKIF_OP_READ;
462 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA)) {
463 /*
464 * Ideally we can do an unordered flush-to-disk. In case the
465 * backend onlysupports barriers, use that. A barrier request
466 * a superset of FUA, so we can implement it the same
467 * way. (It's also a FLUSH+FUA, since it is
468 * guaranteed ordered WRT previous writes.)
469 */
470 ring_req->operation = info->flush_op;
471 }
472 ring_req->u.rw.nr_segments = nseg;
473 }
Roger Pau Monneb7649152013-05-02 10:58:50 +0200474 for_each_sg(info->shadow[id].sg, sg, nseg, i) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800475 fsect = sg->offset >> 9;
476 lsect = fsect + (sg->length >> 9) - 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700477
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200478 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
479 (i % SEGS_PER_INDIRECT_FRAME == 0)) {
480 if (segments)
481 kunmap_atomic(segments);
482
483 n = i / SEGS_PER_INDIRECT_FRAME;
484 gnt_list_entry = get_grant(&gref_head, info);
485 info->shadow[id].indirect_grants[n] = gnt_list_entry;
486 segments = kmap_atomic(pfn_to_page(gnt_list_entry->pfn));
487 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
488 }
489
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100490 gnt_list_entry = get_grant(&gref_head, info);
491 ref = gnt_list_entry->gref;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200492
493 info->shadow[id].grants_used[i] = gnt_list_entry;
494
495 if (rq_data_dir(req)) {
496 char *bvec_data;
497 void *shared_data;
498
499 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
500
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200501 shared_data = kmap_atomic(pfn_to_page(gnt_list_entry->pfn));
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200502 bvec_data = kmap_atomic(sg_page(sg));
503
504 /*
505 * this does not wipe data stored outside the
506 * range sg->offset..sg->offset+sg->length.
507 * Therefore, blkback *could* see data from
508 * previous requests. This is OK as long as
509 * persistent grants are shared with just one
510 * domain. It may need refactoring if this
511 * changes
512 */
513 memcpy(shared_data + sg->offset,
514 bvec_data + sg->offset,
515 sg->length);
516
517 kunmap_atomic(bvec_data);
518 kunmap_atomic(shared_data);
519 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200520 if (ring_req->operation != BLKIF_OP_INDIRECT) {
521 ring_req->u.rw.seg[i] =
522 (struct blkif_request_segment) {
523 .gref = ref,
524 .first_sect = fsect,
525 .last_sect = lsect };
526 } else {
527 n = i % SEGS_PER_INDIRECT_FRAME;
528 segments[n] =
529 (struct blkif_request_segment_aligned) {
530 .gref = ref,
531 .first_sect = fsect,
532 .last_sect = lsect };
533 }
Li Dongyanged30bf32011-09-01 18:39:09 +0800534 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200535 if (segments)
536 kunmap_atomic(segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700537 }
538
539 info->ring.req_prod_pvt++;
540
541 /* Keep a private copy so we can reissue requests when recovering. */
542 info->shadow[id].req = *ring_req;
543
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200544 if (new_persistent_gnts)
545 gnttab_free_grant_references(gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700546
547 return 0;
548}
549
550
551static inline void flush_requests(struct blkfront_info *info)
552{
553 int notify;
554
555 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
556
557 if (notify)
558 notify_remote_via_irq(info->irq);
559}
560
561/*
562 * do_blkif_request
563 * read a block; request is in a request queue
564 */
Jens Axboe165125e2007-07-24 09:28:11 +0200565static void do_blkif_request(struct request_queue *rq)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700566{
567 struct blkfront_info *info = NULL;
568 struct request *req;
569 int queued;
570
571 pr_debug("Entered do_blkif_request\n");
572
573 queued = 0;
574
Tejun Heo9934c8c2009-05-08 11:54:16 +0900575 while ((req = blk_peek_request(rq)) != NULL) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700576 info = req->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700577
578 if (RING_FULL(&info->ring))
579 goto wait;
580
Tejun Heo9934c8c2009-05-08 11:54:16 +0900581 blk_start_request(req);
Tejun Heo296b2f62009-05-08 11:54:15 +0900582
Konrad Rzeszutek Wilkd11e6152011-09-16 15:15:14 -0400583 if ((req->cmd_type != REQ_TYPE_FS) ||
584 ((req->cmd_flags & (REQ_FLUSH | REQ_FUA)) &&
585 !info->flush_op)) {
Tejun Heo296b2f62009-05-08 11:54:15 +0900586 __blk_end_request_all(req, -EIO);
587 continue;
588 }
589
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700590 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
Tejun Heo83096eb2009-05-07 22:24:39 +0900591 "(%u/%u) buffer:%p [%s]\n",
592 req, req->cmd, (unsigned long)blk_rq_pos(req),
593 blk_rq_cur_sectors(req), blk_rq_sectors(req),
594 req->buffer, rq_data_dir(req) ? "write" : "read");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700595
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700596 if (blkif_queue_request(req)) {
597 blk_requeue_request(rq, req);
598wait:
599 /* Avoid pointless unplugs. */
600 blk_stop_queue(rq);
601 break;
602 }
603
604 queued++;
605 }
606
607 if (queued != 0)
608 flush_requests(info);
609}
610
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200611static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200612 unsigned int physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200613 unsigned int segments)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700614{
Jens Axboe165125e2007-07-24 09:28:11 +0200615 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800616 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700617
Steven Noonan34678112012-02-17 12:04:44 -0800618 rq = blk_init_queue(do_blkif_request, &info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700619 if (rq == NULL)
620 return -1;
621
Fernando Luis Vázquez Cao66d352e2008-10-27 18:45:54 +0900622 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700623
Li Dongyanged30bf32011-09-01 18:39:09 +0800624 if (info->feature_discard) {
625 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
626 blk_queue_max_discard_sectors(rq, get_capacity(gd));
627 rq->limits.discard_granularity = info->discard_granularity;
628 rq->limits.discard_alignment = info->discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400629 if (info->feature_secdiscard)
630 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800631 }
632
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700633 /* Hard sector size and max sectors impersonate the equiv. hardware. */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400634 blk_queue_logical_block_size(rq, sector_size);
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200635 blk_queue_physical_block_size(rq, physical_sector_size);
Roger Pau Monne294caaf2013-06-21 12:56:54 +0200636 blk_queue_max_hw_sectors(rq, (segments * PAGE_SIZE) / 512);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700637
638 /* Each segment in a request is up to an aligned page in size. */
639 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
640 blk_queue_max_segment_size(rq, PAGE_SIZE);
641
642 /* Ensure a merged request will fit in a single I/O ring slot. */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200643 blk_queue_max_segments(rq, segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700644
645 /* Make sure buffer addresses are sector-aligned. */
646 blk_queue_dma_alignment(rq, 511);
647
Ian Campbell1c91fe12008-06-17 10:47:08 +0200648 /* Make sure we don't use bounce buffers. */
649 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
650
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700651 gd->queue = rq;
652
653 return 0;
654}
655
656
Tejun Heo4913efe2010-09-03 11:56:16 +0200657static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700658{
Tejun Heo4913efe2010-09-03 11:56:16 +0200659 blk_queue_flush(info->rq, info->feature_flush);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200660 printk(KERN_INFO "blkfront: %s: %s: %s %s %s %s %s\n",
Tejun Heo4913efe2010-09-03 11:56:16 +0200661 info->gd->disk_name,
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400662 info->flush_op == BLKIF_OP_WRITE_BARRIER ?
663 "barrier" : (info->flush_op == BLKIF_OP_FLUSH_DISKCACHE ?
664 "flush diskcache" : "barrier or flush"),
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200665 info->feature_flush ? "enabled;" : "disabled;",
666 "persistent grants:",
667 info->feature_persistent ? "enabled;" : "disabled;",
668 "indirect descriptors:",
669 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700670}
671
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000672static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
673{
674 int major;
675 major = BLKIF_MAJOR(vdevice);
676 *minor = BLKIF_MINOR(vdevice);
677 switch (major) {
678 case XEN_IDE0_MAJOR:
679 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
680 *minor = ((*minor / 64) * PARTS_PER_DISK) +
681 EMULATED_HD_DISK_MINOR_OFFSET;
682 break;
683 case XEN_IDE1_MAJOR:
684 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
685 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
686 EMULATED_HD_DISK_MINOR_OFFSET;
687 break;
688 case XEN_SCSI_DISK0_MAJOR:
689 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
690 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
691 break;
692 case XEN_SCSI_DISK1_MAJOR:
693 case XEN_SCSI_DISK2_MAJOR:
694 case XEN_SCSI_DISK3_MAJOR:
695 case XEN_SCSI_DISK4_MAJOR:
696 case XEN_SCSI_DISK5_MAJOR:
697 case XEN_SCSI_DISK6_MAJOR:
698 case XEN_SCSI_DISK7_MAJOR:
699 *offset = (*minor / PARTS_PER_DISK) +
700 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
701 EMULATED_SD_DISK_NAME_OFFSET;
702 *minor = *minor +
703 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
704 EMULATED_SD_DISK_MINOR_OFFSET;
705 break;
706 case XEN_SCSI_DISK8_MAJOR:
707 case XEN_SCSI_DISK9_MAJOR:
708 case XEN_SCSI_DISK10_MAJOR:
709 case XEN_SCSI_DISK11_MAJOR:
710 case XEN_SCSI_DISK12_MAJOR:
711 case XEN_SCSI_DISK13_MAJOR:
712 case XEN_SCSI_DISK14_MAJOR:
713 case XEN_SCSI_DISK15_MAJOR:
714 *offset = (*minor / PARTS_PER_DISK) +
715 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
716 EMULATED_SD_DISK_NAME_OFFSET;
717 *minor = *minor +
718 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
719 EMULATED_SD_DISK_MINOR_OFFSET;
720 break;
721 case XENVBD_MAJOR:
722 *offset = *minor / PARTS_PER_DISK;
723 break;
724 default:
725 printk(KERN_WARNING "blkfront: your disk configuration is "
726 "incorrect, please use an xvd device instead\n");
727 return -ENODEV;
728 }
729 return 0;
730}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700731
Jan Beuliche77c78c2012-04-05 16:37:22 +0100732static char *encode_disk_name(char *ptr, unsigned int n)
733{
734 if (n >= 26)
735 ptr = encode_disk_name(ptr, n / 26 - 1);
736 *ptr = 'a' + n % 26;
737 return ptr + 1;
738}
739
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700740static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
741 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200742 u16 vdisk_info, u16 sector_size,
743 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700744{
745 struct gendisk *gd;
746 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000747 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700748 unsigned int offset;
749 int minor;
750 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +0100751 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700752
753 BUG_ON(info->gd != NULL);
754 BUG_ON(info->rq != NULL);
755
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700756 if ((info->vdevice>>EXT_SHIFT) > 1) {
757 /* this is above the extended range; something is wrong */
758 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
759 return -ENODEV;
760 }
761
762 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000763 err = xen_translate_vdev(info->vdevice, &minor, &offset);
764 if (err)
765 return err;
766 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700767 } else {
768 minor = BLKIF_MINOR_EXT(info->vdevice);
769 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000770 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +0200771 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000772 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
773 "emulated IDE disks,\n\t choose an xvd device name"
774 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700775 }
Jan Beuliche77c78c2012-04-05 16:37:22 +0100776 if (minor >> MINORBITS) {
777 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
778 info->vdevice, minor);
779 return -ENODEV;
780 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700781
782 if ((minor % nr_parts) == 0)
783 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700784
Jan Beulich0e345822010-08-07 18:28:55 +0200785 err = xlbd_reserve_minors(minor, nr_minors);
786 if (err)
787 goto out;
788 err = -ENODEV;
789
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700790 gd = alloc_disk(nr_minors);
791 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +0200792 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700793
Jan Beuliche77c78c2012-04-05 16:37:22 +0100794 strcpy(gd->disk_name, DEV_NAME);
795 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
796 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
797 if (nr_minors > 1)
798 *ptr = 0;
799 else
800 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
801 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700802
803 gd->major = XENVBD_MAJOR;
804 gd->first_minor = minor;
805 gd->fops = &xlvbd_block_fops;
806 gd->private_data = info;
807 gd->driverfs_dev = &(info->xbdev->dev);
808 set_capacity(gd, capacity);
809
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200810 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200811 info->max_indirect_segments ? :
812 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700813 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +0200814 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700815 }
816
817 info->rq = gd->queue;
818 info->gd = gd;
819
Tejun Heo4913efe2010-09-03 11:56:16 +0200820 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700821
822 if (vdisk_info & VDISK_READONLY)
823 set_disk_ro(gd, 1);
824
825 if (vdisk_info & VDISK_REMOVABLE)
826 gd->flags |= GENHD_FL_REMOVABLE;
827
828 if (vdisk_info & VDISK_CDROM)
829 gd->flags |= GENHD_FL_CD;
830
831 return 0;
832
Jan Beulich0e345822010-08-07 18:28:55 +0200833 release:
834 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700835 out:
836 return err;
837}
838
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200839static void xlvbd_release_gendisk(struct blkfront_info *info)
840{
841 unsigned int minor, nr_minors;
842 unsigned long flags;
843
844 if (info->rq == NULL)
845 return;
846
Steven Noonan34678112012-02-17 12:04:44 -0800847 spin_lock_irqsave(&info->io_lock, flags);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200848
849 /* No more blkif_request(). */
850 blk_stop_queue(info->rq);
851
852 /* No more gnttab callback work. */
853 gnttab_cancel_free_callback(&info->callback);
Steven Noonan34678112012-02-17 12:04:44 -0800854 spin_unlock_irqrestore(&info->io_lock, flags);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200855
856 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo43829732012-08-20 14:51:24 -0700857 flush_work(&info->work);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200858
859 del_gendisk(info->gd);
860
861 minor = info->gd->first_minor;
862 nr_minors = info->gd->minors;
863 xlbd_release_minors(minor, nr_minors);
864
865 blk_cleanup_queue(info->rq);
866 info->rq = NULL;
867
868 put_disk(info->gd);
869 info->gd = NULL;
870}
871
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700872static void kick_pending_request_queues(struct blkfront_info *info)
873{
874 if (!RING_FULL(&info->ring)) {
875 /* Re-enable calldowns. */
876 blk_start_queue(info->rq);
877 /* Kick things off immediately. */
878 do_blkif_request(info->rq);
879 }
880}
881
882static void blkif_restart_queue(struct work_struct *work)
883{
884 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
885
Steven Noonan34678112012-02-17 12:04:44 -0800886 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700887 if (info->connected == BLKIF_STATE_CONNECTED)
888 kick_pending_request_queues(info);
Steven Noonan34678112012-02-17 12:04:44 -0800889 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700890}
891
892static void blkif_free(struct blkfront_info *info, int suspend)
893{
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100894 struct grant *persistent_gnt;
895 struct grant *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200896 int i, j, segs;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200897
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700898 /* Prevent new requests being issued until we fix things up. */
Steven Noonan34678112012-02-17 12:04:44 -0800899 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700900 info->connected = suspend ?
901 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
902 /* No more blkif_request(). */
903 if (info->rq)
904 blk_stop_queue(info->rq);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200905
906 /* Remove all persistent grants */
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100907 if (!list_empty(&info->persistent_gnts)) {
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100908 list_for_each_entry_safe(persistent_gnt, n,
909 &info->persistent_gnts, node) {
910 list_del(&persistent_gnt->node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100911 if (persistent_gnt->gref != GRANT_INVALID_REF) {
912 gnttab_end_foreign_access(persistent_gnt->gref,
913 0, 0UL);
914 info->persistent_gnts_c--;
915 }
Roger Pau Monne07c540a2012-11-16 19:26:47 +0100916 __free_page(pfn_to_page(persistent_gnt->pfn));
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100917 kfree(persistent_gnt);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200918 }
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200919 }
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100920 BUG_ON(info->persistent_gnts_c != 0);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200921
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200922 for (i = 0; i < BLK_RING_SIZE; i++) {
923 /*
924 * Clear persistent grants present in requests already
925 * on the shared ring
926 */
927 if (!info->shadow[i].request)
928 goto free_shadow;
929
930 segs = info->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
931 info->shadow[i].req.u.indirect.nr_segments :
932 info->shadow[i].req.u.rw.nr_segments;
933 for (j = 0; j < segs; j++) {
934 persistent_gnt = info->shadow[i].grants_used[j];
935 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
936 __free_page(pfn_to_page(persistent_gnt->pfn));
937 kfree(persistent_gnt);
938 }
939
940 if (info->shadow[i].req.operation != BLKIF_OP_INDIRECT)
941 /*
942 * If this is not an indirect operation don't try to
943 * free indirect segments
944 */
945 goto free_shadow;
946
947 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
948 persistent_gnt = info->shadow[i].indirect_grants[j];
949 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
950 __free_page(pfn_to_page(persistent_gnt->pfn));
951 kfree(persistent_gnt);
952 }
953
954free_shadow:
955 kfree(info->shadow[i].grants_used);
956 info->shadow[i].grants_used = NULL;
957 kfree(info->shadow[i].indirect_grants);
958 info->shadow[i].indirect_grants = NULL;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200959 kfree(info->shadow[i].sg);
960 info->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200961 }
962
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700963 /* No more gnttab callback work. */
964 gnttab_cancel_free_callback(&info->callback);
Steven Noonan34678112012-02-17 12:04:44 -0800965 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700966
967 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo43829732012-08-20 14:51:24 -0700968 flush_work(&info->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700969
970 /* Free resources associated with old device channel. */
971 if (info->ring_ref != GRANT_INVALID_REF) {
972 gnttab_end_foreign_access(info->ring_ref, 0,
973 (unsigned long)info->ring.sring);
974 info->ring_ref = GRANT_INVALID_REF;
975 info->ring.sring = NULL;
976 }
977 if (info->irq)
978 unbind_from_irqhandler(info->irq, info);
979 info->evtchn = info->irq = 0;
980
981}
982
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200983static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info,
984 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700985{
Roger Pau Monned62f6912012-12-07 19:00:31 +0100986 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200987 struct scatterlist *sg;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200988 char *bvec_data;
989 void *shared_data;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200990 int nseg;
991
992 nseg = s->req.operation == BLKIF_OP_INDIRECT ?
993 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +0200994
995 if (bret->operation == BLKIF_OP_READ) {
996 /*
997 * Copy the data received from the backend into the bvec.
998 * Since bv_offset can be different than 0, and bv_len different
999 * than PAGE_SIZE, we have to keep track of the current offset,
1000 * to be sure we are copying the data from the right shared page.
1001 */
Roger Pau Monneb7649152013-05-02 10:58:50 +02001002 for_each_sg(s->sg, sg, nseg, i) {
1003 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001004 shared_data = kmap_atomic(
1005 pfn_to_page(s->grants_used[i]->pfn));
Roger Pau Monneb7649152013-05-02 10:58:50 +02001006 bvec_data = kmap_atomic(sg_page(sg));
1007 memcpy(bvec_data + sg->offset,
1008 shared_data + sg->offset,
1009 sg->length);
1010 kunmap_atomic(bvec_data);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001011 kunmap_atomic(shared_data);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001012 }
1013 }
1014 /* Add the persistent grant into the list of free grants */
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001015 for (i = 0; i < nseg; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001016 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1017 /*
1018 * If the grant is still mapped by the backend (the
1019 * backend has chosen to make this grant persistent)
1020 * we add it at the head of the list, so it will be
1021 * reused first.
1022 */
1023 list_add(&s->grants_used[i]->node, &info->persistent_gnts);
1024 info->persistent_gnts_c++;
1025 } else {
1026 /*
1027 * If the grant is not mapped by the backend we end the
1028 * foreign access and add it to the tail of the list,
1029 * so it will not be picked again unless we run out of
1030 * persistent grants.
1031 */
1032 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1033 s->grants_used[i]->gref = GRANT_INVALID_REF;
1034 list_add_tail(&s->grants_used[i]->node, &info->persistent_gnts);
1035 }
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001036 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001037 if (s->req.operation == BLKIF_OP_INDIRECT) {
1038 for (i = 0; i < INDIRECT_GREFS(nseg); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001039 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
1040 list_add(&s->indirect_grants[i]->node, &info->persistent_gnts);
1041 info->persistent_gnts_c++;
1042 } else {
1043 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
1044 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
1045 list_add_tail(&s->indirect_grants[i]->node,
1046 &info->persistent_gnts);
1047 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001048 }
1049 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001050}
1051
1052static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1053{
1054 struct request *req;
1055 struct blkif_response *bret;
1056 RING_IDX i, rp;
1057 unsigned long flags;
1058 struct blkfront_info *info = (struct blkfront_info *)dev_id;
Kiyoshi Uedaf530f0362007-12-11 17:47:36 -05001059 int error;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001060
Steven Noonan34678112012-02-17 12:04:44 -08001061 spin_lock_irqsave(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001062
1063 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
Steven Noonan34678112012-02-17 12:04:44 -08001064 spin_unlock_irqrestore(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001065 return IRQ_HANDLED;
1066 }
1067
1068 again:
1069 rp = info->ring.sring->rsp_prod;
1070 rmb(); /* Ensure we see queued responses up to 'rp'. */
1071
1072 for (i = info->ring.rsp_cons; i != rp; i++) {
1073 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001074
1075 bret = RING_GET_RESPONSE(&info->ring, i);
1076 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001077 /*
1078 * The backend has messed up and given us an id that we would
1079 * never have given to it (we stamp it up to BLK_RING_SIZE -
1080 * look in get_id_from_freelist.
1081 */
1082 if (id >= BLK_RING_SIZE) {
1083 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1084 info->gd->disk_name, op_name(bret->operation), id);
1085 /* We can't safely get the 'struct request' as
1086 * the id is busted. */
1087 continue;
1088 }
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001089 req = info->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001090
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001091 if (bret->operation != BLKIF_OP_DISCARD)
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001092 blkif_completion(&info->shadow[id], info, bret);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001093
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001094 if (add_id_to_freelist(info, id)) {
1095 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1096 info->gd->disk_name, op_name(bret->operation), id);
1097 continue;
1098 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001099
Kiyoshi Uedaf530f0362007-12-11 17:47:36 -05001100 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001101 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001102 case BLKIF_OP_DISCARD:
1103 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1104 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001105 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1106 info->gd->disk_name, op_name(bret->operation));
Li Dongyanged30bf32011-09-01 18:39:09 +08001107 error = -EOPNOTSUPP;
1108 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001109 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001110 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001111 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001112 }
1113 __blk_end_request_all(req, error);
1114 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001115 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001116 case BLKIF_OP_WRITE_BARRIER:
1117 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001118 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1119 info->gd->disk_name, op_name(bret->operation));
Kiyoshi Uedaf530f0362007-12-11 17:47:36 -05001120 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001121 }
1122 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001123 info->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001124 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1125 info->gd->disk_name, op_name(bret->operation));
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001126 error = -EOPNOTSUPP;
1127 }
1128 if (unlikely(error)) {
1129 if (error == -EOPNOTSUPP)
1130 error = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001131 info->feature_flush = 0;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001132 info->flush_op = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001133 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001134 }
1135 /* fall through */
1136 case BLKIF_OP_READ:
1137 case BLKIF_OP_WRITE:
1138 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1139 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1140 "request: %x\n", bret->status);
1141
Tejun Heo40cbbb72009-04-23 11:05:19 +09001142 __blk_end_request_all(req, error);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001143 break;
1144 default:
1145 BUG();
1146 }
1147 }
1148
1149 info->ring.rsp_cons = i;
1150
1151 if (i != info->ring.req_prod_pvt) {
1152 int more_to_do;
1153 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
1154 if (more_to_do)
1155 goto again;
1156 } else
1157 info->ring.sring->rsp_event = i + 1;
1158
1159 kick_pending_request_queues(info);
1160
Steven Noonan34678112012-02-17 12:04:44 -08001161 spin_unlock_irqrestore(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001162
1163 return IRQ_HANDLED;
1164}
1165
1166
1167static int setup_blkring(struct xenbus_device *dev,
1168 struct blkfront_info *info)
1169{
1170 struct blkif_sring *sring;
1171 int err;
1172
1173 info->ring_ref = GRANT_INVALID_REF;
1174
Ian Campbella144ff02008-06-17 10:47:08 +02001175 sring = (struct blkif_sring *)__get_free_page(GFP_NOIO | __GFP_HIGH);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001176 if (!sring) {
1177 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1178 return -ENOMEM;
1179 }
1180 SHARED_RING_INIT(sring);
1181 FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE);
1182
1183 err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring));
1184 if (err < 0) {
1185 free_page((unsigned long)sring);
1186 info->ring.sring = NULL;
1187 goto fail;
1188 }
1189 info->ring_ref = err;
1190
1191 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1192 if (err)
1193 goto fail;
1194
Theodore Ts'o89c30f12012-07-17 13:46:19 -04001195 err = bind_evtchn_to_irqhandler(info->evtchn, blkif_interrupt, 0,
1196 "blkif", info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001197 if (err <= 0) {
1198 xenbus_dev_fatal(dev, err,
1199 "bind_evtchn_to_irqhandler failed");
1200 goto fail;
1201 }
1202 info->irq = err;
1203
1204 return 0;
1205fail:
1206 blkif_free(info, 0);
1207 return err;
1208}
1209
1210
1211/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001212static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001213 struct blkfront_info *info)
1214{
1215 const char *message = NULL;
1216 struct xenbus_transaction xbt;
1217 int err;
1218
1219 /* Create shared ring, alloc event channel. */
1220 err = setup_blkring(dev, info);
1221 if (err)
1222 goto out;
1223
1224again:
1225 err = xenbus_transaction_start(&xbt);
1226 if (err) {
1227 xenbus_dev_fatal(dev, err, "starting transaction");
1228 goto destroy_blkring;
1229 }
1230
1231 err = xenbus_printf(xbt, dev->nodename,
1232 "ring-ref", "%u", info->ring_ref);
1233 if (err) {
1234 message = "writing ring-ref";
1235 goto abort_transaction;
1236 }
1237 err = xenbus_printf(xbt, dev->nodename,
1238 "event-channel", "%u", info->evtchn);
1239 if (err) {
1240 message = "writing event-channel";
1241 goto abort_transaction;
1242 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001243 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1244 XEN_IO_PROTO_ABI_NATIVE);
1245 if (err) {
1246 message = "writing protocol";
1247 goto abort_transaction;
1248 }
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001249 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001250 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001251 if (err)
1252 dev_warn(&dev->dev,
1253 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001254
1255 err = xenbus_transaction_end(xbt, 0);
1256 if (err) {
1257 if (err == -EAGAIN)
1258 goto again;
1259 xenbus_dev_fatal(dev, err, "completing transaction");
1260 goto destroy_blkring;
1261 }
1262
1263 xenbus_switch_state(dev, XenbusStateInitialised);
1264
1265 return 0;
1266
1267 abort_transaction:
1268 xenbus_transaction_end(xbt, 1);
1269 if (message)
1270 xenbus_dev_fatal(dev, err, "%s", message);
1271 destroy_blkring:
1272 blkif_free(info, 0);
1273 out:
1274 return err;
1275}
1276
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001277/**
1278 * Entry point to this code when a new device is created. Allocate the basic
1279 * structures and the ring buffer for communication with the backend, and
1280 * inform the backend of the appropriate details for those. Switch to
1281 * Initialised state.
1282 */
1283static int blkfront_probe(struct xenbus_device *dev,
1284 const struct xenbus_device_id *id)
1285{
1286 int err, vdevice, i;
1287 struct blkfront_info *info;
1288
1289 /* FIXME: Use dynamic device id if this is not set. */
1290 err = xenbus_scanf(XBT_NIL, dev->nodename,
1291 "virtual-device", "%i", &vdevice);
1292 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001293 /* go looking in the extended area instead */
1294 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1295 "%i", &vdevice);
1296 if (err != 1) {
1297 xenbus_dev_fatal(dev, err, "reading virtual-device");
1298 return err;
1299 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001300 }
1301
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001302 if (xen_hvm_domain()) {
1303 char *type;
1304 int len;
1305 /* no unplug has been done: do not hook devices != xen vbds */
Ian Campbell1dc7ce92010-08-23 11:59:29 +01001306 if (xen_platform_pci_unplug & XEN_UNPLUG_UNNECESSARY) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001307 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001308
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001309 if (!VDEV_IS_EXTENDED(vdevice))
1310 major = BLKIF_MAJOR(vdevice);
1311 else
1312 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001313
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001314 if (major != XENVBD_MAJOR) {
1315 printk(KERN_INFO
1316 "%s: HVM does not support vbd %d as xen block device\n",
1317 __FUNCTION__, vdevice);
1318 return -ENODEV;
1319 }
1320 }
1321 /* do not create a PV cdrom device if we are an HVM guest */
1322 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1323 if (IS_ERR(type))
1324 return -ENODEV;
1325 if (strncmp(type, "cdrom", 5) == 0) {
1326 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001327 return -ENODEV;
1328 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001329 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001330 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001331 info = kzalloc(sizeof(*info), GFP_KERNEL);
1332 if (!info) {
1333 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1334 return -ENOMEM;
1335 }
1336
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001337 mutex_init(&info->mutex);
Steven Noonan34678112012-02-17 12:04:44 -08001338 spin_lock_init(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001339 info->xbdev = dev;
1340 info->vdevice = vdevice;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +01001341 INIT_LIST_HEAD(&info->persistent_gnts);
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001342 info->persistent_gnts_c = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001343 info->connected = BLKIF_STATE_DISCONNECTED;
1344 INIT_WORK(&info->work, blkif_restart_queue);
1345
1346 for (i = 0; i < BLK_RING_SIZE; i++)
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001347 info->shadow[i].req.u.rw.id = i+1;
1348 info->shadow[BLK_RING_SIZE-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001349
1350 /* Front end dir is a number, which is used as the id. */
1351 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001352 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001353
Ian Campbell203fd612009-12-04 15:33:54 +00001354 err = talk_to_blkback(dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001355 if (err) {
1356 kfree(info);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001357 dev_set_drvdata(&dev->dev, NULL);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001358 return err;
1359 }
1360
1361 return 0;
1362}
1363
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001364static void split_bio_end(struct bio *bio, int error)
1365{
1366 struct split_bio *split_bio = bio->bi_private;
1367
1368 if (error)
1369 split_bio->err = error;
1370
1371 if (atomic_dec_and_test(&split_bio->pending)) {
1372 split_bio->bio->bi_phys_segments = 0;
1373 bio_endio(split_bio->bio, split_bio->err);
1374 kfree(split_bio);
1375 }
1376 bio_put(bio);
1377}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001378
1379static int blkif_recover(struct blkfront_info *info)
1380{
1381 int i;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001382 struct request *req, *n;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001383 struct blk_shadow *copy;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001384 int rc;
1385 struct bio *bio, *cloned_bio;
1386 struct bio_list bio_list, merge_bio;
1387 unsigned int segs, offset;
1388 int pending, size;
1389 struct split_bio *split_bio;
1390 struct list_head requests;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001391
1392 /* Stage 1: Make a safe copy of the shadow state. */
Mihnea Dobrescu-Balaur29d0b212013-03-11 13:23:36 +02001393 copy = kmemdup(info->shadow, sizeof(info->shadow),
Ian Campbella144ff02008-06-17 10:47:08 +02001394 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001395 if (!copy)
1396 return -ENOMEM;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001397
1398 /* Stage 2: Set up free list. */
1399 memset(&info->shadow, 0, sizeof(info->shadow));
1400 for (i = 0; i < BLK_RING_SIZE; i++)
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001401 info->shadow[i].req.u.rw.id = i+1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001402 info->shadow_free = info->ring.req_prod_pvt;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001403 info->shadow[BLK_RING_SIZE-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001404
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001405 rc = blkfront_setup_indirect(info);
1406 if (rc) {
1407 kfree(copy);
1408 return rc;
1409 }
1410
1411 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
1412 blk_queue_max_segments(info->rq, segs);
1413 bio_list_init(&bio_list);
1414 INIT_LIST_HEAD(&requests);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001415 for (i = 0; i < BLK_RING_SIZE; i++) {
1416 /* Not in use? */
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001417 if (!copy[i].request)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001418 continue;
1419
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001420 /*
1421 * Get the bios in the request so we can re-queue them.
1422 */
1423 if (copy[i].request->cmd_flags &
1424 (REQ_FLUSH | REQ_FUA | REQ_DISCARD | REQ_SECURE)) {
1425 /*
1426 * Flush operations don't contain bios, so
1427 * we need to requeue the whole request
1428 */
1429 list_add(&copy[i].request->queuelist, &requests);
1430 continue;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001431 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001432 merge_bio.head = copy[i].request->bio;
1433 merge_bio.tail = copy[i].request->biotail;
1434 bio_list_merge(&bio_list, &merge_bio);
1435 copy[i].request->bio = NULL;
1436 blk_put_request(copy[i].request);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001437 }
1438
1439 kfree(copy);
1440
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001441 /*
1442 * Empty the queue, this is important because we might have
1443 * requests in the queue with more segments than what we
1444 * can handle now.
1445 */
1446 spin_lock_irq(&info->io_lock);
1447 while ((req = blk_fetch_request(info->rq)) != NULL) {
1448 if (req->cmd_flags &
1449 (REQ_FLUSH | REQ_FUA | REQ_DISCARD | REQ_SECURE)) {
1450 list_add(&req->queuelist, &requests);
1451 continue;
1452 }
1453 merge_bio.head = req->bio;
1454 merge_bio.tail = req->biotail;
1455 bio_list_merge(&bio_list, &merge_bio);
1456 req->bio = NULL;
1457 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA))
1458 pr_alert("diskcache flush request found!\n");
1459 __blk_put_request(info->rq, req);
1460 }
1461 spin_unlock_irq(&info->io_lock);
1462
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001463 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1464
Steven Noonan34678112012-02-17 12:04:44 -08001465 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001466
1467 /* Now safe for us to use the shared ring */
1468 info->connected = BLKIF_STATE_CONNECTED;
1469
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001470 /* Kick any other new requests queued since we resumed */
1471 kick_pending_request_queues(info);
1472
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001473 list_for_each_entry_safe(req, n, &requests, queuelist) {
1474 /* Requeue pending requests (flush or discard) */
1475 list_del_init(&req->queuelist);
1476 BUG_ON(req->nr_phys_segments > segs);
1477 blk_requeue_request(info->rq, req);
1478 }
Steven Noonan34678112012-02-17 12:04:44 -08001479 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001480
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001481 while ((bio = bio_list_pop(&bio_list)) != NULL) {
1482 /* Traverse the list of pending bios and re-queue them */
1483 if (bio_segments(bio) > segs) {
1484 /*
1485 * This bio has more segments than what we can
1486 * handle, we have to split it.
1487 */
1488 pending = (bio_segments(bio) + segs - 1) / segs;
1489 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
1490 BUG_ON(split_bio == NULL);
1491 atomic_set(&split_bio->pending, pending);
1492 split_bio->bio = bio;
1493 for (i = 0; i < pending; i++) {
1494 offset = (i * segs * PAGE_SIZE) >> 9;
1495 size = min((unsigned int)(segs * PAGE_SIZE) >> 9,
1496 (unsigned int)(bio->bi_size >> 9) - offset);
1497 cloned_bio = bio_clone(bio, GFP_NOIO);
1498 BUG_ON(cloned_bio == NULL);
Kent Overstreet6678d832013-08-07 11:14:32 -07001499 bio_trim(cloned_bio, offset, size);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001500 cloned_bio->bi_private = split_bio;
1501 cloned_bio->bi_end_io = split_bio_end;
1502 submit_bio(cloned_bio->bi_rw, cloned_bio);
1503 }
1504 /*
1505 * Now we have to wait for all those smaller bios to
1506 * end, so we can also end the "parent" bio.
1507 */
1508 continue;
1509 }
1510 /* We don't need to split this bio */
1511 submit_bio(bio->bi_rw, bio);
1512 }
1513
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001514 return 0;
1515}
1516
1517/**
1518 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1519 * driver restart. We tear down our blkif structure and recreate it, but
1520 * leave the device-layer structures intact so that this is transparent to the
1521 * rest of the kernel.
1522 */
1523static int blkfront_resume(struct xenbus_device *dev)
1524{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001525 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001526 int err;
1527
1528 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
1529
1530 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
1531
Ian Campbell203fd612009-12-04 15:33:54 +00001532 err = talk_to_blkback(dev, info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001533
1534 /*
1535 * We have to wait for the backend to switch to
1536 * connected state, since we want to read which
1537 * features it supports.
1538 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001539
1540 return err;
1541}
1542
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001543static void
1544blkfront_closing(struct blkfront_info *info)
1545{
1546 struct xenbus_device *xbdev = info->xbdev;
1547 struct block_device *bdev = NULL;
1548
1549 mutex_lock(&info->mutex);
1550
1551 if (xbdev->state == XenbusStateClosing) {
1552 mutex_unlock(&info->mutex);
1553 return;
1554 }
1555
1556 if (info->gd)
1557 bdev = bdget_disk(info->gd, 0);
1558
1559 mutex_unlock(&info->mutex);
1560
1561 if (!bdev) {
1562 xenbus_frontend_closed(xbdev);
1563 return;
1564 }
1565
1566 mutex_lock(&bdev->bd_mutex);
1567
Daniel Stodden7b32d102010-04-30 22:01:23 +00001568 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001569 xenbus_dev_error(xbdev, -EBUSY,
1570 "Device in use; refusing to close");
1571 xenbus_switch_state(xbdev, XenbusStateClosing);
1572 } else {
1573 xlvbd_release_gendisk(info);
1574 xenbus_frontend_closed(xbdev);
1575 }
1576
1577 mutex_unlock(&bdev->bd_mutex);
1578 bdput(bdev);
1579}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001580
Li Dongyanged30bf32011-09-01 18:39:09 +08001581static void blkfront_setup_discard(struct blkfront_info *info)
1582{
1583 int err;
1584 char *type;
1585 unsigned int discard_granularity;
1586 unsigned int discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001587 unsigned int discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08001588
1589 type = xenbus_read(XBT_NIL, info->xbdev->otherend, "type", NULL);
1590 if (IS_ERR(type))
1591 return;
1592
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001593 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001594 if (strncmp(type, "phy", 3) == 0) {
1595 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1596 "discard-granularity", "%u", &discard_granularity,
1597 "discard-alignment", "%u", &discard_alignment,
1598 NULL);
1599 if (!err) {
1600 info->feature_discard = 1;
1601 info->discard_granularity = discard_granularity;
1602 info->discard_alignment = discard_alignment;
1603 }
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001604 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1605 "discard-secure", "%d", &discard_secure,
1606 NULL);
1607 if (!err)
1608 info->feature_secdiscard = discard_secure;
1609
Li Dongyanged30bf32011-09-01 18:39:09 +08001610 } else if (strncmp(type, "file", 4) == 0)
1611 info->feature_discard = 1;
1612
1613 kfree(type);
1614}
1615
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001616static int blkfront_setup_indirect(struct blkfront_info *info)
1617{
1618 unsigned int indirect_segments, segs;
1619 int err, i;
1620
1621 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1622 "feature-max-indirect-segments", "%u", &indirect_segments,
1623 NULL);
1624 if (err) {
1625 info->max_indirect_segments = 0;
1626 segs = BLKIF_MAX_SEGMENTS_PER_REQUEST;
1627 } else {
1628 info->max_indirect_segments = min(indirect_segments,
1629 xen_blkif_max_segments);
1630 segs = info->max_indirect_segments;
1631 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001632
1633 err = fill_grant_buffer(info, (segs + INDIRECT_GREFS(segs)) * BLK_RING_SIZE);
1634 if (err)
1635 goto out_of_memory;
1636
1637 for (i = 0; i < BLK_RING_SIZE; i++) {
1638 info->shadow[i].grants_used = kzalloc(
1639 sizeof(info->shadow[i].grants_used[0]) * segs,
1640 GFP_NOIO);
Roger Pau Monneb7649152013-05-02 10:58:50 +02001641 info->shadow[i].sg = kzalloc(sizeof(info->shadow[i].sg[0]) * segs, GFP_NOIO);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001642 if (info->max_indirect_segments)
1643 info->shadow[i].indirect_grants = kzalloc(
1644 sizeof(info->shadow[i].indirect_grants[0]) *
1645 INDIRECT_GREFS(segs),
1646 GFP_NOIO);
1647 if ((info->shadow[i].grants_used == NULL) ||
Roger Pau Monneb7649152013-05-02 10:58:50 +02001648 (info->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001649 (info->max_indirect_segments &&
1650 (info->shadow[i].indirect_grants == NULL)))
1651 goto out_of_memory;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001652 sg_init_table(info->shadow[i].sg, segs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001653 }
1654
1655
1656 return 0;
1657
1658out_of_memory:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001659 for (i = 0; i < BLK_RING_SIZE; i++) {
1660 kfree(info->shadow[i].grants_used);
1661 info->shadow[i].grants_used = NULL;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001662 kfree(info->shadow[i].sg);
1663 info->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001664 kfree(info->shadow[i].indirect_grants);
1665 info->shadow[i].indirect_grants = NULL;
1666 }
1667 return -ENOMEM;
1668}
1669
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001670/*
1671 * Invoked when the backend is finally 'ready' (and has told produced
1672 * the details about the physical device - #sectors, size, etc).
1673 */
1674static void blkfront_connect(struct blkfront_info *info)
1675{
1676 unsigned long long sectors;
1677 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001678 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001679 unsigned int binfo;
1680 int err;
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001681 int barrier, flush, discard, persistent;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001682
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001683 switch (info->connected) {
1684 case BLKIF_STATE_CONNECTED:
1685 /*
1686 * Potentially, the back-end may be signalling
1687 * a capacity change; update the capacity.
1688 */
1689 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1690 "sectors", "%Lu", &sectors);
1691 if (XENBUS_EXIST_ERR(err))
1692 return;
1693 printk(KERN_INFO "Setting capacity to %Lu\n",
1694 sectors);
1695 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07001696 revalidate_disk(info->gd);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001697
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001698 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001699 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001700 /*
1701 * If we are recovering from suspension, we need to wait
1702 * for the backend to announce it's features before
1703 * reconnecting, at least we need to know if the backend
1704 * supports indirect descriptors, and how many.
1705 */
1706 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001707 return;
1708
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08001709 default:
1710 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001711 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001712
1713 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
1714 __func__, info->xbdev->otherend);
1715
1716 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1717 "sectors", "%llu", &sectors,
1718 "info", "%u", &binfo,
1719 "sector-size", "%lu", &sector_size,
1720 NULL);
1721 if (err) {
1722 xenbus_dev_fatal(info->xbdev, err,
1723 "reading backend fields at %s",
1724 info->xbdev->otherend);
1725 return;
1726 }
1727
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001728 /*
1729 * physcial-sector-size is a newer field, so old backends may not
1730 * provide this. Assume physical sector size to be the same as
1731 * sector_size in that case.
1732 */
1733 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1734 "physical-sector-size", "%u", &physical_sector_size);
1735 if (err != 1)
1736 physical_sector_size = sector_size;
1737
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001738 info->feature_flush = 0;
1739 info->flush_op = 0;
1740
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001741 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
Marek Marczykowski4352b472011-05-03 12:04:52 -04001742 "feature-barrier", "%d", &barrier,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001743 NULL);
Jeremy Fitzhardinge7901d142010-07-28 10:49:29 -07001744
1745 /*
1746 * If there's no "feature-barrier" defined, then it means
1747 * we're dealing with a very old backend which writes
Tejun Heo4913efe2010-09-03 11:56:16 +02001748 * synchronously; nothing to do.
Jeremy Fitzhardinge7901d142010-07-28 10:49:29 -07001749 *
Tejun Heo6958f142010-09-03 11:56:16 +02001750 * If there are barriers, then we use flush.
Jeremy Fitzhardinge7901d142010-07-28 10:49:29 -07001751 */
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001752 if (!err && barrier) {
Jeremy Fitzhardingebe2f8372010-11-02 10:38:33 -04001753 info->feature_flush = REQ_FLUSH | REQ_FUA;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001754 info->flush_op = BLKIF_OP_WRITE_BARRIER;
1755 }
1756 /*
1757 * And if there is "feature-flush-cache" use that above
1758 * barriers.
1759 */
1760 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1761 "feature-flush-cache", "%d", &flush,
1762 NULL);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001763
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001764 if (!err && flush) {
1765 info->feature_flush = REQ_FLUSH;
1766 info->flush_op = BLKIF_OP_FLUSH_DISKCACHE;
1767 }
Li Dongyanged30bf32011-09-01 18:39:09 +08001768
1769 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1770 "feature-discard", "%d", &discard,
1771 NULL);
1772
1773 if (!err && discard)
1774 blkfront_setup_discard(info);
1775
Roger Pau Monne0a8704a52012-10-24 18:58:45 +02001776 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1777 "feature-persistent", "%u", &persistent,
1778 NULL);
1779 if (err)
1780 info->feature_persistent = 0;
1781 else
1782 info->feature_persistent = persistent;
1783
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001784 err = blkfront_setup_indirect(info);
1785 if (err) {
1786 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
1787 info->xbdev->otherend);
1788 return;
1789 }
1790
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001791 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
1792 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001793 if (err) {
1794 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
1795 info->xbdev->otherend);
1796 return;
1797 }
1798
1799 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1800
1801 /* Kick pending requests. */
Steven Noonan34678112012-02-17 12:04:44 -08001802 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001803 info->connected = BLKIF_STATE_CONNECTED;
1804 kick_pending_request_queues(info);
Steven Noonan34678112012-02-17 12:04:44 -08001805 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001806
1807 add_disk(info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07001808
1809 info->is_ready = 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001810}
1811
1812/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001813 * Callback received when the backend's state changes.
1814 */
Ian Campbell203fd612009-12-04 15:33:54 +00001815static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001816 enum xenbus_state backend_state)
1817{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001818 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001819
Ian Campbell203fd612009-12-04 15:33:54 +00001820 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001821
1822 switch (backend_state) {
1823 case XenbusStateInitialising:
1824 case XenbusStateInitWait:
1825 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04001826 case XenbusStateReconfiguring:
1827 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001828 case XenbusStateUnknown:
1829 case XenbusStateClosed:
1830 break;
1831
1832 case XenbusStateConnected:
1833 blkfront_connect(info);
1834 break;
1835
1836 case XenbusStateClosing:
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001837 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001838 break;
1839 }
1840}
1841
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001842static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001843{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001844 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
1845 struct block_device *bdev = NULL;
1846 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001847
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001848 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001849
1850 blkif_free(info, 0);
1851
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001852 mutex_lock(&info->mutex);
1853
1854 disk = info->gd;
1855 if (disk)
1856 bdev = bdget_disk(disk, 0);
1857
1858 info->xbdev = NULL;
1859 mutex_unlock(&info->mutex);
1860
1861 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02001862 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001863 return 0;
1864 }
1865
1866 /*
1867 * The xbdev was removed before we reached the Closed
1868 * state. See if it's safe to remove the disk. If the bdev
1869 * isn't closed yet, we let release take care of it.
1870 */
1871
1872 mutex_lock(&bdev->bd_mutex);
1873 info = disk->private_data;
1874
Daniel Stoddend54142c2010-08-07 18:51:21 +02001875 dev_warn(disk_to_dev(disk),
1876 "%s was hot-unplugged, %d stale handles\n",
1877 xbdev->nodename, bdev->bd_openers);
1878
Daniel Stodden7b32d102010-04-30 22:01:23 +00001879 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001880 xlvbd_release_gendisk(info);
1881 disk->private_data = NULL;
1882 kfree(info);
1883 }
1884
1885 mutex_unlock(&bdev->bd_mutex);
1886 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001887
1888 return 0;
1889}
1890
Christian Limpach1d78d702008-04-02 10:54:04 -07001891static int blkfront_is_ready(struct xenbus_device *dev)
1892{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001893 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07001894
Jan Beulich5d7ed202010-08-07 18:31:12 +02001895 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07001896}
1897
Al Viroa63c8482008-03-02 10:23:47 -05001898static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001899{
Daniel Stodden13961742010-08-07 18:36:53 +02001900 struct gendisk *disk = bdev->bd_disk;
1901 struct blkfront_info *info;
1902 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001903
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001904 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02001905
Daniel Stodden13961742010-08-07 18:36:53 +02001906 info = disk->private_data;
1907 if (!info) {
1908 /* xbdev gone */
1909 err = -ERESTARTSYS;
1910 goto out;
1911 }
1912
1913 mutex_lock(&info->mutex);
1914
1915 if (!info->gd)
1916 /* xbdev is closed */
1917 err = -ERESTARTSYS;
1918
1919 mutex_unlock(&info->mutex);
1920
Daniel Stodden13961742010-08-07 18:36:53 +02001921out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001922 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02001923 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001924}
1925
Al Virodb2a1442013-05-05 21:52:57 -04001926static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001927{
Al Viroa63c8482008-03-02 10:23:47 -05001928 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001929 struct block_device *bdev;
1930 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001931
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001932 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001933
1934 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001935
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02001936 if (bdev->bd_openers)
1937 goto out;
1938
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001939 /*
1940 * Check if we have been instructed to close. We will have
1941 * deferred this request, because the bdev was still open.
1942 */
1943
1944 mutex_lock(&info->mutex);
1945 xbdev = info->xbdev;
1946
1947 if (xbdev && xbdev->state == XenbusStateClosing) {
1948 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02001949 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001950 xlvbd_release_gendisk(info);
1951 xenbus_frontend_closed(info->xbdev);
1952 }
1953
1954 mutex_unlock(&info->mutex);
1955
1956 if (!xbdev) {
1957 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02001958 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001959 xlvbd_release_gendisk(info);
1960 disk->private_data = NULL;
1961 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001962 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02001963
Jens Axboea4cc14e2010-08-08 21:50:05 -04001964out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01001965 bdput(bdev);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001966 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001967}
1968
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001969static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001970{
1971 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05001972 .open = blkif_open,
1973 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08001974 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001975 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001976};
1977
1978
Márton Némethec9c42e2010-01-10 13:39:52 +01001979static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001980 { "vbd" },
1981 { "" }
1982};
1983
Jan Beulich73db1442011-12-22 09:08:13 +00001984static DEFINE_XENBUS_DRIVER(blkfront, ,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001985 .probe = blkfront_probe,
1986 .remove = blkfront_remove,
1987 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00001988 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07001989 .is_ready = blkfront_is_ready,
Jan Beulich73db1442011-12-22 09:08:13 +00001990);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001991
1992static int __init xlblk_init(void)
1993{
Laszlo Ersek469738e2011-10-07 21:34:38 +02001994 int ret;
1995
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001996 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001997 return -ENODEV;
1998
Igor Mammedove95ae5a2012-03-27 19:31:08 +02001999 if (xen_hvm_domain() && !xen_platform_pci_unplug)
Igor Mammedovb9136d22012-03-21 15:08:38 +01002000 return -ENODEV;
2001
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002002 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2003 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2004 XENVBD_MAJOR, DEV_NAME);
2005 return -ENODEV;
2006 }
2007
Jan Beulich73db1442011-12-22 09:08:13 +00002008 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002009 if (ret) {
2010 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2011 return ret;
2012 }
2013
2014 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002015}
2016module_init(xlblk_init);
2017
2018
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002019static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002020{
Jan Beulich86050672012-04-05 16:04:52 +01002021 xenbus_unregister_driver(&blkfront_driver);
2022 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2023 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002024}
2025module_exit(xlblk_exit);
2026
2027MODULE_DESCRIPTION("Xen virtual block device frontend");
2028MODULE_LICENSE("GPL");
2029MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002030MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002031MODULE_ALIAS("xenblk");