blob: 0823a96902f87fa90d2e35a425183ea0de2e0049 [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>
Bob Liu907c3eb2015-07-13 17:55:24 +080040#include <linux/blk-mq.h>
Ian Campbell597592d2008-02-21 13:03:45 -080041#include <linux/hdreg.h>
Christian Limpach440a01a2008-06-17 10:47:08 +020042#include <linux/cdrom.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070043#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020045#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010046#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090047#include <linux/bitmap.h>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010048#include <linux/list.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070049
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070050#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070051#include <xen/xenbus.h>
52#include <xen/grant_table.h>
53#include <xen/events.h>
54#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010055#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070056
57#include <xen/interface/grant_table.h>
58#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070059#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070060
61#include <asm/xen/hypervisor.h>
62
63enum blkif_state {
64 BLKIF_STATE_DISCONNECTED,
65 BLKIF_STATE_CONNECTED,
66 BLKIF_STATE_SUSPENDED,
67};
68
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020069struct grant {
70 grant_ref_t gref;
71 unsigned long pfn;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010072 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020073};
74
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070075struct blk_shadow {
76 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040077 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020078 struct grant **grants_used;
79 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +020080 struct scatterlist *sg;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020081};
82
83struct split_bio {
84 struct bio *bio;
85 atomic_t pending;
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
Bob Liu86839c52015-06-03 13:40:03 +0800101/*
102 * Maximum order of pages to be used for the shared ring between front and
103 * backend, 4KB page granularity is used.
104 */
105static unsigned int xen_blkif_max_ring_order;
106module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
107MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
108
109#define BLK_RING_SIZE(info) __CONST_RING_SIZE(blkif, PAGE_SIZE * (info)->nr_ring_pages)
110#define BLK_MAX_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE * XENBUS_MAX_RING_PAGES)
111/*
112 * ring-ref%i i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
113 * characters are enough. Define to 20 to keep consist with backend.
114 */
115#define RINGREF_NAME_LEN (20)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700116
117/*
118 * We have one of these per vbd, whether ide, scsi or 'other'. They
119 * hang in private_data off the gendisk structure. We may end up
120 * putting all kinds of interesting stuff here :-)
121 */
122struct blkfront_info
123{
Steven Noonan34678112012-02-17 12:04:44 -0800124 spinlock_t io_lock;
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000125 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700126 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700127 struct gendisk *gd;
128 int vdevice;
129 blkif_vdev_t handle;
130 enum blkif_state connected;
Bob Liu86839c52015-06-03 13:40:03 +0800131 int ring_ref[XENBUS_MAX_RING_PAGES];
132 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700133 struct blkif_front_ring ring;
134 unsigned int evtchn, irq;
135 struct request_queue *rq;
136 struct work_struct work;
137 struct gnttab_free_callback callback;
Bob Liu86839c52015-06-03 13:40:03 +0800138 struct blk_shadow shadow[BLK_MAX_RING_SIZE];
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100139 struct list_head grants;
140 struct list_head indirect_pages;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200141 unsigned int persistent_gnts_c;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700142 unsigned long shadow_free;
Tejun Heo4913efe2010-09-03 11:56:16 +0200143 unsigned int feature_flush;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400144 unsigned int feature_discard:1;
145 unsigned int feature_secdiscard:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800146 unsigned int discard_granularity;
147 unsigned int discard_alignment;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200148 unsigned int feature_persistent:1;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200149 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700150 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800151 struct blk_mq_tag_set tag_set;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700152};
153
Jan Beulich0e345822010-08-07 18:28:55 +0200154static unsigned int nr_minors;
155static unsigned long *minors;
156static DEFINE_SPINLOCK(minor_lock);
157
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700158#define GRANT_INVALID_REF 0
159
160#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700161#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700162
163#define BLKIF_MAJOR(dev) ((dev)>>8)
164#define BLKIF_MINOR(dev) ((dev) & 0xff)
165
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700166#define EXT_SHIFT 28
167#define EXTENDED (1<<EXT_SHIFT)
168#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
169#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000170#define EMULATED_HD_DISK_MINOR_OFFSET (0)
171#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200172#define EMULATED_SD_DISK_MINOR_OFFSET (0)
173#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700174
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700175#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700176
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200177#define SEGS_PER_INDIRECT_FRAME \
Roger Pau Monne80bfa2f2014-02-04 11:26:15 +0100178 (PAGE_SIZE/sizeof(struct blkif_request_segment))
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200179#define INDIRECT_GREFS(_segs) \
180 ((_segs + SEGS_PER_INDIRECT_FRAME - 1)/SEGS_PER_INDIRECT_FRAME)
181
182static int blkfront_setup_indirect(struct blkfront_info *info);
Bob Liud50babb2015-07-22 14:40:08 +0800183static int blkfront_gather_backend_features(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200184
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700185static int get_id_from_freelist(struct blkfront_info *info)
186{
187 unsigned long free = info->shadow_free;
Bob Liu86839c52015-06-03 13:40:03 +0800188 BUG_ON(free >= BLK_RING_SIZE(info));
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400189 info->shadow_free = info->shadow[free].req.u.rw.id;
190 info->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700191 return free;
192}
193
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400194static int add_id_to_freelist(struct blkfront_info *info,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700195 unsigned long id)
196{
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400197 if (info->shadow[id].req.u.rw.id != id)
198 return -EINVAL;
199 if (info->shadow[id].request == NULL)
200 return -EINVAL;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400201 info->shadow[id].req.u.rw.id = info->shadow_free;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400202 info->shadow[id].request = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700203 info->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400204 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700205}
206
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100207static int fill_grant_buffer(struct blkfront_info *info, int num)
208{
209 struct page *granted_page;
210 struct grant *gnt_list_entry, *n;
211 int i = 0;
212
213 while(i < num) {
214 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
215 if (!gnt_list_entry)
216 goto out_of_memory;
217
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100218 if (info->feature_persistent) {
219 granted_page = alloc_page(GFP_NOIO);
220 if (!granted_page) {
221 kfree(gnt_list_entry);
222 goto out_of_memory;
223 }
224 gnt_list_entry->pfn = page_to_pfn(granted_page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100225 }
226
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100227 gnt_list_entry->gref = GRANT_INVALID_REF;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100228 list_add(&gnt_list_entry->node, &info->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100229 i++;
230 }
231
232 return 0;
233
234out_of_memory:
235 list_for_each_entry_safe(gnt_list_entry, n,
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100236 &info->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100237 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100238 if (info->feature_persistent)
239 __free_page(pfn_to_page(gnt_list_entry->pfn));
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100240 kfree(gnt_list_entry);
241 i--;
242 }
243 BUG_ON(i != 0);
244 return -ENOMEM;
245}
246
247static struct grant *get_grant(grant_ref_t *gref_head,
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100248 unsigned long pfn,
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100249 struct blkfront_info *info)
250{
251 struct grant *gnt_list_entry;
Julien Grall0df4f262015-08-07 17:34:37 +0100252 unsigned long buffer_gfn;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100253
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100254 BUG_ON(list_empty(&info->grants));
255 gnt_list_entry = list_first_entry(&info->grants, struct grant,
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100256 node);
257 list_del(&gnt_list_entry->node);
258
259 if (gnt_list_entry->gref != GRANT_INVALID_REF) {
260 info->persistent_gnts_c--;
261 return gnt_list_entry;
262 }
263
264 /* Assign a gref to this page */
265 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
266 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100267 if (!info->feature_persistent) {
268 BUG_ON(!pfn);
269 gnt_list_entry->pfn = pfn;
270 }
Julien Grall0df4f262015-08-07 17:34:37 +0100271 buffer_gfn = pfn_to_gfn(gnt_list_entry->pfn);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100272 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
273 info->xbdev->otherend_id,
Julien Grall0df4f262015-08-07 17:34:37 +0100274 buffer_gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100275 return gnt_list_entry;
276}
277
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400278static const char *op_name(int op)
279{
280 static const char *const names[] = {
281 [BLKIF_OP_READ] = "read",
282 [BLKIF_OP_WRITE] = "write",
283 [BLKIF_OP_WRITE_BARRIER] = "barrier",
284 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
285 [BLKIF_OP_DISCARD] = "discard" };
286
287 if (op < 0 || op >= ARRAY_SIZE(names))
288 return "unknown";
289
290 if (!names[op])
291 return "reserved";
292
293 return names[op];
294}
Jan Beulich0e345822010-08-07 18:28:55 +0200295static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
296{
297 unsigned int end = minor + nr;
298 int rc;
299
300 if (end > nr_minors) {
301 unsigned long *bitmap, *old;
302
Thomas Meyerf0941482011-11-29 22:08:00 +0100303 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200304 GFP_KERNEL);
305 if (bitmap == NULL)
306 return -ENOMEM;
307
308 spin_lock(&minor_lock);
309 if (end > nr_minors) {
310 old = minors;
311 memcpy(bitmap, minors,
312 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
313 minors = bitmap;
314 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
315 } else
316 old = bitmap;
317 spin_unlock(&minor_lock);
318 kfree(old);
319 }
320
321 spin_lock(&minor_lock);
322 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900323 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200324 rc = 0;
325 } else
326 rc = -EBUSY;
327 spin_unlock(&minor_lock);
328
329 return rc;
330}
331
332static void xlbd_release_minors(unsigned int minor, unsigned int nr)
333{
334 unsigned int end = minor + nr;
335
336 BUG_ON(end > nr_minors);
337 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900338 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200339 spin_unlock(&minor_lock);
340}
341
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700342static void blkif_restart_queue_callback(void *arg)
343{
344 struct blkfront_info *info = (struct blkfront_info *)arg;
345 schedule_work(&info->work);
346}
347
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700348static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800349{
350 /* We don't have real geometry info, but let's at least return
351 values consistent with the size of the device */
352 sector_t nsect = get_capacity(bd->bd_disk);
353 sector_t cylinders = nsect;
354
355 hg->heads = 0xff;
356 hg->sectors = 0x3f;
357 sector_div(cylinders, hg->heads * hg->sectors);
358 hg->cylinders = cylinders;
359 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
360 hg->cylinders = 0xffff;
361 return 0;
362}
363
Al Viroa63c8482008-03-02 10:23:47 -0500364static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200365 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200366{
Al Viroa63c8482008-03-02 10:23:47 -0500367 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200368 int i;
369
370 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
371 command, (long)argument);
372
373 switch (command) {
374 case CDROMMULTISESSION:
375 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
376 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
377 if (put_user(0, (char __user *)(argument + i)))
378 return -EFAULT;
379 return 0;
380
381 case CDROM_GET_CAPABILITY: {
382 struct gendisk *gd = info->gd;
383 if (gd->flags & GENHD_FL_CD)
384 return 0;
385 return -EINVAL;
386 }
387
388 default:
389 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
390 command);*/
391 return -EINVAL; /* same return as native Linux */
392 }
393
394 return 0;
395}
396
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700397/*
Jeremy Fitzhardingec64e38e2010-11-01 14:32:27 -0400398 * Generate a Xen blkfront IO request from a blk layer request. Reads
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -0400399 * and writes are handled as expected.
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700400 *
Jeremy Fitzhardingec64e38e2010-11-01 14:32:27 -0400401 * @req: a request struct
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700402 */
403static int blkif_queue_request(struct request *req)
404{
405 struct blkfront_info *info = req->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700406 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700407 unsigned long id;
408 unsigned int fsect, lsect;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200409 int i, ref, n;
Roger Pau Monne80bfa2f2014-02-04 11:26:15 +0100410 struct blkif_request_segment *segments = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200411
412 /*
413 * Used to store if we are able to queue the request by just using
414 * existing persistent grants, or if we have to get new grants,
415 * as there are not sufficiently many free.
416 */
417 bool new_persistent_gnts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700418 grant_ref_t gref_head;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200419 struct grant *gnt_list_entry = NULL;
Jens Axboe9e973e62009-02-24 08:10:09 +0100420 struct scatterlist *sg;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200421 int nseg, max_grefs;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700422
423 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
424 return 1;
425
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200426 max_grefs = req->nr_phys_segments;
427 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
428 /*
429 * If we are using indirect segments we need to account
430 * for the indirect grefs used in the request.
431 */
432 max_grefs += INDIRECT_GREFS(req->nr_phys_segments);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200433
434 /* Check if we have enough grants to allocate a requests */
435 if (info->persistent_gnts_c < max_grefs) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200436 new_persistent_gnts = 1;
437 if (gnttab_alloc_grant_references(
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200438 max_grefs - info->persistent_gnts_c,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200439 &gref_head) < 0) {
440 gnttab_request_free_callback(
441 &info->callback,
442 blkif_restart_queue_callback,
443 info,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200444 max_grefs);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200445 return 1;
446 }
447 } else
448 new_persistent_gnts = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700449
450 /* Fill out a communications ring structure. */
451 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
452 id = get_id_from_freelist(info);
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400453 info->shadow[id].request = req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700454
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400455 if (unlikely(req->cmd_flags & (REQ_DISCARD | REQ_SECURE))) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800456 ring_req->operation = BLKIF_OP_DISCARD;
Li Dongyanged30bf32011-09-01 18:39:09 +0800457 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200458 ring_req->u.discard.id = id;
459 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400460 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
461 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
462 else
463 ring_req->u.discard.flag = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800464 } else {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200465 BUG_ON(info->max_indirect_segments == 0 &&
466 req->nr_phys_segments > BLKIF_MAX_SEGMENTS_PER_REQUEST);
467 BUG_ON(info->max_indirect_segments &&
468 req->nr_phys_segments > info->max_indirect_segments);
Roger Pau Monneb7649152013-05-02 10:58:50 +0200469 nseg = blk_rq_map_sg(req->q, req, info->shadow[id].sg);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200470 ring_req->u.rw.id = id;
471 if (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST) {
472 /*
473 * The indirect operation can only be a BLKIF_OP_READ or
474 * BLKIF_OP_WRITE
475 */
476 BUG_ON(req->cmd_flags & (REQ_FLUSH | REQ_FUA));
477 ring_req->operation = BLKIF_OP_INDIRECT;
478 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
479 BLKIF_OP_WRITE : BLKIF_OP_READ;
480 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
481 ring_req->u.indirect.handle = info->handle;
482 ring_req->u.indirect.nr_segments = nseg;
483 } else {
484 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
485 ring_req->u.rw.handle = info->handle;
486 ring_req->operation = rq_data_dir(req) ?
487 BLKIF_OP_WRITE : BLKIF_OP_READ;
488 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA)) {
489 /*
490 * Ideally we can do an unordered flush-to-disk. In case the
491 * backend onlysupports barriers, use that. A barrier request
492 * a superset of FUA, so we can implement it the same
493 * way. (It's also a FLUSH+FUA, since it is
494 * guaranteed ordered WRT previous writes.)
495 */
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100496 switch (info->feature_flush &
497 ((REQ_FLUSH|REQ_FUA))) {
498 case REQ_FLUSH|REQ_FUA:
499 ring_req->operation =
500 BLKIF_OP_WRITE_BARRIER;
501 break;
502 case REQ_FLUSH:
503 ring_req->operation =
504 BLKIF_OP_FLUSH_DISKCACHE;
505 break;
506 default:
507 ring_req->operation = 0;
508 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200509 }
510 ring_req->u.rw.nr_segments = nseg;
511 }
Roger Pau Monneb7649152013-05-02 10:58:50 +0200512 for_each_sg(info->shadow[id].sg, sg, nseg, i) {
Li Dongyanged30bf32011-09-01 18:39:09 +0800513 fsect = sg->offset >> 9;
514 lsect = fsect + (sg->length >> 9) - 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700515
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200516 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
517 (i % SEGS_PER_INDIRECT_FRAME == 0)) {
Tim Gardner427bfe02013-11-14 14:29:52 -0700518 unsigned long uninitialized_var(pfn);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100519
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200520 if (segments)
521 kunmap_atomic(segments);
522
523 n = i / SEGS_PER_INDIRECT_FRAME;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100524 if (!info->feature_persistent) {
525 struct page *indirect_page;
526
527 /* Fetch a pre-allocated page to use for indirect grefs */
528 BUG_ON(list_empty(&info->indirect_pages));
529 indirect_page = list_first_entry(&info->indirect_pages,
530 struct page, lru);
531 list_del(&indirect_page->lru);
532 pfn = page_to_pfn(indirect_page);
533 }
534 gnt_list_entry = get_grant(&gref_head, pfn, info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200535 info->shadow[id].indirect_grants[n] = gnt_list_entry;
536 segments = kmap_atomic(pfn_to_page(gnt_list_entry->pfn));
537 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
538 }
539
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100540 gnt_list_entry = get_grant(&gref_head, page_to_pfn(sg_page(sg)), info);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100541 ref = gnt_list_entry->gref;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200542
543 info->shadow[id].grants_used[i] = gnt_list_entry;
544
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100545 if (rq_data_dir(req) && info->feature_persistent) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200546 char *bvec_data;
547 void *shared_data;
548
549 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
550
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200551 shared_data = kmap_atomic(pfn_to_page(gnt_list_entry->pfn));
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200552 bvec_data = kmap_atomic(sg_page(sg));
553
554 /*
555 * this does not wipe data stored outside the
556 * range sg->offset..sg->offset+sg->length.
557 * Therefore, blkback *could* see data from
558 * previous requests. This is OK as long as
559 * persistent grants are shared with just one
560 * domain. It may need refactoring if this
561 * changes
562 */
563 memcpy(shared_data + sg->offset,
564 bvec_data + sg->offset,
565 sg->length);
566
567 kunmap_atomic(bvec_data);
568 kunmap_atomic(shared_data);
569 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200570 if (ring_req->operation != BLKIF_OP_INDIRECT) {
571 ring_req->u.rw.seg[i] =
572 (struct blkif_request_segment) {
573 .gref = ref,
574 .first_sect = fsect,
575 .last_sect = lsect };
576 } else {
577 n = i % SEGS_PER_INDIRECT_FRAME;
578 segments[n] =
Roger Pau Monne80bfa2f2014-02-04 11:26:15 +0100579 (struct blkif_request_segment) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200580 .gref = ref,
581 .first_sect = fsect,
582 .last_sect = lsect };
583 }
Li Dongyanged30bf32011-09-01 18:39:09 +0800584 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200585 if (segments)
586 kunmap_atomic(segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700587 }
588
589 info->ring.req_prod_pvt++;
590
591 /* Keep a private copy so we can reissue requests when recovering. */
592 info->shadow[id].req = *ring_req;
593
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200594 if (new_persistent_gnts)
595 gnttab_free_grant_references(gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700596
597 return 0;
598}
599
600
601static inline void flush_requests(struct blkfront_info *info)
602{
603 int notify;
604
605 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
606
607 if (notify)
608 notify_remote_via_irq(info->irq);
609}
610
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100611static inline bool blkif_request_flush_invalid(struct request *req,
612 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200613{
614 return ((req->cmd_type != REQ_TYPE_FS) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100615 ((req->cmd_flags & REQ_FLUSH) &&
616 !(info->feature_flush & REQ_FLUSH)) ||
617 ((req->cmd_flags & REQ_FUA) &&
618 !(info->feature_flush & REQ_FUA)));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200619}
620
Bob Liu907c3eb2015-07-13 17:55:24 +0800621static int blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
622 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700623{
Bob Liu907c3eb2015-07-13 17:55:24 +0800624 struct blkfront_info *info = qd->rq->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700625
Bob Liu907c3eb2015-07-13 17:55:24 +0800626 blk_mq_start_request(qd->rq);
627 spin_lock_irq(&info->io_lock);
628 if (RING_FULL(&info->ring))
629 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700630
Bob Liu907c3eb2015-07-13 17:55:24 +0800631 if (blkif_request_flush_invalid(qd->rq, info))
632 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700633
Bob Liu907c3eb2015-07-13 17:55:24 +0800634 if (blkif_queue_request(qd->rq))
635 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700636
Bob Liu907c3eb2015-07-13 17:55:24 +0800637 flush_requests(info);
638 spin_unlock_irq(&info->io_lock);
639 return BLK_MQ_RQ_QUEUE_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700640
Bob Liu907c3eb2015-07-13 17:55:24 +0800641out_err:
642 spin_unlock_irq(&info->io_lock);
643 return BLK_MQ_RQ_QUEUE_ERROR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900644
Bob Liu907c3eb2015-07-13 17:55:24 +0800645out_busy:
646 spin_unlock_irq(&info->io_lock);
647 blk_mq_stop_hw_queue(hctx);
648 return BLK_MQ_RQ_QUEUE_BUSY;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700649}
650
Bob Liu907c3eb2015-07-13 17:55:24 +0800651static struct blk_mq_ops blkfront_mq_ops = {
652 .queue_rq = blkif_queue_rq,
653 .map_queue = blk_mq_map_queue,
654};
655
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200656static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200657 unsigned int physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200658 unsigned int segments)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700659{
Jens Axboe165125e2007-07-24 09:28:11 +0200660 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800661 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700662
Bob Liu907c3eb2015-07-13 17:55:24 +0800663 memset(&info->tag_set, 0, sizeof(info->tag_set));
664 info->tag_set.ops = &blkfront_mq_ops;
665 info->tag_set.nr_hw_queues = 1;
666 info->tag_set.queue_depth = BLK_RING_SIZE(info);
667 info->tag_set.numa_node = NUMA_NO_NODE;
668 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
669 info->tag_set.cmd_size = 0;
670 info->tag_set.driver_data = info;
671
672 if (blk_mq_alloc_tag_set(&info->tag_set))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700673 return -1;
Bob Liu907c3eb2015-07-13 17:55:24 +0800674 rq = blk_mq_init_queue(&info->tag_set);
675 if (IS_ERR(rq)) {
676 blk_mq_free_tag_set(&info->tag_set);
677 return -1;
678 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700679
Fernando Luis Vázquez Cao66d352e2008-10-27 18:45:54 +0900680 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700681
Li Dongyanged30bf32011-09-01 18:39:09 +0800682 if (info->feature_discard) {
683 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
684 blk_queue_max_discard_sectors(rq, get_capacity(gd));
685 rq->limits.discard_granularity = info->discard_granularity;
686 rq->limits.discard_alignment = info->discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400687 if (info->feature_secdiscard)
688 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800689 }
690
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700691 /* Hard sector size and max sectors impersonate the equiv. hardware. */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400692 blk_queue_logical_block_size(rq, sector_size);
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200693 blk_queue_physical_block_size(rq, physical_sector_size);
Roger Pau Monne294caaf2013-06-21 12:56:54 +0200694 blk_queue_max_hw_sectors(rq, (segments * PAGE_SIZE) / 512);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700695
696 /* Each segment in a request is up to an aligned page in size. */
697 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
698 blk_queue_max_segment_size(rq, PAGE_SIZE);
699
700 /* Ensure a merged request will fit in a single I/O ring slot. */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200701 blk_queue_max_segments(rq, segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700702
703 /* Make sure buffer addresses are sector-aligned. */
704 blk_queue_dma_alignment(rq, 511);
705
Ian Campbell1c91fe12008-06-17 10:47:08 +0200706 /* Make sure we don't use bounce buffers. */
707 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
708
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700709 gd->queue = rq;
710
711 return 0;
712}
713
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100714static const char *flush_info(unsigned int feature_flush)
715{
716 switch (feature_flush & ((REQ_FLUSH | REQ_FUA))) {
717 case REQ_FLUSH|REQ_FUA:
718 return "barrier: enabled;";
719 case REQ_FLUSH:
720 return "flush diskcache: enabled;";
721 default:
722 return "barrier or flush: disabled;";
723 }
724}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700725
Tejun Heo4913efe2010-09-03 11:56:16 +0200726static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700727{
Tejun Heo4913efe2010-09-03 11:56:16 +0200728 blk_queue_flush(info->rq, info->feature_flush);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100729 pr_info("blkfront: %s: %s %s %s %s %s\n",
730 info->gd->disk_name, flush_info(info->feature_flush),
731 "persistent grants:", info->feature_persistent ?
732 "enabled;" : "disabled;", "indirect descriptors:",
733 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700734}
735
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000736static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
737{
738 int major;
739 major = BLKIF_MAJOR(vdevice);
740 *minor = BLKIF_MINOR(vdevice);
741 switch (major) {
742 case XEN_IDE0_MAJOR:
743 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
744 *minor = ((*minor / 64) * PARTS_PER_DISK) +
745 EMULATED_HD_DISK_MINOR_OFFSET;
746 break;
747 case XEN_IDE1_MAJOR:
748 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
749 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
750 EMULATED_HD_DISK_MINOR_OFFSET;
751 break;
752 case XEN_SCSI_DISK0_MAJOR:
753 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
754 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
755 break;
756 case XEN_SCSI_DISK1_MAJOR:
757 case XEN_SCSI_DISK2_MAJOR:
758 case XEN_SCSI_DISK3_MAJOR:
759 case XEN_SCSI_DISK4_MAJOR:
760 case XEN_SCSI_DISK5_MAJOR:
761 case XEN_SCSI_DISK6_MAJOR:
762 case XEN_SCSI_DISK7_MAJOR:
763 *offset = (*minor / PARTS_PER_DISK) +
764 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
765 EMULATED_SD_DISK_NAME_OFFSET;
766 *minor = *minor +
767 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
768 EMULATED_SD_DISK_MINOR_OFFSET;
769 break;
770 case XEN_SCSI_DISK8_MAJOR:
771 case XEN_SCSI_DISK9_MAJOR:
772 case XEN_SCSI_DISK10_MAJOR:
773 case XEN_SCSI_DISK11_MAJOR:
774 case XEN_SCSI_DISK12_MAJOR:
775 case XEN_SCSI_DISK13_MAJOR:
776 case XEN_SCSI_DISK14_MAJOR:
777 case XEN_SCSI_DISK15_MAJOR:
778 *offset = (*minor / PARTS_PER_DISK) +
779 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
780 EMULATED_SD_DISK_NAME_OFFSET;
781 *minor = *minor +
782 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
783 EMULATED_SD_DISK_MINOR_OFFSET;
784 break;
785 case XENVBD_MAJOR:
786 *offset = *minor / PARTS_PER_DISK;
787 break;
788 default:
789 printk(KERN_WARNING "blkfront: your disk configuration is "
790 "incorrect, please use an xvd device instead\n");
791 return -ENODEV;
792 }
793 return 0;
794}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700795
Jan Beuliche77c78c2012-04-05 16:37:22 +0100796static char *encode_disk_name(char *ptr, unsigned int n)
797{
798 if (n >= 26)
799 ptr = encode_disk_name(ptr, n / 26 - 1);
800 *ptr = 'a' + n % 26;
801 return ptr + 1;
802}
803
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700804static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
805 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200806 u16 vdisk_info, u16 sector_size,
807 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700808{
809 struct gendisk *gd;
810 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000811 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700812 unsigned int offset;
813 int minor;
814 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +0100815 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700816
817 BUG_ON(info->gd != NULL);
818 BUG_ON(info->rq != NULL);
819
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700820 if ((info->vdevice>>EXT_SHIFT) > 1) {
821 /* this is above the extended range; something is wrong */
822 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
823 return -ENODEV;
824 }
825
826 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000827 err = xen_translate_vdev(info->vdevice, &minor, &offset);
828 if (err)
829 return err;
830 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700831 } else {
832 minor = BLKIF_MINOR_EXT(info->vdevice);
833 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000834 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +0200835 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000836 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
837 "emulated IDE disks,\n\t choose an xvd device name"
838 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700839 }
Jan Beuliche77c78c2012-04-05 16:37:22 +0100840 if (minor >> MINORBITS) {
841 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
842 info->vdevice, minor);
843 return -ENODEV;
844 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700845
846 if ((minor % nr_parts) == 0)
847 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700848
Jan Beulich0e345822010-08-07 18:28:55 +0200849 err = xlbd_reserve_minors(minor, nr_minors);
850 if (err)
851 goto out;
852 err = -ENODEV;
853
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700854 gd = alloc_disk(nr_minors);
855 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +0200856 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700857
Jan Beuliche77c78c2012-04-05 16:37:22 +0100858 strcpy(gd->disk_name, DEV_NAME);
859 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
860 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
861 if (nr_minors > 1)
862 *ptr = 0;
863 else
864 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
865 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700866
867 gd->major = XENVBD_MAJOR;
868 gd->first_minor = minor;
869 gd->fops = &xlvbd_block_fops;
870 gd->private_data = info;
871 gd->driverfs_dev = &(info->xbdev->dev);
872 set_capacity(gd, capacity);
873
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200874 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200875 info->max_indirect_segments ? :
876 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700877 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +0200878 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700879 }
880
881 info->rq = gd->queue;
882 info->gd = gd;
883
Tejun Heo4913efe2010-09-03 11:56:16 +0200884 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700885
886 if (vdisk_info & VDISK_READONLY)
887 set_disk_ro(gd, 1);
888
889 if (vdisk_info & VDISK_REMOVABLE)
890 gd->flags |= GENHD_FL_REMOVABLE;
891
892 if (vdisk_info & VDISK_CDROM)
893 gd->flags |= GENHD_FL_CD;
894
895 return 0;
896
Jan Beulich0e345822010-08-07 18:28:55 +0200897 release:
898 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700899 out:
900 return err;
901}
902
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200903static void xlvbd_release_gendisk(struct blkfront_info *info)
904{
905 unsigned int minor, nr_minors;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200906
907 if (info->rq == NULL)
908 return;
909
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200910 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +0800911 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200912
913 /* No more gnttab callback work. */
914 gnttab_cancel_free_callback(&info->callback);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200915
916 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo43829732012-08-20 14:51:24 -0700917 flush_work(&info->work);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200918
919 del_gendisk(info->gd);
920
921 minor = info->gd->first_minor;
922 nr_minors = info->gd->minors;
923 xlbd_release_minors(minor, nr_minors);
924
925 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +0800926 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +0200927 info->rq = NULL;
928
929 put_disk(info->gd);
930 info->gd = NULL;
931}
932
Bob Liu907c3eb2015-07-13 17:55:24 +0800933/* Must be called with io_lock holded */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700934static void kick_pending_request_queues(struct blkfront_info *info)
935{
Bob Liu907c3eb2015-07-13 17:55:24 +0800936 if (!RING_FULL(&info->ring))
937 blk_mq_start_stopped_hw_queues(info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700938}
939
940static void blkif_restart_queue(struct work_struct *work)
941{
942 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
943
Steven Noonan34678112012-02-17 12:04:44 -0800944 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700945 if (info->connected == BLKIF_STATE_CONNECTED)
946 kick_pending_request_queues(info);
Steven Noonan34678112012-02-17 12:04:44 -0800947 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700948}
949
950static void blkif_free(struct blkfront_info *info, int suspend)
951{
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100952 struct grant *persistent_gnt;
953 struct grant *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200954 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200955
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700956 /* Prevent new requests being issued until we fix things up. */
Steven Noonan34678112012-02-17 12:04:44 -0800957 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700958 info->connected = suspend ?
959 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
960 /* No more blkif_request(). */
961 if (info->rq)
Bob Liu907c3eb2015-07-13 17:55:24 +0800962 blk_mq_stop_hw_queues(info->rq);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200963
964 /* Remove all persistent grants */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100965 if (!list_empty(&info->grants)) {
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100966 list_for_each_entry_safe(persistent_gnt, n,
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100967 &info->grants, node) {
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100968 list_del(&persistent_gnt->node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100969 if (persistent_gnt->gref != GRANT_INVALID_REF) {
970 gnttab_end_foreign_access(persistent_gnt->gref,
971 0, 0UL);
972 info->persistent_gnts_c--;
973 }
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100974 if (info->feature_persistent)
975 __free_page(pfn_to_page(persistent_gnt->pfn));
Roger Pau Monne155b7ed2013-03-18 17:49:34 +0100976 kfree(persistent_gnt);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200977 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200978 }
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100979 BUG_ON(info->persistent_gnts_c != 0);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200980
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100981 /*
982 * Remove indirect pages, this only happens when using indirect
983 * descriptors but not persistent grants
984 */
985 if (!list_empty(&info->indirect_pages)) {
986 struct page *indirect_page, *n;
987
988 BUG_ON(info->feature_persistent);
989 list_for_each_entry_safe(indirect_page, n, &info->indirect_pages, lru) {
990 list_del(&indirect_page->lru);
991 __free_page(indirect_page);
992 }
993 }
994
Bob Liu86839c52015-06-03 13:40:03 +0800995 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200996 /*
997 * Clear persistent grants present in requests already
998 * on the shared ring
999 */
1000 if (!info->shadow[i].request)
1001 goto free_shadow;
1002
1003 segs = info->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1004 info->shadow[i].req.u.indirect.nr_segments :
1005 info->shadow[i].req.u.rw.nr_segments;
1006 for (j = 0; j < segs; j++) {
1007 persistent_gnt = info->shadow[i].grants_used[j];
1008 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001009 if (info->feature_persistent)
1010 __free_page(pfn_to_page(persistent_gnt->pfn));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001011 kfree(persistent_gnt);
1012 }
1013
1014 if (info->shadow[i].req.operation != BLKIF_OP_INDIRECT)
1015 /*
1016 * If this is not an indirect operation don't try to
1017 * free indirect segments
1018 */
1019 goto free_shadow;
1020
1021 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
1022 persistent_gnt = info->shadow[i].indirect_grants[j];
1023 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
1024 __free_page(pfn_to_page(persistent_gnt->pfn));
1025 kfree(persistent_gnt);
1026 }
1027
1028free_shadow:
1029 kfree(info->shadow[i].grants_used);
1030 info->shadow[i].grants_used = NULL;
1031 kfree(info->shadow[i].indirect_grants);
1032 info->shadow[i].indirect_grants = NULL;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001033 kfree(info->shadow[i].sg);
1034 info->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001035 }
1036
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001037 /* No more gnttab callback work. */
1038 gnttab_cancel_free_callback(&info->callback);
Steven Noonan34678112012-02-17 12:04:44 -08001039 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001040
1041 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo43829732012-08-20 14:51:24 -07001042 flush_work(&info->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001043
1044 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001045 for (i = 0; i < info->nr_ring_pages; i++) {
1046 if (info->ring_ref[i] != GRANT_INVALID_REF) {
1047 gnttab_end_foreign_access(info->ring_ref[i], 0, 0);
1048 info->ring_ref[i] = GRANT_INVALID_REF;
1049 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001050 }
Bob Liu86839c52015-06-03 13:40:03 +08001051 free_pages((unsigned long)info->ring.sring, get_order(info->nr_ring_pages * PAGE_SIZE));
1052 info->ring.sring = NULL;
1053
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001054 if (info->irq)
1055 unbind_from_irqhandler(info->irq, info);
1056 info->evtchn = info->irq = 0;
1057
1058}
1059
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001060static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info,
1061 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001062{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001063 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001064 struct scatterlist *sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001065 char *bvec_data;
1066 void *shared_data;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001067 int nseg;
1068
1069 nseg = s->req.operation == BLKIF_OP_INDIRECT ?
1070 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001071
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001072 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001073 for_each_sg(s->sg, sg, nseg, i) {
1074 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001075 shared_data = kmap_atomic(
1076 pfn_to_page(s->grants_used[i]->pfn));
Roger Pau Monneb7649152013-05-02 10:58:50 +02001077 bvec_data = kmap_atomic(sg_page(sg));
1078 memcpy(bvec_data + sg->offset,
1079 shared_data + sg->offset,
1080 sg->length);
1081 kunmap_atomic(bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001082 kunmap_atomic(shared_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001083 }
1084 }
1085 /* Add the persistent grant into the list of free grants */
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001086 for (i = 0; i < nseg; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001087 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1088 /*
1089 * If the grant is still mapped by the backend (the
1090 * backend has chosen to make this grant persistent)
1091 * we add it at the head of the list, so it will be
1092 * reused first.
1093 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001094 if (!info->feature_persistent)
1095 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1096 s->grants_used[i]->gref);
1097 list_add(&s->grants_used[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001098 info->persistent_gnts_c++;
1099 } else {
1100 /*
1101 * If the grant is not mapped by the backend we end the
1102 * foreign access and add it to the tail of the list,
1103 * so it will not be picked again unless we run out of
1104 * persistent grants.
1105 */
1106 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1107 s->grants_used[i]->gref = GRANT_INVALID_REF;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001108 list_add_tail(&s->grants_used[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001109 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001110 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001111 if (s->req.operation == BLKIF_OP_INDIRECT) {
1112 for (i = 0; i < INDIRECT_GREFS(nseg); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001113 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001114 if (!info->feature_persistent)
1115 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1116 s->indirect_grants[i]->gref);
1117 list_add(&s->indirect_grants[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001118 info->persistent_gnts_c++;
1119 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001120 struct page *indirect_page;
1121
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001122 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001123 /*
1124 * Add the used indirect page back to the list of
1125 * available pages for indirect grefs.
1126 */
Bob Liu7b076752015-07-22 14:40:09 +08001127 if (!info->feature_persistent) {
1128 indirect_page = pfn_to_page(s->indirect_grants[i]->pfn);
1129 list_add(&indirect_page->lru, &info->indirect_pages);
1130 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001131 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001132 list_add_tail(&s->indirect_grants[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001133 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001134 }
1135 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001136}
1137
1138static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1139{
1140 struct request *req;
1141 struct blkif_response *bret;
1142 RING_IDX i, rp;
1143 unsigned long flags;
1144 struct blkfront_info *info = (struct blkfront_info *)dev_id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001145
Steven Noonan34678112012-02-17 12:04:44 -08001146 spin_lock_irqsave(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001147
1148 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
Steven Noonan34678112012-02-17 12:04:44 -08001149 spin_unlock_irqrestore(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001150 return IRQ_HANDLED;
1151 }
1152
1153 again:
1154 rp = info->ring.sring->rsp_prod;
1155 rmb(); /* Ensure we see queued responses up to 'rp'. */
1156
1157 for (i = info->ring.rsp_cons; i != rp; i++) {
1158 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001159
1160 bret = RING_GET_RESPONSE(&info->ring, i);
1161 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001162 /*
1163 * The backend has messed up and given us an id that we would
1164 * never have given to it (we stamp it up to BLK_RING_SIZE -
1165 * look in get_id_from_freelist.
1166 */
Bob Liu86839c52015-06-03 13:40:03 +08001167 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001168 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1169 info->gd->disk_name, op_name(bret->operation), id);
1170 /* We can't safely get the 'struct request' as
1171 * the id is busted. */
1172 continue;
1173 }
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001174 req = info->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001175
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001176 if (bret->operation != BLKIF_OP_DISCARD)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001177 blkif_completion(&info->shadow[id], info, bret);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001178
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001179 if (add_id_to_freelist(info, id)) {
1180 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1181 info->gd->disk_name, op_name(bret->operation), id);
1182 continue;
1183 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001184
Bob Liu907c3eb2015-07-13 17:55:24 +08001185 req->errors = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001186 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001187 case BLKIF_OP_DISCARD:
1188 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1189 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001190 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1191 info->gd->disk_name, op_name(bret->operation));
Bob Liu907c3eb2015-07-13 17:55:24 +08001192 req->errors = -EOPNOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001193 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001194 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001195 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001196 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001197 }
Bob Liu907c3eb2015-07-13 17:55:24 +08001198 blk_mq_complete_request(req);
Li Dongyanged30bf32011-09-01 18:39:09 +08001199 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001200 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001201 case BLKIF_OP_WRITE_BARRIER:
1202 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001203 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1204 info->gd->disk_name, op_name(bret->operation));
Bob Liu907c3eb2015-07-13 17:55:24 +08001205 req->errors = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001206 }
1207 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001208 info->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001209 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1210 info->gd->disk_name, op_name(bret->operation));
Bob Liu907c3eb2015-07-13 17:55:24 +08001211 req->errors = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001212 }
Bob Liu907c3eb2015-07-13 17:55:24 +08001213 if (unlikely(req->errors)) {
1214 if (req->errors == -EOPNOTSUPP)
1215 req->errors = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001216 info->feature_flush = 0;
1217 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001218 }
1219 /* fall through */
1220 case BLKIF_OP_READ:
1221 case BLKIF_OP_WRITE:
1222 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1223 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1224 "request: %x\n", bret->status);
1225
Bob Liu907c3eb2015-07-13 17:55:24 +08001226 blk_mq_complete_request(req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001227 break;
1228 default:
1229 BUG();
1230 }
1231 }
1232
1233 info->ring.rsp_cons = i;
1234
1235 if (i != info->ring.req_prod_pvt) {
1236 int more_to_do;
1237 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
1238 if (more_to_do)
1239 goto again;
1240 } else
1241 info->ring.sring->rsp_event = i + 1;
1242
1243 kick_pending_request_queues(info);
1244
Steven Noonan34678112012-02-17 12:04:44 -08001245 spin_unlock_irqrestore(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001246
1247 return IRQ_HANDLED;
1248}
1249
1250
1251static int setup_blkring(struct xenbus_device *dev,
1252 struct blkfront_info *info)
1253{
1254 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001255 int err, i;
1256 unsigned long ring_size = info->nr_ring_pages * PAGE_SIZE;
1257 grant_ref_t gref[XENBUS_MAX_RING_PAGES];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001258
Bob Liu86839c52015-06-03 13:40:03 +08001259 for (i = 0; i < info->nr_ring_pages; i++)
1260 info->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001261
Bob Liu86839c52015-06-03 13:40:03 +08001262 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1263 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001264 if (!sring) {
1265 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1266 return -ENOMEM;
1267 }
1268 SHARED_RING_INIT(sring);
Bob Liu86839c52015-06-03 13:40:03 +08001269 FRONT_RING_INIT(&info->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001270
Bob Liu86839c52015-06-03 13:40:03 +08001271 err = xenbus_grant_ring(dev, info->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001272 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001273 free_pages((unsigned long)sring, get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001274 info->ring.sring = NULL;
1275 goto fail;
1276 }
Bob Liu86839c52015-06-03 13:40:03 +08001277 for (i = 0; i < info->nr_ring_pages; i++)
1278 info->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001279
1280 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1281 if (err)
1282 goto fail;
1283
Theodore Ts'o89c30f12012-07-17 13:46:19 -04001284 err = bind_evtchn_to_irqhandler(info->evtchn, blkif_interrupt, 0,
1285 "blkif", info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001286 if (err <= 0) {
1287 xenbus_dev_fatal(dev, err,
1288 "bind_evtchn_to_irqhandler failed");
1289 goto fail;
1290 }
1291 info->irq = err;
1292
1293 return 0;
1294fail:
1295 blkif_free(info, 0);
1296 return err;
1297}
1298
1299
1300/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001301static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001302 struct blkfront_info *info)
1303{
1304 const char *message = NULL;
1305 struct xenbus_transaction xbt;
Bob Liu86839c52015-06-03 13:40:03 +08001306 int err, i;
1307 unsigned int max_page_order = 0;
1308 unsigned int ring_page_order = 0;
1309
1310 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1311 "max-ring-page-order", "%u", &max_page_order);
1312 if (err != 1)
1313 info->nr_ring_pages = 1;
1314 else {
1315 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1316 info->nr_ring_pages = 1 << ring_page_order;
1317 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001318
1319 /* Create shared ring, alloc event channel. */
1320 err = setup_blkring(dev, info);
1321 if (err)
1322 goto out;
1323
1324again:
1325 err = xenbus_transaction_start(&xbt);
1326 if (err) {
1327 xenbus_dev_fatal(dev, err, "starting transaction");
1328 goto destroy_blkring;
1329 }
1330
Bob Liu86839c52015-06-03 13:40:03 +08001331 if (info->nr_ring_pages == 1) {
1332 err = xenbus_printf(xbt, dev->nodename,
1333 "ring-ref", "%u", info->ring_ref[0]);
1334 if (err) {
1335 message = "writing ring-ref";
1336 goto abort_transaction;
1337 }
1338 } else {
1339 err = xenbus_printf(xbt, dev->nodename,
1340 "ring-page-order", "%u", ring_page_order);
1341 if (err) {
1342 message = "writing ring-page-order";
1343 goto abort_transaction;
1344 }
1345
1346 for (i = 0; i < info->nr_ring_pages; i++) {
1347 char ring_ref_name[RINGREF_NAME_LEN];
1348
1349 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1350 err = xenbus_printf(xbt, dev->nodename, ring_ref_name,
1351 "%u", info->ring_ref[i]);
1352 if (err) {
1353 message = "writing ring-ref";
1354 goto abort_transaction;
1355 }
1356 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001357 }
1358 err = xenbus_printf(xbt, dev->nodename,
1359 "event-channel", "%u", info->evtchn);
1360 if (err) {
1361 message = "writing event-channel";
1362 goto abort_transaction;
1363 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001364 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1365 XEN_IO_PROTO_ABI_NATIVE);
1366 if (err) {
1367 message = "writing protocol";
1368 goto abort_transaction;
1369 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001370 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001371 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001372 if (err)
1373 dev_warn(&dev->dev,
1374 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001375
1376 err = xenbus_transaction_end(xbt, 0);
1377 if (err) {
1378 if (err == -EAGAIN)
1379 goto again;
1380 xenbus_dev_fatal(dev, err, "completing transaction");
1381 goto destroy_blkring;
1382 }
1383
Bob Liu86839c52015-06-03 13:40:03 +08001384 for (i = 0; i < BLK_RING_SIZE(info); i++)
1385 info->shadow[i].req.u.rw.id = i+1;
1386 info->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001387 xenbus_switch_state(dev, XenbusStateInitialised);
1388
1389 return 0;
1390
1391 abort_transaction:
1392 xenbus_transaction_end(xbt, 1);
1393 if (message)
1394 xenbus_dev_fatal(dev, err, "%s", message);
1395 destroy_blkring:
1396 blkif_free(info, 0);
1397 out:
1398 return err;
1399}
1400
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001401/**
1402 * Entry point to this code when a new device is created. Allocate the basic
1403 * structures and the ring buffer for communication with the backend, and
1404 * inform the backend of the appropriate details for those. Switch to
1405 * Initialised state.
1406 */
1407static int blkfront_probe(struct xenbus_device *dev,
1408 const struct xenbus_device_id *id)
1409{
Bob Liu86839c52015-06-03 13:40:03 +08001410 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001411 struct blkfront_info *info;
1412
1413 /* FIXME: Use dynamic device id if this is not set. */
1414 err = xenbus_scanf(XBT_NIL, dev->nodename,
1415 "virtual-device", "%i", &vdevice);
1416 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001417 /* go looking in the extended area instead */
1418 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1419 "%i", &vdevice);
1420 if (err != 1) {
1421 xenbus_dev_fatal(dev, err, "reading virtual-device");
1422 return err;
1423 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001424 }
1425
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001426 if (xen_hvm_domain()) {
1427 char *type;
1428 int len;
1429 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001430 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001431 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001432
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001433 if (!VDEV_IS_EXTENDED(vdevice))
1434 major = BLKIF_MAJOR(vdevice);
1435 else
1436 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001437
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001438 if (major != XENVBD_MAJOR) {
1439 printk(KERN_INFO
1440 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001441 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001442 return -ENODEV;
1443 }
1444 }
1445 /* do not create a PV cdrom device if we are an HVM guest */
1446 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1447 if (IS_ERR(type))
1448 return -ENODEV;
1449 if (strncmp(type, "cdrom", 5) == 0) {
1450 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001451 return -ENODEV;
1452 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001453 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001454 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001455 info = kzalloc(sizeof(*info), GFP_KERNEL);
1456 if (!info) {
1457 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1458 return -ENOMEM;
1459 }
1460
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001461 mutex_init(&info->mutex);
Steven Noonan34678112012-02-17 12:04:44 -08001462 spin_lock_init(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001463 info->xbdev = dev;
1464 info->vdevice = vdevice;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001465 INIT_LIST_HEAD(&info->grants);
1466 INIT_LIST_HEAD(&info->indirect_pages);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001467 info->persistent_gnts_c = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001468 info->connected = BLKIF_STATE_DISCONNECTED;
1469 INIT_WORK(&info->work, blkif_restart_queue);
1470
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001471 /* Front end dir is a number, which is used as the id. */
1472 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001473 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001474
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001475 return 0;
1476}
1477
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001478static void split_bio_end(struct bio *bio)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001479{
1480 struct split_bio *split_bio = bio->bi_private;
1481
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001482 if (atomic_dec_and_test(&split_bio->pending)) {
1483 split_bio->bio->bi_phys_segments = 0;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001484 split_bio->bio->bi_error = bio->bi_error;
1485 bio_endio(split_bio->bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001486 kfree(split_bio);
1487 }
1488 bio_put(bio);
1489}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001490
1491static int blkif_recover(struct blkfront_info *info)
1492{
1493 int i;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001494 struct request *req, *n;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001495 struct blk_shadow *copy;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001496 int rc;
1497 struct bio *bio, *cloned_bio;
1498 struct bio_list bio_list, merge_bio;
1499 unsigned int segs, offset;
1500 int pending, size;
1501 struct split_bio *split_bio;
1502 struct list_head requests;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001503
1504 /* Stage 1: Make a safe copy of the shadow state. */
Mihnea Dobrescu-Balaur29d0b212013-03-11 13:23:36 +02001505 copy = kmemdup(info->shadow, sizeof(info->shadow),
Ian Campbella144ff02008-06-17 10:47:08 +02001506 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001507 if (!copy)
1508 return -ENOMEM;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001509
1510 /* Stage 2: Set up free list. */
1511 memset(&info->shadow, 0, sizeof(info->shadow));
Bob Liu86839c52015-06-03 13:40:03 +08001512 for (i = 0; i < BLK_RING_SIZE(info); i++)
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001513 info->shadow[i].req.u.rw.id = i+1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001514 info->shadow_free = info->ring.req_prod_pvt;
Bob Liu86839c52015-06-03 13:40:03 +08001515 info->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001516
Bob Liud50babb2015-07-22 14:40:08 +08001517 rc = blkfront_gather_backend_features(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001518 if (rc) {
1519 kfree(copy);
1520 return rc;
1521 }
1522
1523 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
1524 blk_queue_max_segments(info->rq, segs);
1525 bio_list_init(&bio_list);
1526 INIT_LIST_HEAD(&requests);
Bob Liu86839c52015-06-03 13:40:03 +08001527 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001528 /* Not in use? */
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001529 if (!copy[i].request)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001530 continue;
1531
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001532 /*
1533 * Get the bios in the request so we can re-queue them.
1534 */
1535 if (copy[i].request->cmd_flags &
1536 (REQ_FLUSH | REQ_FUA | REQ_DISCARD | REQ_SECURE)) {
1537 /*
1538 * Flush operations don't contain bios, so
1539 * we need to requeue the whole request
1540 */
1541 list_add(&copy[i].request->queuelist, &requests);
1542 continue;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001543 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001544 merge_bio.head = copy[i].request->bio;
1545 merge_bio.tail = copy[i].request->biotail;
1546 bio_list_merge(&bio_list, &merge_bio);
1547 copy[i].request->bio = NULL;
Roger Pau Monne3bb8c982015-02-02 11:28:21 +00001548 blk_end_request_all(copy[i].request, 0);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001549 }
1550
1551 kfree(copy);
1552
1553 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1554
Steven Noonan34678112012-02-17 12:04:44 -08001555 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001556
1557 /* Now safe for us to use the shared ring */
1558 info->connected = BLKIF_STATE_CONNECTED;
1559
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001560 /* Kick any other new requests queued since we resumed */
1561 kick_pending_request_queues(info);
1562
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001563 list_for_each_entry_safe(req, n, &requests, queuelist) {
1564 /* Requeue pending requests (flush or discard) */
1565 list_del_init(&req->queuelist);
1566 BUG_ON(req->nr_phys_segments > segs);
Bob Liu907c3eb2015-07-13 17:55:24 +08001567 blk_mq_requeue_request(req);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001568 }
Steven Noonan34678112012-02-17 12:04:44 -08001569 spin_unlock_irq(&info->io_lock);
Bob Liu907c3eb2015-07-13 17:55:24 +08001570 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001571
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001572 while ((bio = bio_list_pop(&bio_list)) != NULL) {
1573 /* Traverse the list of pending bios and re-queue them */
1574 if (bio_segments(bio) > segs) {
1575 /*
1576 * This bio has more segments than what we can
1577 * handle, we have to split it.
1578 */
1579 pending = (bio_segments(bio) + segs - 1) / segs;
1580 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
1581 BUG_ON(split_bio == NULL);
1582 atomic_set(&split_bio->pending, pending);
1583 split_bio->bio = bio;
1584 for (i = 0; i < pending; i++) {
1585 offset = (i * segs * PAGE_SIZE) >> 9;
1586 size = min((unsigned int)(segs * PAGE_SIZE) >> 9,
Kent Overstreet4f024f32013-10-11 15:44:27 -07001587 (unsigned int)bio_sectors(bio) - offset);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001588 cloned_bio = bio_clone(bio, GFP_NOIO);
1589 BUG_ON(cloned_bio == NULL);
Kent Overstreet6678d832013-08-07 11:14:32 -07001590 bio_trim(cloned_bio, offset, size);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001591 cloned_bio->bi_private = split_bio;
1592 cloned_bio->bi_end_io = split_bio_end;
1593 submit_bio(cloned_bio->bi_rw, cloned_bio);
1594 }
1595 /*
1596 * Now we have to wait for all those smaller bios to
1597 * end, so we can also end the "parent" bio.
1598 */
1599 continue;
1600 }
1601 /* We don't need to split this bio */
1602 submit_bio(bio->bi_rw, bio);
1603 }
1604
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001605 return 0;
1606}
1607
1608/**
1609 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1610 * driver restart. We tear down our blkif structure and recreate it, but
1611 * leave the device-layer structures intact so that this is transparent to the
1612 * rest of the kernel.
1613 */
1614static int blkfront_resume(struct xenbus_device *dev)
1615{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001616 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001617 int err;
1618
1619 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
1620
1621 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
1622
Ian Campbell203fd612009-12-04 15:33:54 +00001623 err = talk_to_blkback(dev, info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001624
1625 /*
1626 * We have to wait for the backend to switch to
1627 * connected state, since we want to read which
1628 * features it supports.
1629 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001630
1631 return err;
1632}
1633
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001634static void
1635blkfront_closing(struct blkfront_info *info)
1636{
1637 struct xenbus_device *xbdev = info->xbdev;
1638 struct block_device *bdev = NULL;
1639
1640 mutex_lock(&info->mutex);
1641
1642 if (xbdev->state == XenbusStateClosing) {
1643 mutex_unlock(&info->mutex);
1644 return;
1645 }
1646
1647 if (info->gd)
1648 bdev = bdget_disk(info->gd, 0);
1649
1650 mutex_unlock(&info->mutex);
1651
1652 if (!bdev) {
1653 xenbus_frontend_closed(xbdev);
1654 return;
1655 }
1656
1657 mutex_lock(&bdev->bd_mutex);
1658
Daniel Stodden7b32d102010-04-30 22:01:23 +00001659 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001660 xenbus_dev_error(xbdev, -EBUSY,
1661 "Device in use; refusing to close");
1662 xenbus_switch_state(xbdev, XenbusStateClosing);
1663 } else {
1664 xlvbd_release_gendisk(info);
1665 xenbus_frontend_closed(xbdev);
1666 }
1667
1668 mutex_unlock(&bdev->bd_mutex);
1669 bdput(bdev);
1670}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001671
Li Dongyanged30bf32011-09-01 18:39:09 +08001672static void blkfront_setup_discard(struct blkfront_info *info)
1673{
1674 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08001675 unsigned int discard_granularity;
1676 unsigned int discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001677 unsigned int discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08001678
Olaf Hering1c8cad62014-05-21 16:32:40 +02001679 info->feature_discard = 1;
1680 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1681 "discard-granularity", "%u", &discard_granularity,
1682 "discard-alignment", "%u", &discard_alignment,
1683 NULL);
1684 if (!err) {
1685 info->discard_granularity = discard_granularity;
1686 info->discard_alignment = discard_alignment;
1687 }
1688 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1689 "discard-secure", "%d", &discard_secure,
1690 NULL);
1691 if (!err)
1692 info->feature_secdiscard = !!discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08001693}
1694
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001695static int blkfront_setup_indirect(struct blkfront_info *info)
1696{
Bob Liud50babb2015-07-22 14:40:08 +08001697 unsigned int segs;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001698 int err, i;
1699
Bob Liud50babb2015-07-22 14:40:08 +08001700 if (info->max_indirect_segments == 0)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001701 segs = BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liud50babb2015-07-22 14:40:08 +08001702 else
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001703 segs = info->max_indirect_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001704
Bob Liu86839c52015-06-03 13:40:03 +08001705 err = fill_grant_buffer(info, (segs + INDIRECT_GREFS(segs)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001706 if (err)
1707 goto out_of_memory;
1708
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001709 if (!info->feature_persistent && info->max_indirect_segments) {
1710 /*
1711 * We are using indirect descriptors but not persistent
1712 * grants, we need to allocate a set of pages that can be
1713 * used for mapping indirect grefs
1714 */
Bob Liu86839c52015-06-03 13:40:03 +08001715 int num = INDIRECT_GREFS(segs) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001716
1717 BUG_ON(!list_empty(&info->indirect_pages));
1718 for (i = 0; i < num; i++) {
1719 struct page *indirect_page = alloc_page(GFP_NOIO);
1720 if (!indirect_page)
1721 goto out_of_memory;
1722 list_add(&indirect_page->lru, &info->indirect_pages);
1723 }
1724 }
1725
Bob Liu86839c52015-06-03 13:40:03 +08001726 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001727 info->shadow[i].grants_used = kzalloc(
1728 sizeof(info->shadow[i].grants_used[0]) * segs,
1729 GFP_NOIO);
Roger Pau Monneb7649152013-05-02 10:58:50 +02001730 info->shadow[i].sg = kzalloc(sizeof(info->shadow[i].sg[0]) * segs, GFP_NOIO);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001731 if (info->max_indirect_segments)
1732 info->shadow[i].indirect_grants = kzalloc(
1733 sizeof(info->shadow[i].indirect_grants[0]) *
1734 INDIRECT_GREFS(segs),
1735 GFP_NOIO);
1736 if ((info->shadow[i].grants_used == NULL) ||
Roger Pau Monneb7649152013-05-02 10:58:50 +02001737 (info->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001738 (info->max_indirect_segments &&
1739 (info->shadow[i].indirect_grants == NULL)))
1740 goto out_of_memory;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001741 sg_init_table(info->shadow[i].sg, segs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001742 }
1743
1744
1745 return 0;
1746
1747out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08001748 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001749 kfree(info->shadow[i].grants_used);
1750 info->shadow[i].grants_used = NULL;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001751 kfree(info->shadow[i].sg);
1752 info->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001753 kfree(info->shadow[i].indirect_grants);
1754 info->shadow[i].indirect_grants = NULL;
1755 }
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001756 if (!list_empty(&info->indirect_pages)) {
1757 struct page *indirect_page, *n;
1758 list_for_each_entry_safe(indirect_page, n, &info->indirect_pages, lru) {
1759 list_del(&indirect_page->lru);
1760 __free_page(indirect_page);
1761 }
1762 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001763 return -ENOMEM;
1764}
1765
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001766/*
Bob Liud50babb2015-07-22 14:40:08 +08001767 * Gather all backend feature-*
1768 */
1769static int blkfront_gather_backend_features(struct blkfront_info *info)
1770{
1771 int err;
1772 int barrier, flush, discard, persistent;
1773 unsigned int indirect_segments;
1774
1775 info->feature_flush = 0;
1776
1777 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1778 "feature-barrier", "%d", &barrier,
1779 NULL);
1780
1781 /*
1782 * If there's no "feature-barrier" defined, then it means
1783 * we're dealing with a very old backend which writes
1784 * synchronously; nothing to do.
1785 *
1786 * If there are barriers, then we use flush.
1787 */
1788 if (!err && barrier)
1789 info->feature_flush = REQ_FLUSH | REQ_FUA;
1790 /*
1791 * And if there is "feature-flush-cache" use that above
1792 * barriers.
1793 */
1794 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1795 "feature-flush-cache", "%d", &flush,
1796 NULL);
1797
1798 if (!err && flush)
1799 info->feature_flush = REQ_FLUSH;
1800
1801 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1802 "feature-discard", "%d", &discard,
1803 NULL);
1804
1805 if (!err && discard)
1806 blkfront_setup_discard(info);
1807
1808 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1809 "feature-persistent", "%u", &persistent,
1810 NULL);
1811 if (err)
1812 info->feature_persistent = 0;
1813 else
1814 info->feature_persistent = persistent;
1815
1816 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1817 "feature-max-indirect-segments", "%u", &indirect_segments,
1818 NULL);
1819 if (err)
1820 info->max_indirect_segments = 0;
1821 else
1822 info->max_indirect_segments = min(indirect_segments,
1823 xen_blkif_max_segments);
1824
1825 return blkfront_setup_indirect(info);
1826}
1827
1828/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001829 * Invoked when the backend is finally 'ready' (and has told produced
1830 * the details about the physical device - #sectors, size, etc).
1831 */
1832static void blkfront_connect(struct blkfront_info *info)
1833{
1834 unsigned long long sectors;
1835 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001836 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001837 unsigned int binfo;
1838 int err;
1839
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001840 switch (info->connected) {
1841 case BLKIF_STATE_CONNECTED:
1842 /*
1843 * Potentially, the back-end may be signalling
1844 * a capacity change; update the capacity.
1845 */
1846 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1847 "sectors", "%Lu", &sectors);
1848 if (XENBUS_EXIST_ERR(err))
1849 return;
1850 printk(KERN_INFO "Setting capacity to %Lu\n",
1851 sectors);
1852 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07001853 revalidate_disk(info->gd);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001854
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001855 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001856 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001857 /*
1858 * If we are recovering from suspension, we need to wait
1859 * for the backend to announce it's features before
1860 * reconnecting, at least we need to know if the backend
1861 * supports indirect descriptors, and how many.
1862 */
1863 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001864 return;
1865
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08001866 default:
1867 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08001868 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001869
1870 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
1871 __func__, info->xbdev->otherend);
1872
1873 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1874 "sectors", "%llu", &sectors,
1875 "info", "%u", &binfo,
1876 "sector-size", "%lu", &sector_size,
1877 NULL);
1878 if (err) {
1879 xenbus_dev_fatal(info->xbdev, err,
1880 "reading backend fields at %s",
1881 info->xbdev->otherend);
1882 return;
1883 }
1884
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001885 /*
1886 * physcial-sector-size is a newer field, so old backends may not
1887 * provide this. Assume physical sector size to be the same as
1888 * sector_size in that case.
1889 */
1890 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1891 "physical-sector-size", "%u", &physical_sector_size);
1892 if (err != 1)
1893 physical_sector_size = sector_size;
1894
Bob Liud50babb2015-07-22 14:40:08 +08001895 err = blkfront_gather_backend_features(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001896 if (err) {
1897 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
1898 info->xbdev->otherend);
1899 return;
1900 }
1901
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001902 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
1903 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001904 if (err) {
1905 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
1906 info->xbdev->otherend);
1907 return;
1908 }
1909
1910 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1911
1912 /* Kick pending requests. */
Steven Noonan34678112012-02-17 12:04:44 -08001913 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001914 info->connected = BLKIF_STATE_CONNECTED;
1915 kick_pending_request_queues(info);
Steven Noonan34678112012-02-17 12:04:44 -08001916 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001917
1918 add_disk(info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07001919
1920 info->is_ready = 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001921}
1922
1923/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001924 * Callback received when the backend's state changes.
1925 */
Ian Campbell203fd612009-12-04 15:33:54 +00001926static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001927 enum xenbus_state backend_state)
1928{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001929 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001930
Ian Campbell203fd612009-12-04 15:33:54 +00001931 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001932
1933 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001934 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04001935 if (dev->state != XenbusStateInitialising)
1936 break;
Bob Liu8ab01442015-06-03 13:40:02 +08001937 if (talk_to_blkback(dev, info)) {
1938 kfree(info);
1939 dev_set_drvdata(&dev->dev, NULL);
1940 break;
1941 }
1942 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001943 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04001944 case XenbusStateReconfiguring:
1945 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001946 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001947 break;
1948
1949 case XenbusStateConnected:
1950 blkfront_connect(info);
1951 break;
1952
David Vrabel36613712014-02-04 18:53:56 +00001953 case XenbusStateClosed:
1954 if (dev->state == XenbusStateClosed)
1955 break;
1956 /* Missed the backend's Closing state -- fallthrough */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001957 case XenbusStateClosing:
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001958 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001959 break;
1960 }
1961}
1962
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001963static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001964{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001965 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
1966 struct block_device *bdev = NULL;
1967 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001968
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001969 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001970
1971 blkif_free(info, 0);
1972
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001973 mutex_lock(&info->mutex);
1974
1975 disk = info->gd;
1976 if (disk)
1977 bdev = bdget_disk(disk, 0);
1978
1979 info->xbdev = NULL;
1980 mutex_unlock(&info->mutex);
1981
1982 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02001983 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00001984 return 0;
1985 }
1986
1987 /*
1988 * The xbdev was removed before we reached the Closed
1989 * state. See if it's safe to remove the disk. If the bdev
1990 * isn't closed yet, we let release take care of it.
1991 */
1992
1993 mutex_lock(&bdev->bd_mutex);
1994 info = disk->private_data;
1995
Daniel Stoddend54142c2010-08-07 18:51:21 +02001996 dev_warn(disk_to_dev(disk),
1997 "%s was hot-unplugged, %d stale handles\n",
1998 xbdev->nodename, bdev->bd_openers);
1999
Daniel Stodden7b32d102010-04-30 22:01:23 +00002000 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002001 xlvbd_release_gendisk(info);
2002 disk->private_data = NULL;
2003 kfree(info);
2004 }
2005
2006 mutex_unlock(&bdev->bd_mutex);
2007 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002008
2009 return 0;
2010}
2011
Christian Limpach1d78d702008-04-02 10:54:04 -07002012static int blkfront_is_ready(struct xenbus_device *dev)
2013{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002014 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002015
Jan Beulich5d7ed202010-08-07 18:31:12 +02002016 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002017}
2018
Al Viroa63c8482008-03-02 10:23:47 -05002019static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002020{
Daniel Stodden13961742010-08-07 18:36:53 +02002021 struct gendisk *disk = bdev->bd_disk;
2022 struct blkfront_info *info;
2023 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002024
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002025 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002026
Daniel Stodden13961742010-08-07 18:36:53 +02002027 info = disk->private_data;
2028 if (!info) {
2029 /* xbdev gone */
2030 err = -ERESTARTSYS;
2031 goto out;
2032 }
2033
2034 mutex_lock(&info->mutex);
2035
2036 if (!info->gd)
2037 /* xbdev is closed */
2038 err = -ERESTARTSYS;
2039
2040 mutex_unlock(&info->mutex);
2041
Daniel Stodden13961742010-08-07 18:36:53 +02002042out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002043 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002044 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002045}
2046
Al Virodb2a1442013-05-05 21:52:57 -04002047static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002048{
Al Viroa63c8482008-03-02 10:23:47 -05002049 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002050 struct block_device *bdev;
2051 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002052
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002053 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002054
2055 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002056
Felipe Pena2f089cb2013-11-09 13:36:09 -02002057 if (!bdev) {
2058 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2059 goto out_mutex;
2060 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002061 if (bdev->bd_openers)
2062 goto out;
2063
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002064 /*
2065 * Check if we have been instructed to close. We will have
2066 * deferred this request, because the bdev was still open.
2067 */
2068
2069 mutex_lock(&info->mutex);
2070 xbdev = info->xbdev;
2071
2072 if (xbdev && xbdev->state == XenbusStateClosing) {
2073 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002074 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002075 xlvbd_release_gendisk(info);
2076 xenbus_frontend_closed(info->xbdev);
2077 }
2078
2079 mutex_unlock(&info->mutex);
2080
2081 if (!xbdev) {
2082 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002083 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002084 xlvbd_release_gendisk(info);
2085 disk->private_data = NULL;
2086 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002087 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002088
Jens Axboea4cc14e2010-08-08 21:50:05 -04002089out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002090 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002091out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002092 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002093}
2094
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002095static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002096{
2097 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002098 .open = blkif_open,
2099 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002100 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002101 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002102};
2103
2104
Márton Némethec9c42e2010-01-10 13:39:52 +01002105static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002106 { "vbd" },
2107 { "" }
2108};
2109
David Vrabel95afae42014-09-08 17:30:41 +01002110static struct xenbus_driver blkfront_driver = {
2111 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002112 .probe = blkfront_probe,
2113 .remove = blkfront_remove,
2114 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002115 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002116 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002117};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002118
2119static int __init xlblk_init(void)
2120{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002121 int ret;
2122
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002123 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002124 return -ENODEV;
2125
Bob Liu86839c52015-06-03 13:40:03 +08002126 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_PAGE_ORDER) {
2127 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
2128 xen_blkif_max_ring_order, XENBUS_MAX_RING_PAGE_ORDER);
2129 xen_blkif_max_ring_order = 0;
2130 }
2131
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05002132 if (!xen_has_pv_disk_devices())
Igor Mammedovb9136d22012-03-21 15:08:38 +01002133 return -ENODEV;
2134
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002135 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2136 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2137 XENVBD_MAJOR, DEV_NAME);
2138 return -ENODEV;
2139 }
2140
Jan Beulich73db1442011-12-22 09:08:13 +00002141 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002142 if (ret) {
2143 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2144 return ret;
2145 }
2146
2147 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002148}
2149module_init(xlblk_init);
2150
2151
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002152static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002153{
Jan Beulich86050672012-04-05 16:04:52 +01002154 xenbus_unregister_driver(&blkfront_driver);
2155 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2156 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002157}
2158module_exit(xlblk_exit);
2159
2160MODULE_DESCRIPTION("Xen virtual block device frontend");
2161MODULE_LICENSE("GPL");
2162MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002163MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002164MODULE_ALIAS("xenblk");