llist/xen-blkfront: implement safe version of llist_for_each_entry
[deliverable/linux.git] / drivers / block / xen-blkfront.c
CommitLineData
9f27ee59
JF
1/*
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>
597592d9 40#include <linux/hdreg.h>
440a01a7 41#include <linux/cdrom.h>
9f27ee59 42#include <linux/module.h>
5a0e3ad6 43#include <linux/slab.h>
2a48fc0a 44#include <linux/mutex.h>
9e973e64 45#include <linux/scatterlist.h>
34ae2e47 46#include <linux/bitmap.h>
0a8704a5 47#include <linux/llist.h>
9f27ee59 48
1ccbf534 49#include <xen/xen.h>
9f27ee59
JF
50#include <xen/xenbus.h>
51#include <xen/grant_table.h>
52#include <xen/events.h>
53#include <xen/page.h>
c1c5413a 54#include <xen/platform_pci.h>
9f27ee59
JF
55
56#include <xen/interface/grant_table.h>
57#include <xen/interface/io/blkif.h>
3e334239 58#include <xen/interface/io/protocols.h>
9f27ee59
JF
59
60#include <asm/xen/hypervisor.h>
61
62enum blkif_state {
63 BLKIF_STATE_DISCONNECTED,
64 BLKIF_STATE_CONNECTED,
65 BLKIF_STATE_SUSPENDED,
66};
67
0a8704a5
RPM
68struct grant {
69 grant_ref_t gref;
70 unsigned long pfn;
71 struct llist_node node;
72};
73
9f27ee59
JF
74struct blk_shadow {
75 struct blkif_request req;
a945b980 76 struct request *request;
9f27ee59 77 unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST];
0a8704a5 78 struct grant *grants_used[BLKIF_MAX_SEGMENTS_PER_REQUEST];
9f27ee59
JF
79};
80
2a48fc0a 81static DEFINE_MUTEX(blkfront_mutex);
83d5cde4 82static const struct block_device_operations xlvbd_block_fops;
9f27ee59 83
667c78af 84#define BLK_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE)
9f27ee59
JF
85
86/*
87 * We have one of these per vbd, whether ide, scsi or 'other'. They
88 * hang in private_data off the gendisk structure. We may end up
89 * putting all kinds of interesting stuff here :-)
90 */
91struct blkfront_info
92{
3467811e 93 spinlock_t io_lock;
b70f5fa0 94 struct mutex mutex;
9f27ee59 95 struct xenbus_device *xbdev;
9f27ee59
JF
96 struct gendisk *gd;
97 int vdevice;
98 blkif_vdev_t handle;
99 enum blkif_state connected;
100 int ring_ref;
101 struct blkif_front_ring ring;
9e973e64 102 struct scatterlist sg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
9f27ee59
JF
103 unsigned int evtchn, irq;
104 struct request_queue *rq;
105 struct work_struct work;
106 struct gnttab_free_callback callback;
107 struct blk_shadow shadow[BLK_RING_SIZE];
0a8704a5
RPM
108 struct llist_head persistent_gnts;
109 unsigned int persistent_gnts_c;
9f27ee59 110 unsigned long shadow_free;
4913efe4 111 unsigned int feature_flush;
edf6ef59 112 unsigned int flush_op;
5ea42986
KRW
113 unsigned int feature_discard:1;
114 unsigned int feature_secdiscard:1;
ed30bf31
LD
115 unsigned int discard_granularity;
116 unsigned int discard_alignment;
0a8704a5 117 unsigned int feature_persistent:1;
1d78d705 118 int is_ready;
9f27ee59
JF
119};
120
0e345826
JB
121static unsigned int nr_minors;
122static unsigned long *minors;
123static DEFINE_SPINLOCK(minor_lock);
124
9f27ee59
JF
125#define MAXIMUM_OUTSTANDING_BLOCK_REQS \
126 (BLKIF_MAX_SEGMENTS_PER_REQUEST * BLK_RING_SIZE)
127#define GRANT_INVALID_REF 0
128
129#define PARTS_PER_DISK 16
9246b5f0 130#define PARTS_PER_EXT_DISK 256
9f27ee59
JF
131
132#define BLKIF_MAJOR(dev) ((dev)>>8)
133#define BLKIF_MINOR(dev) ((dev) & 0xff)
134
9246b5f0
CL
135#define EXT_SHIFT 28
136#define EXTENDED (1<<EXT_SHIFT)
137#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
138#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
c80a4209
SS
139#define EMULATED_HD_DISK_MINOR_OFFSET (0)
140#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
196cfe2a
SB
141#define EMULATED_SD_DISK_MINOR_OFFSET (0)
142#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
9f27ee59 143
9246b5f0 144#define DEV_NAME "xvd" /* name in /dev */
9f27ee59
JF
145
146static int get_id_from_freelist(struct blkfront_info *info)
147{
148 unsigned long free = info->shadow_free;
b9ed7252 149 BUG_ON(free >= BLK_RING_SIZE);
97e36834
KRW
150 info->shadow_free = info->shadow[free].req.u.rw.id;
151 info->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
9f27ee59
JF
152 return free;
153}
154
6878c32e 155static int add_id_to_freelist(struct blkfront_info *info,
9f27ee59
JF
156 unsigned long id)
157{
6878c32e
KRW
158 if (info->shadow[id].req.u.rw.id != id)
159 return -EINVAL;
160 if (info->shadow[id].request == NULL)
161 return -EINVAL;
97e36834 162 info->shadow[id].req.u.rw.id = info->shadow_free;
a945b980 163 info->shadow[id].request = NULL;
9f27ee59 164 info->shadow_free = id;
6878c32e 165 return 0;
9f27ee59
JF
166}
167
6878c32e
KRW
168static const char *op_name(int op)
169{
170 static const char *const names[] = {
171 [BLKIF_OP_READ] = "read",
172 [BLKIF_OP_WRITE] = "write",
173 [BLKIF_OP_WRITE_BARRIER] = "barrier",
174 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
175 [BLKIF_OP_DISCARD] = "discard" };
176
177 if (op < 0 || op >= ARRAY_SIZE(names))
178 return "unknown";
179
180 if (!names[op])
181 return "reserved";
182
183 return names[op];
184}
0e345826
JB
185static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
186{
187 unsigned int end = minor + nr;
188 int rc;
189
190 if (end > nr_minors) {
191 unsigned long *bitmap, *old;
192
f094148a 193 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
0e345826
JB
194 GFP_KERNEL);
195 if (bitmap == NULL)
196 return -ENOMEM;
197
198 spin_lock(&minor_lock);
199 if (end > nr_minors) {
200 old = minors;
201 memcpy(bitmap, minors,
202 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
203 minors = bitmap;
204 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
205 } else
206 old = bitmap;
207 spin_unlock(&minor_lock);
208 kfree(old);
209 }
210
211 spin_lock(&minor_lock);
212 if (find_next_bit(minors, end, minor) >= end) {
34ae2e47 213 bitmap_set(minors, minor, nr);
0e345826
JB
214 rc = 0;
215 } else
216 rc = -EBUSY;
217 spin_unlock(&minor_lock);
218
219 return rc;
220}
221
222static void xlbd_release_minors(unsigned int minor, unsigned int nr)
223{
224 unsigned int end = minor + nr;
225
226 BUG_ON(end > nr_minors);
227 spin_lock(&minor_lock);
34ae2e47 228 bitmap_clear(minors, minor, nr);
0e345826
JB
229 spin_unlock(&minor_lock);
230}
231
9f27ee59
JF
232static void blkif_restart_queue_callback(void *arg)
233{
234 struct blkfront_info *info = (struct blkfront_info *)arg;
235 schedule_work(&info->work);
236}
237
afe42d7d 238static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
597592d9
IC
239{
240 /* We don't have real geometry info, but let's at least return
241 values consistent with the size of the device */
242 sector_t nsect = get_capacity(bd->bd_disk);
243 sector_t cylinders = nsect;
244
245 hg->heads = 0xff;
246 hg->sectors = 0x3f;
247 sector_div(cylinders, hg->heads * hg->sectors);
248 hg->cylinders = cylinders;
249 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
250 hg->cylinders = 0xffff;
251 return 0;
252}
253
a63c848b 254static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
62aa0054 255 unsigned command, unsigned long argument)
440a01a7 256{
a63c848b 257 struct blkfront_info *info = bdev->bd_disk->private_data;
440a01a7
CL
258 int i;
259
260 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
261 command, (long)argument);
262
263 switch (command) {
264 case CDROMMULTISESSION:
265 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
266 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
267 if (put_user(0, (char __user *)(argument + i)))
268 return -EFAULT;
269 return 0;
270
271 case CDROM_GET_CAPABILITY: {
272 struct gendisk *gd = info->gd;
273 if (gd->flags & GENHD_FL_CD)
274 return 0;
275 return -EINVAL;
276 }
277
278 default:
279 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
280 command);*/
281 return -EINVAL; /* same return as native Linux */
282 }
283
284 return 0;
285}
286
9f27ee59 287/*
c64e38ea 288 * Generate a Xen blkfront IO request from a blk layer request. Reads
edf6ef59 289 * and writes are handled as expected.
9f27ee59 290 *
c64e38ea 291 * @req: a request struct
9f27ee59
JF
292 */
293static int blkif_queue_request(struct request *req)
294{
295 struct blkfront_info *info = req->rq_disk->private_data;
296 unsigned long buffer_mfn;
297 struct blkif_request *ring_req;
9f27ee59
JF
298 unsigned long id;
299 unsigned int fsect, lsect;
9e973e64 300 int i, ref;
0a8704a5
RPM
301
302 /*
303 * Used to store if we are able to queue the request by just using
304 * existing persistent grants, or if we have to get new grants,
305 * as there are not sufficiently many free.
306 */
307 bool new_persistent_gnts;
9f27ee59 308 grant_ref_t gref_head;
0a8704a5
RPM
309 struct page *granted_page;
310 struct grant *gnt_list_entry = NULL;
9e973e64 311 struct scatterlist *sg;
9f27ee59
JF
312
313 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
314 return 1;
315
0a8704a5
RPM
316 /* Check if we have enought grants to allocate a requests */
317 if (info->persistent_gnts_c < BLKIF_MAX_SEGMENTS_PER_REQUEST) {
318 new_persistent_gnts = 1;
319 if (gnttab_alloc_grant_references(
320 BLKIF_MAX_SEGMENTS_PER_REQUEST - info->persistent_gnts_c,
321 &gref_head) < 0) {
322 gnttab_request_free_callback(
323 &info->callback,
324 blkif_restart_queue_callback,
325 info,
326 BLKIF_MAX_SEGMENTS_PER_REQUEST);
327 return 1;
328 }
329 } else
330 new_persistent_gnts = 0;
9f27ee59
JF
331
332 /* Fill out a communications ring structure. */
333 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
334 id = get_id_from_freelist(info);
a945b980 335 info->shadow[id].request = req;
9f27ee59 336
97e36834 337 ring_req->u.rw.id = id;
51de6952 338 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
97e36834 339 ring_req->u.rw.handle = info->handle;
9f27ee59
JF
340
341 ring_req->operation = rq_data_dir(req) ?
342 BLKIF_OP_WRITE : BLKIF_OP_READ;
be2f8373
JF
343
344 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA)) {
345 /*
edf6ef59
KRW
346 * Ideally we can do an unordered flush-to-disk. In case the
347 * backend onlysupports barriers, use that. A barrier request
be2f8373
JF
348 * a superset of FUA, so we can implement it the same
349 * way. (It's also a FLUSH+FUA, since it is
350 * guaranteed ordered WRT previous writes.)
351 */
edf6ef59 352 ring_req->operation = info->flush_op;
be2f8373 353 }
9f27ee59 354
5ea42986 355 if (unlikely(req->cmd_flags & (REQ_DISCARD | REQ_SECURE))) {
ed30bf31
LD
356 /* id, sector_number and handle are set above. */
357 ring_req->operation = BLKIF_OP_DISCARD;
ed30bf31 358 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
5ea42986
KRW
359 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
360 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
361 else
362 ring_req->u.discard.flag = 0;
ed30bf31 363 } else {
97e36834
KRW
364 ring_req->u.rw.nr_segments = blk_rq_map_sg(req->q, req,
365 info->sg);
366 BUG_ON(ring_req->u.rw.nr_segments >
367 BLKIF_MAX_SEGMENTS_PER_REQUEST);
9e973e64 368
97e36834 369 for_each_sg(info->sg, sg, ring_req->u.rw.nr_segments, i) {
ed30bf31
LD
370 fsect = sg->offset >> 9;
371 lsect = fsect + (sg->length >> 9) - 1;
6c92e699 372
0a8704a5
RPM
373 if (info->persistent_gnts_c) {
374 BUG_ON(llist_empty(&info->persistent_gnts));
375 gnt_list_entry = llist_entry(
376 llist_del_first(&info->persistent_gnts),
377 struct grant, node);
378
379 ref = gnt_list_entry->gref;
380 buffer_mfn = pfn_to_mfn(gnt_list_entry->pfn);
381 info->persistent_gnts_c--;
382 } else {
383 ref = gnttab_claim_grant_reference(&gref_head);
384 BUG_ON(ref == -ENOSPC);
385
386 gnt_list_entry =
387 kmalloc(sizeof(struct grant),
388 GFP_ATOMIC);
389 if (!gnt_list_entry)
390 return -ENOMEM;
391
392 granted_page = alloc_page(GFP_ATOMIC);
393 if (!granted_page) {
394 kfree(gnt_list_entry);
395 return -ENOMEM;
396 }
397
398 gnt_list_entry->pfn =
399 page_to_pfn(granted_page);
400 gnt_list_entry->gref = ref;
401
402 buffer_mfn = pfn_to_mfn(page_to_pfn(
403 granted_page));
404 gnttab_grant_foreign_access_ref(ref,
ed30bf31 405 info->xbdev->otherend_id,
0a8704a5
RPM
406 buffer_mfn, 0);
407 }
408
409 info->shadow[id].grants_used[i] = gnt_list_entry;
410
411 if (rq_data_dir(req)) {
412 char *bvec_data;
413 void *shared_data;
414
415 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
416
417 shared_data = kmap_atomic(
418 pfn_to_page(gnt_list_entry->pfn));
419 bvec_data = kmap_atomic(sg_page(sg));
420
421 /*
422 * this does not wipe data stored outside the
423 * range sg->offset..sg->offset+sg->length.
424 * Therefore, blkback *could* see data from
425 * previous requests. This is OK as long as
426 * persistent grants are shared with just one
427 * domain. It may need refactoring if this
428 * changes
429 */
430 memcpy(shared_data + sg->offset,
431 bvec_data + sg->offset,
432 sg->length);
433
434 kunmap_atomic(bvec_data);
435 kunmap_atomic(shared_data);
436 }
ed30bf31
LD
437
438 info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn);
439 ring_req->u.rw.seg[i] =
440 (struct blkif_request_segment) {
441 .gref = ref,
442 .first_sect = fsect,
443 .last_sect = lsect };
444 }
9f27ee59
JF
445 }
446
447 info->ring.req_prod_pvt++;
448
449 /* Keep a private copy so we can reissue requests when recovering. */
450 info->shadow[id].req = *ring_req;
451
0a8704a5
RPM
452 if (new_persistent_gnts)
453 gnttab_free_grant_references(gref_head);
9f27ee59
JF
454
455 return 0;
456}
457
458
459static inline void flush_requests(struct blkfront_info *info)
460{
461 int notify;
462
463 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
464
465 if (notify)
466 notify_remote_via_irq(info->irq);
467}
468
469/*
470 * do_blkif_request
471 * read a block; request is in a request queue
472 */
165125e1 473static void do_blkif_request(struct request_queue *rq)
9f27ee59
JF
474{
475 struct blkfront_info *info = NULL;
476 struct request *req;
477 int queued;
478
479 pr_debug("Entered do_blkif_request\n");
480
481 queued = 0;
482
9934c8c0 483 while ((req = blk_peek_request(rq)) != NULL) {
9f27ee59 484 info = req->rq_disk->private_data;
9f27ee59
JF
485
486 if (RING_FULL(&info->ring))
487 goto wait;
488
9934c8c0 489 blk_start_request(req);
296b2f6a 490
d11e6158
KRW
491 if ((req->cmd_type != REQ_TYPE_FS) ||
492 ((req->cmd_flags & (REQ_FLUSH | REQ_FUA)) &&
493 !info->flush_op)) {
296b2f6a
TH
494 __blk_end_request_all(req, -EIO);
495 continue;
496 }
497
9f27ee59 498 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
83096ebf
TH
499 "(%u/%u) buffer:%p [%s]\n",
500 req, req->cmd, (unsigned long)blk_rq_pos(req),
501 blk_rq_cur_sectors(req), blk_rq_sectors(req),
502 req->buffer, rq_data_dir(req) ? "write" : "read");
9f27ee59 503
9f27ee59
JF
504 if (blkif_queue_request(req)) {
505 blk_requeue_request(rq, req);
506wait:
507 /* Avoid pointless unplugs. */
508 blk_stop_queue(rq);
509 break;
510 }
511
512 queued++;
513 }
514
515 if (queued != 0)
516 flush_requests(info);
517}
518
519static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size)
520{
165125e1 521 struct request_queue *rq;
ed30bf31 522 struct blkfront_info *info = gd->private_data;
9f27ee59 523
3467811e 524 rq = blk_init_queue(do_blkif_request, &info->io_lock);
9f27ee59
JF
525 if (rq == NULL)
526 return -1;
527
66d352e1 528 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
9f27ee59 529
ed30bf31
LD
530 if (info->feature_discard) {
531 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
532 blk_queue_max_discard_sectors(rq, get_capacity(gd));
533 rq->limits.discard_granularity = info->discard_granularity;
534 rq->limits.discard_alignment = info->discard_alignment;
5ea42986
KRW
535 if (info->feature_secdiscard)
536 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
ed30bf31
LD
537 }
538
9f27ee59 539 /* Hard sector size and max sectors impersonate the equiv. hardware. */
e1defc4f 540 blk_queue_logical_block_size(rq, sector_size);
086fa5ff 541 blk_queue_max_hw_sectors(rq, 512);
9f27ee59
JF
542
543 /* Each segment in a request is up to an aligned page in size. */
544 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
545 blk_queue_max_segment_size(rq, PAGE_SIZE);
546
547 /* Ensure a merged request will fit in a single I/O ring slot. */
8a78362c 548 blk_queue_max_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
9f27ee59
JF
549
550 /* Make sure buffer addresses are sector-aligned. */
551 blk_queue_dma_alignment(rq, 511);
552
1c91fe1a
IC
553 /* Make sure we don't use bounce buffers. */
554 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
555
9f27ee59
JF
556 gd->queue = rq;
557
558 return 0;
559}
560
561
4913efe4 562static void xlvbd_flush(struct blkfront_info *info)
9f27ee59 563{
4913efe4 564 blk_queue_flush(info->rq, info->feature_flush);
0a8704a5 565 printk(KERN_INFO "blkfront: %s: %s: %s %s\n",
4913efe4 566 info->gd->disk_name,
edf6ef59
KRW
567 info->flush_op == BLKIF_OP_WRITE_BARRIER ?
568 "barrier" : (info->flush_op == BLKIF_OP_FLUSH_DISKCACHE ?
569 "flush diskcache" : "barrier or flush"),
0a8704a5
RPM
570 info->feature_flush ? "enabled" : "disabled",
571 info->feature_persistent ? "using persistent grants" : "");
9f27ee59
JF
572}
573
c80a4209
SS
574static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
575{
576 int major;
577 major = BLKIF_MAJOR(vdevice);
578 *minor = BLKIF_MINOR(vdevice);
579 switch (major) {
580 case XEN_IDE0_MAJOR:
581 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
582 *minor = ((*minor / 64) * PARTS_PER_DISK) +
583 EMULATED_HD_DISK_MINOR_OFFSET;
584 break;
585 case XEN_IDE1_MAJOR:
586 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
587 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
588 EMULATED_HD_DISK_MINOR_OFFSET;
589 break;
590 case XEN_SCSI_DISK0_MAJOR:
591 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
592 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
593 break;
594 case XEN_SCSI_DISK1_MAJOR:
595 case XEN_SCSI_DISK2_MAJOR:
596 case XEN_SCSI_DISK3_MAJOR:
597 case XEN_SCSI_DISK4_MAJOR:
598 case XEN_SCSI_DISK5_MAJOR:
599 case XEN_SCSI_DISK6_MAJOR:
600 case XEN_SCSI_DISK7_MAJOR:
601 *offset = (*minor / PARTS_PER_DISK) +
602 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
603 EMULATED_SD_DISK_NAME_OFFSET;
604 *minor = *minor +
605 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
606 EMULATED_SD_DISK_MINOR_OFFSET;
607 break;
608 case XEN_SCSI_DISK8_MAJOR:
609 case XEN_SCSI_DISK9_MAJOR:
610 case XEN_SCSI_DISK10_MAJOR:
611 case XEN_SCSI_DISK11_MAJOR:
612 case XEN_SCSI_DISK12_MAJOR:
613 case XEN_SCSI_DISK13_MAJOR:
614 case XEN_SCSI_DISK14_MAJOR:
615 case XEN_SCSI_DISK15_MAJOR:
616 *offset = (*minor / PARTS_PER_DISK) +
617 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
618 EMULATED_SD_DISK_NAME_OFFSET;
619 *minor = *minor +
620 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
621 EMULATED_SD_DISK_MINOR_OFFSET;
622 break;
623 case XENVBD_MAJOR:
624 *offset = *minor / PARTS_PER_DISK;
625 break;
626 default:
627 printk(KERN_WARNING "blkfront: your disk configuration is "
628 "incorrect, please use an xvd device instead\n");
629 return -ENODEV;
630 }
631 return 0;
632}
9f27ee59 633
e77c78c0
JB
634static char *encode_disk_name(char *ptr, unsigned int n)
635{
636 if (n >= 26)
637 ptr = encode_disk_name(ptr, n / 26 - 1);
638 *ptr = 'a' + n % 26;
639 return ptr + 1;
640}
641
9246b5f0
CL
642static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
643 struct blkfront_info *info,
644 u16 vdisk_info, u16 sector_size)
9f27ee59
JF
645{
646 struct gendisk *gd;
647 int nr_minors = 1;
c80a4209 648 int err;
9246b5f0
CL
649 unsigned int offset;
650 int minor;
651 int nr_parts;
e77c78c0 652 char *ptr;
9f27ee59
JF
653
654 BUG_ON(info->gd != NULL);
655 BUG_ON(info->rq != NULL);
656
9246b5f0
CL
657 if ((info->vdevice>>EXT_SHIFT) > 1) {
658 /* this is above the extended range; something is wrong */
659 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
660 return -ENODEV;
661 }
662
663 if (!VDEV_IS_EXTENDED(info->vdevice)) {
c80a4209
SS
664 err = xen_translate_vdev(info->vdevice, &minor, &offset);
665 if (err)
666 return err;
667 nr_parts = PARTS_PER_DISK;
9246b5f0
CL
668 } else {
669 minor = BLKIF_MINOR_EXT(info->vdevice);
670 nr_parts = PARTS_PER_EXT_DISK;
c80a4209 671 offset = minor / nr_parts;
89153b5c 672 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
c80a4209
SS
673 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
674 "emulated IDE disks,\n\t choose an xvd device name"
675 "from xvde on\n", info->vdevice);
9246b5f0 676 }
e77c78c0
JB
677 if (minor >> MINORBITS) {
678 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
679 info->vdevice, minor);
680 return -ENODEV;
681 }
9246b5f0
CL
682
683 if ((minor % nr_parts) == 0)
684 nr_minors = nr_parts;
9f27ee59 685
0e345826
JB
686 err = xlbd_reserve_minors(minor, nr_minors);
687 if (err)
688 goto out;
689 err = -ENODEV;
690
9f27ee59
JF
691 gd = alloc_disk(nr_minors);
692 if (gd == NULL)
0e345826 693 goto release;
9f27ee59 694
e77c78c0
JB
695 strcpy(gd->disk_name, DEV_NAME);
696 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
697 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
698 if (nr_minors > 1)
699 *ptr = 0;
700 else
701 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
702 "%d", minor & (nr_parts - 1));
9f27ee59
JF
703
704 gd->major = XENVBD_MAJOR;
705 gd->first_minor = minor;
706 gd->fops = &xlvbd_block_fops;
707 gd->private_data = info;
708 gd->driverfs_dev = &(info->xbdev->dev);
709 set_capacity(gd, capacity);
710
711 if (xlvbd_init_blk_queue(gd, sector_size)) {
712 del_gendisk(gd);
0e345826 713 goto release;
9f27ee59
JF
714 }
715
716 info->rq = gd->queue;
717 info->gd = gd;
718
4913efe4 719 xlvbd_flush(info);
9f27ee59
JF
720
721 if (vdisk_info & VDISK_READONLY)
722 set_disk_ro(gd, 1);
723
724 if (vdisk_info & VDISK_REMOVABLE)
725 gd->flags |= GENHD_FL_REMOVABLE;
726
727 if (vdisk_info & VDISK_CDROM)
728 gd->flags |= GENHD_FL_CD;
729
730 return 0;
731
0e345826
JB
732 release:
733 xlbd_release_minors(minor, nr_minors);
9f27ee59
JF
734 out:
735 return err;
736}
737
a66b5aeb
DS
738static void xlvbd_release_gendisk(struct blkfront_info *info)
739{
740 unsigned int minor, nr_minors;
741 unsigned long flags;
742
743 if (info->rq == NULL)
744 return;
745
3467811e 746 spin_lock_irqsave(&info->io_lock, flags);
a66b5aeb
DS
747
748 /* No more blkif_request(). */
749 blk_stop_queue(info->rq);
750
751 /* No more gnttab callback work. */
752 gnttab_cancel_free_callback(&info->callback);
3467811e 753 spin_unlock_irqrestore(&info->io_lock, flags);
a66b5aeb
DS
754
755 /* Flush gnttab callback work. Must be done with no locks held. */
43829731 756 flush_work(&info->work);
a66b5aeb
DS
757
758 del_gendisk(info->gd);
759
760 minor = info->gd->first_minor;
761 nr_minors = info->gd->minors;
762 xlbd_release_minors(minor, nr_minors);
763
764 blk_cleanup_queue(info->rq);
765 info->rq = NULL;
766
767 put_disk(info->gd);
768 info->gd = NULL;
769}
770
9f27ee59
JF
771static void kick_pending_request_queues(struct blkfront_info *info)
772{
773 if (!RING_FULL(&info->ring)) {
774 /* Re-enable calldowns. */
775 blk_start_queue(info->rq);
776 /* Kick things off immediately. */
777 do_blkif_request(info->rq);
778 }
779}
780
781static void blkif_restart_queue(struct work_struct *work)
782{
783 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
784
3467811e 785 spin_lock_irq(&info->io_lock);
9f27ee59
JF
786 if (info->connected == BLKIF_STATE_CONNECTED)
787 kick_pending_request_queues(info);
3467811e 788 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
789}
790
791static void blkif_free(struct blkfront_info *info, int suspend)
792{
0a8704a5
RPM
793 struct llist_node *all_gnts;
794 struct grant *persistent_gnt;
ebb351cf 795 struct llist_node *n;
0a8704a5 796
9f27ee59 797 /* Prevent new requests being issued until we fix things up. */
3467811e 798 spin_lock_irq(&info->io_lock);
9f27ee59
JF
799 info->connected = suspend ?
800 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
801 /* No more blkif_request(). */
802 if (info->rq)
803 blk_stop_queue(info->rq);
0a8704a5
RPM
804
805 /* Remove all persistent grants */
806 if (info->persistent_gnts_c) {
807 all_gnts = llist_del_all(&info->persistent_gnts);
ebb351cf 808 llist_for_each_entry_safe(persistent_gnt, n, all_gnts, node) {
0a8704a5 809 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
07c540a0 810 __free_page(pfn_to_page(persistent_gnt->pfn));
0a8704a5
RPM
811 kfree(persistent_gnt);
812 }
813 info->persistent_gnts_c = 0;
814 }
815
9f27ee59
JF
816 /* No more gnttab callback work. */
817 gnttab_cancel_free_callback(&info->callback);
3467811e 818 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
819
820 /* Flush gnttab callback work. Must be done with no locks held. */
43829731 821 flush_work(&info->work);
9f27ee59
JF
822
823 /* Free resources associated with old device channel. */
824 if (info->ring_ref != GRANT_INVALID_REF) {
825 gnttab_end_foreign_access(info->ring_ref, 0,
826 (unsigned long)info->ring.sring);
827 info->ring_ref = GRANT_INVALID_REF;
828 info->ring.sring = NULL;
829 }
830 if (info->irq)
831 unbind_from_irqhandler(info->irq, info);
832 info->evtchn = info->irq = 0;
833
834}
835
0a8704a5
RPM
836static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info,
837 struct blkif_response *bret)
9f27ee59
JF
838{
839 int i;
0a8704a5
RPM
840 struct bio_vec *bvec;
841 struct req_iterator iter;
842 unsigned long flags;
843 char *bvec_data;
844 void *shared_data;
845 unsigned int offset = 0;
846
847 if (bret->operation == BLKIF_OP_READ) {
848 /*
849 * Copy the data received from the backend into the bvec.
850 * Since bv_offset can be different than 0, and bv_len different
851 * than PAGE_SIZE, we have to keep track of the current offset,
852 * to be sure we are copying the data from the right shared page.
853 */
854 rq_for_each_segment(bvec, s->request, iter) {
855 BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE);
856 i = offset >> PAGE_SHIFT;
cb5bd4d1 857 BUG_ON(i >= s->req.u.rw.nr_segments);
0a8704a5
RPM
858 shared_data = kmap_atomic(
859 pfn_to_page(s->grants_used[i]->pfn));
860 bvec_data = bvec_kmap_irq(bvec, &flags);
861 memcpy(bvec_data, shared_data + bvec->bv_offset,
862 bvec->bv_len);
863 bvec_kunmap_irq(bvec_data, &flags);
864 kunmap_atomic(shared_data);
865 offset += bvec->bv_len;
866 }
867 }
868 /* Add the persistent grant into the list of free grants */
869 for (i = 0; i < s->req.u.rw.nr_segments; i++) {
870 llist_add(&s->grants_used[i]->node, &info->persistent_gnts);
871 info->persistent_gnts_c++;
872 }
9f27ee59
JF
873}
874
875static irqreturn_t blkif_interrupt(int irq, void *dev_id)
876{
877 struct request *req;
878 struct blkif_response *bret;
879 RING_IDX i, rp;
880 unsigned long flags;
881 struct blkfront_info *info = (struct blkfront_info *)dev_id;
f530f036 882 int error;
9f27ee59 883
3467811e 884 spin_lock_irqsave(&info->io_lock, flags);
9f27ee59
JF
885
886 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
3467811e 887 spin_unlock_irqrestore(&info->io_lock, flags);
9f27ee59
JF
888 return IRQ_HANDLED;
889 }
890
891 again:
892 rp = info->ring.sring->rsp_prod;
893 rmb(); /* Ensure we see queued responses up to 'rp'. */
894
895 for (i = info->ring.rsp_cons; i != rp; i++) {
896 unsigned long id;
9f27ee59
JF
897
898 bret = RING_GET_RESPONSE(&info->ring, i);
899 id = bret->id;
6878c32e
KRW
900 /*
901 * The backend has messed up and given us an id that we would
902 * never have given to it (we stamp it up to BLK_RING_SIZE -
903 * look in get_id_from_freelist.
904 */
905 if (id >= BLK_RING_SIZE) {
906 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
907 info->gd->disk_name, op_name(bret->operation), id);
908 /* We can't safely get the 'struct request' as
909 * the id is busted. */
910 continue;
911 }
a945b980 912 req = info->shadow[id].request;
9f27ee59 913
5ea42986 914 if (bret->operation != BLKIF_OP_DISCARD)
0a8704a5 915 blkif_completion(&info->shadow[id], info, bret);
9f27ee59 916
6878c32e
KRW
917 if (add_id_to_freelist(info, id)) {
918 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
919 info->gd->disk_name, op_name(bret->operation), id);
920 continue;
921 }
9f27ee59 922
f530f036 923 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
9f27ee59 924 switch (bret->operation) {
ed30bf31
LD
925 case BLKIF_OP_DISCARD:
926 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
927 struct request_queue *rq = info->rq;
6878c32e
KRW
928 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
929 info->gd->disk_name, op_name(bret->operation));
ed30bf31
LD
930 error = -EOPNOTSUPP;
931 info->feature_discard = 0;
5ea42986 932 info->feature_secdiscard = 0;
ed30bf31 933 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
5ea42986 934 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
ed30bf31
LD
935 }
936 __blk_end_request_all(req, error);
937 break;
edf6ef59 938 case BLKIF_OP_FLUSH_DISKCACHE:
9f27ee59
JF
939 case BLKIF_OP_WRITE_BARRIER:
940 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
6878c32e
KRW
941 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
942 info->gd->disk_name, op_name(bret->operation));
f530f036 943 error = -EOPNOTSUPP;
dcb8baec
JF
944 }
945 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
97e36834 946 info->shadow[id].req.u.rw.nr_segments == 0)) {
6878c32e
KRW
947 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
948 info->gd->disk_name, op_name(bret->operation));
dcb8baec
JF
949 error = -EOPNOTSUPP;
950 }
951 if (unlikely(error)) {
952 if (error == -EOPNOTSUPP)
953 error = 0;
4913efe4 954 info->feature_flush = 0;
edf6ef59 955 info->flush_op = 0;
4913efe4 956 xlvbd_flush(info);
9f27ee59
JF
957 }
958 /* fall through */
959 case BLKIF_OP_READ:
960 case BLKIF_OP_WRITE:
961 if (unlikely(bret->status != BLKIF_RSP_OKAY))
962 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
963 "request: %x\n", bret->status);
964
40cbbb78 965 __blk_end_request_all(req, error);
9f27ee59
JF
966 break;
967 default:
968 BUG();
969 }
970 }
971
972 info->ring.rsp_cons = i;
973
974 if (i != info->ring.req_prod_pvt) {
975 int more_to_do;
976 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
977 if (more_to_do)
978 goto again;
979 } else
980 info->ring.sring->rsp_event = i + 1;
981
982 kick_pending_request_queues(info);
983
3467811e 984 spin_unlock_irqrestore(&info->io_lock, flags);
9f27ee59
JF
985
986 return IRQ_HANDLED;
987}
988
989
990static int setup_blkring(struct xenbus_device *dev,
991 struct blkfront_info *info)
992{
993 struct blkif_sring *sring;
994 int err;
995
996 info->ring_ref = GRANT_INVALID_REF;
997
a144ff09 998 sring = (struct blkif_sring *)__get_free_page(GFP_NOIO | __GFP_HIGH);
9f27ee59
JF
999 if (!sring) {
1000 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1001 return -ENOMEM;
1002 }
1003 SHARED_RING_INIT(sring);
1004 FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE);
9e973e64
JA
1005
1006 sg_init_table(info->sg, BLKIF_MAX_SEGMENTS_PER_REQUEST);
9f27ee59
JF
1007
1008 err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring));
1009 if (err < 0) {
1010 free_page((unsigned long)sring);
1011 info->ring.sring = NULL;
1012 goto fail;
1013 }
1014 info->ring_ref = err;
1015
1016 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1017 if (err)
1018 goto fail;
1019
89c30f16
TT
1020 err = bind_evtchn_to_irqhandler(info->evtchn, blkif_interrupt, 0,
1021 "blkif", info);
9f27ee59
JF
1022 if (err <= 0) {
1023 xenbus_dev_fatal(dev, err,
1024 "bind_evtchn_to_irqhandler failed");
1025 goto fail;
1026 }
1027 info->irq = err;
1028
1029 return 0;
1030fail:
1031 blkif_free(info, 0);
1032 return err;
1033}
1034
1035
1036/* Common code used when first setting up, and when resuming. */
203fd61f 1037static int talk_to_blkback(struct xenbus_device *dev,
9f27ee59
JF
1038 struct blkfront_info *info)
1039{
1040 const char *message = NULL;
1041 struct xenbus_transaction xbt;
1042 int err;
1043
1044 /* Create shared ring, alloc event channel. */
1045 err = setup_blkring(dev, info);
1046 if (err)
1047 goto out;
1048
1049again:
1050 err = xenbus_transaction_start(&xbt);
1051 if (err) {
1052 xenbus_dev_fatal(dev, err, "starting transaction");
1053 goto destroy_blkring;
1054 }
1055
1056 err = xenbus_printf(xbt, dev->nodename,
1057 "ring-ref", "%u", info->ring_ref);
1058 if (err) {
1059 message = "writing ring-ref";
1060 goto abort_transaction;
1061 }
1062 err = xenbus_printf(xbt, dev->nodename,
1063 "event-channel", "%u", info->evtchn);
1064 if (err) {
1065 message = "writing event-channel";
1066 goto abort_transaction;
1067 }
3e334239
MA
1068 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1069 XEN_IO_PROTO_ABI_NATIVE);
1070 if (err) {
1071 message = "writing protocol";
1072 goto abort_transaction;
1073 }
0a8704a5 1074 err = xenbus_printf(xbt, dev->nodename,
cb5bd4d1 1075 "feature-persistent", "%u", 1);
0a8704a5
RPM
1076 if (err)
1077 dev_warn(&dev->dev,
1078 "writing persistent grants feature to xenbus");
9f27ee59
JF
1079
1080 err = xenbus_transaction_end(xbt, 0);
1081 if (err) {
1082 if (err == -EAGAIN)
1083 goto again;
1084 xenbus_dev_fatal(dev, err, "completing transaction");
1085 goto destroy_blkring;
1086 }
1087
1088 xenbus_switch_state(dev, XenbusStateInitialised);
1089
1090 return 0;
1091
1092 abort_transaction:
1093 xenbus_transaction_end(xbt, 1);
1094 if (message)
1095 xenbus_dev_fatal(dev, err, "%s", message);
1096 destroy_blkring:
1097 blkif_free(info, 0);
1098 out:
1099 return err;
1100}
1101
9f27ee59
JF
1102/**
1103 * Entry point to this code when a new device is created. Allocate the basic
1104 * structures and the ring buffer for communication with the backend, and
1105 * inform the backend of the appropriate details for those. Switch to
1106 * Initialised state.
1107 */
1108static int blkfront_probe(struct xenbus_device *dev,
1109 const struct xenbus_device_id *id)
1110{
1111 int err, vdevice, i;
1112 struct blkfront_info *info;
1113
1114 /* FIXME: Use dynamic device id if this is not set. */
1115 err = xenbus_scanf(XBT_NIL, dev->nodename,
1116 "virtual-device", "%i", &vdevice);
1117 if (err != 1) {
9246b5f0
CL
1118 /* go looking in the extended area instead */
1119 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1120 "%i", &vdevice);
1121 if (err != 1) {
1122 xenbus_dev_fatal(dev, err, "reading virtual-device");
1123 return err;
1124 }
9f27ee59
JF
1125 }
1126
b98a409b
SS
1127 if (xen_hvm_domain()) {
1128 char *type;
1129 int len;
1130 /* no unplug has been done: do not hook devices != xen vbds */
1dc7ce99 1131 if (xen_platform_pci_unplug & XEN_UNPLUG_UNNECESSARY) {
b98a409b
SS
1132 int major;
1133
1134 if (!VDEV_IS_EXTENDED(vdevice))
1135 major = BLKIF_MAJOR(vdevice);
1136 else
1137 major = XENVBD_MAJOR;
1138
1139 if (major != XENVBD_MAJOR) {
1140 printk(KERN_INFO
1141 "%s: HVM does not support vbd %d as xen block device\n",
1142 __FUNCTION__, vdevice);
1143 return -ENODEV;
1144 }
1145 }
1146 /* do not create a PV cdrom device if we are an HVM guest */
1147 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1148 if (IS_ERR(type))
1149 return -ENODEV;
1150 if (strncmp(type, "cdrom", 5) == 0) {
1151 kfree(type);
c1c5413a
SS
1152 return -ENODEV;
1153 }
b98a409b 1154 kfree(type);
c1c5413a 1155 }
9f27ee59
JF
1156 info = kzalloc(sizeof(*info), GFP_KERNEL);
1157 if (!info) {
1158 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1159 return -ENOMEM;
1160 }
1161
b70f5fa0 1162 mutex_init(&info->mutex);
3467811e 1163 spin_lock_init(&info->io_lock);
9f27ee59
JF
1164 info->xbdev = dev;
1165 info->vdevice = vdevice;
0a8704a5
RPM
1166 init_llist_head(&info->persistent_gnts);
1167 info->persistent_gnts_c = 0;
9f27ee59
JF
1168 info->connected = BLKIF_STATE_DISCONNECTED;
1169 INIT_WORK(&info->work, blkif_restart_queue);
1170
1171 for (i = 0; i < BLK_RING_SIZE; i++)
97e36834
KRW
1172 info->shadow[i].req.u.rw.id = i+1;
1173 info->shadow[BLK_RING_SIZE-1].req.u.rw.id = 0x0fffffff;
9f27ee59
JF
1174
1175 /* Front end dir is a number, which is used as the id. */
1176 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
a1b4b12b 1177 dev_set_drvdata(&dev->dev, info);
9f27ee59 1178
203fd61f 1179 err = talk_to_blkback(dev, info);
9f27ee59
JF
1180 if (err) {
1181 kfree(info);
a1b4b12b 1182 dev_set_drvdata(&dev->dev, NULL);
9f27ee59
JF
1183 return err;
1184 }
1185
1186 return 0;
1187}
1188
1189
1190static int blkif_recover(struct blkfront_info *info)
1191{
1192 int i;
1193 struct blkif_request *req;
1194 struct blk_shadow *copy;
1195 int j;
1196
1197 /* Stage 1: Make a safe copy of the shadow state. */
a144ff09
IC
1198 copy = kmalloc(sizeof(info->shadow),
1199 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
9f27ee59
JF
1200 if (!copy)
1201 return -ENOMEM;
1202 memcpy(copy, info->shadow, sizeof(info->shadow));
1203
1204 /* Stage 2: Set up free list. */
1205 memset(&info->shadow, 0, sizeof(info->shadow));
1206 for (i = 0; i < BLK_RING_SIZE; i++)
97e36834 1207 info->shadow[i].req.u.rw.id = i+1;
9f27ee59 1208 info->shadow_free = info->ring.req_prod_pvt;
97e36834 1209 info->shadow[BLK_RING_SIZE-1].req.u.rw.id = 0x0fffffff;
9f27ee59
JF
1210
1211 /* Stage 3: Find pending requests and requeue them. */
1212 for (i = 0; i < BLK_RING_SIZE; i++) {
1213 /* Not in use? */
a945b980 1214 if (!copy[i].request)
9f27ee59
JF
1215 continue;
1216
1217 /* Grab a request slot and copy shadow state into it. */
1218 req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
1219 *req = copy[i].req;
1220
1221 /* We get a new request id, and must reset the shadow state. */
97e36834
KRW
1222 req->u.rw.id = get_id_from_freelist(info);
1223 memcpy(&info->shadow[req->u.rw.id], &copy[i], sizeof(copy[i]));
9f27ee59 1224
5ea42986 1225 if (req->operation != BLKIF_OP_DISCARD) {
9f27ee59 1226 /* Rewrite any grant references invalidated by susp/resume. */
5ea42986
KRW
1227 for (j = 0; j < req->u.rw.nr_segments; j++)
1228 gnttab_grant_foreign_access_ref(
1229 req->u.rw.seg[j].gref,
1230 info->xbdev->otherend_id,
1231 pfn_to_mfn(info->shadow[req->u.rw.id].frame[j]),
0a8704a5 1232 0);
5ea42986 1233 }
97e36834 1234 info->shadow[req->u.rw.id].req = *req;
9f27ee59
JF
1235
1236 info->ring.req_prod_pvt++;
1237 }
1238
1239 kfree(copy);
1240
1241 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1242
3467811e 1243 spin_lock_irq(&info->io_lock);
9f27ee59
JF
1244
1245 /* Now safe for us to use the shared ring */
1246 info->connected = BLKIF_STATE_CONNECTED;
1247
1248 /* Send off requeued requests */
1249 flush_requests(info);
1250
1251 /* Kick any other new requests queued since we resumed */
1252 kick_pending_request_queues(info);
1253
3467811e 1254 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
1255
1256 return 0;
1257}
1258
1259/**
1260 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1261 * driver restart. We tear down our blkif structure and recreate it, but
1262 * leave the device-layer structures intact so that this is transparent to the
1263 * rest of the kernel.
1264 */
1265static int blkfront_resume(struct xenbus_device *dev)
1266{
a1b4b12b 1267 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59
JF
1268 int err;
1269
1270 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
1271
1272 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
1273
203fd61f 1274 err = talk_to_blkback(dev, info);
9f27ee59
JF
1275 if (info->connected == BLKIF_STATE_SUSPENDED && !err)
1276 err = blkif_recover(info);
1277
1278 return err;
1279}
1280
b70f5fa0
DS
1281static void
1282blkfront_closing(struct blkfront_info *info)
1283{
1284 struct xenbus_device *xbdev = info->xbdev;
1285 struct block_device *bdev = NULL;
1286
1287 mutex_lock(&info->mutex);
1288
1289 if (xbdev->state == XenbusStateClosing) {
1290 mutex_unlock(&info->mutex);
1291 return;
1292 }
1293
1294 if (info->gd)
1295 bdev = bdget_disk(info->gd, 0);
1296
1297 mutex_unlock(&info->mutex);
1298
1299 if (!bdev) {
1300 xenbus_frontend_closed(xbdev);
1301 return;
1302 }
1303
1304 mutex_lock(&bdev->bd_mutex);
1305
7b32d104 1306 if (bdev->bd_openers) {
b70f5fa0
DS
1307 xenbus_dev_error(xbdev, -EBUSY,
1308 "Device in use; refusing to close");
1309 xenbus_switch_state(xbdev, XenbusStateClosing);
1310 } else {
1311 xlvbd_release_gendisk(info);
1312 xenbus_frontend_closed(xbdev);
1313 }
1314
1315 mutex_unlock(&bdev->bd_mutex);
1316 bdput(bdev);
1317}
9f27ee59 1318
ed30bf31
LD
1319static void blkfront_setup_discard(struct blkfront_info *info)
1320{
1321 int err;
1322 char *type;
1323 unsigned int discard_granularity;
1324 unsigned int discard_alignment;
5ea42986 1325 unsigned int discard_secure;
ed30bf31
LD
1326
1327 type = xenbus_read(XBT_NIL, info->xbdev->otherend, "type", NULL);
1328 if (IS_ERR(type))
1329 return;
1330
5ea42986 1331 info->feature_secdiscard = 0;
ed30bf31
LD
1332 if (strncmp(type, "phy", 3) == 0) {
1333 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1334 "discard-granularity", "%u", &discard_granularity,
1335 "discard-alignment", "%u", &discard_alignment,
1336 NULL);
1337 if (!err) {
1338 info->feature_discard = 1;
1339 info->discard_granularity = discard_granularity;
1340 info->discard_alignment = discard_alignment;
1341 }
5ea42986
KRW
1342 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1343 "discard-secure", "%d", &discard_secure,
1344 NULL);
1345 if (!err)
1346 info->feature_secdiscard = discard_secure;
1347
ed30bf31
LD
1348 } else if (strncmp(type, "file", 4) == 0)
1349 info->feature_discard = 1;
1350
1351 kfree(type);
1352}
1353
9f27ee59
JF
1354/*
1355 * Invoked when the backend is finally 'ready' (and has told produced
1356 * the details about the physical device - #sectors, size, etc).
1357 */
1358static void blkfront_connect(struct blkfront_info *info)
1359{
1360 unsigned long long sectors;
1361 unsigned long sector_size;
1362 unsigned int binfo;
1363 int err;
0a8704a5 1364 int barrier, flush, discard, persistent;
9f27ee59 1365
1fa73be6
S
1366 switch (info->connected) {
1367 case BLKIF_STATE_CONNECTED:
1368 /*
1369 * Potentially, the back-end may be signalling
1370 * a capacity change; update the capacity.
1371 */
1372 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1373 "sectors", "%Lu", &sectors);
1374 if (XENBUS_EXIST_ERR(err))
1375 return;
1376 printk(KERN_INFO "Setting capacity to %Lu\n",
1377 sectors);
1378 set_capacity(info->gd, sectors);
2def141e 1379 revalidate_disk(info->gd);
1fa73be6
S
1380
1381 /* fall through */
1382 case BLKIF_STATE_SUSPENDED:
9f27ee59
JF
1383 return;
1384
b4dddb49
JF
1385 default:
1386 break;
1fa73be6 1387 }
9f27ee59
JF
1388
1389 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
1390 __func__, info->xbdev->otherend);
1391
1392 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1393 "sectors", "%llu", &sectors,
1394 "info", "%u", &binfo,
1395 "sector-size", "%lu", &sector_size,
1396 NULL);
1397 if (err) {
1398 xenbus_dev_fatal(info->xbdev, err,
1399 "reading backend fields at %s",
1400 info->xbdev->otherend);
1401 return;
1402 }
1403
edf6ef59
KRW
1404 info->feature_flush = 0;
1405 info->flush_op = 0;
1406
9f27ee59 1407 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
4352b47a 1408 "feature-barrier", "%d", &barrier,
9f27ee59 1409 NULL);
7901d141
JF
1410
1411 /*
1412 * If there's no "feature-barrier" defined, then it means
1413 * we're dealing with a very old backend which writes
4913efe4 1414 * synchronously; nothing to do.
7901d141 1415 *
6958f145 1416 * If there are barriers, then we use flush.
7901d141 1417 */
edf6ef59 1418 if (!err && barrier) {
be2f8373 1419 info->feature_flush = REQ_FLUSH | REQ_FUA;
edf6ef59
KRW
1420 info->flush_op = BLKIF_OP_WRITE_BARRIER;
1421 }
1422 /*
1423 * And if there is "feature-flush-cache" use that above
1424 * barriers.
1425 */
1426 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1427 "feature-flush-cache", "%d", &flush,
1428 NULL);
9f27ee59 1429
edf6ef59
KRW
1430 if (!err && flush) {
1431 info->feature_flush = REQ_FLUSH;
1432 info->flush_op = BLKIF_OP_FLUSH_DISKCACHE;
1433 }
ed30bf31
LD
1434
1435 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1436 "feature-discard", "%d", &discard,
1437 NULL);
1438
1439 if (!err && discard)
1440 blkfront_setup_discard(info);
1441
0a8704a5
RPM
1442 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1443 "feature-persistent", "%u", &persistent,
1444 NULL);
1445 if (err)
1446 info->feature_persistent = 0;
1447 else
1448 info->feature_persistent = persistent;
1449
9246b5f0 1450 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size);
9f27ee59
JF
1451 if (err) {
1452 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
1453 info->xbdev->otherend);
1454 return;
1455 }
1456
1457 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1458
1459 /* Kick pending requests. */
3467811e 1460 spin_lock_irq(&info->io_lock);
9f27ee59
JF
1461 info->connected = BLKIF_STATE_CONNECTED;
1462 kick_pending_request_queues(info);
3467811e 1463 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
1464
1465 add_disk(info->gd);
1d78d705
CL
1466
1467 info->is_ready = 1;
9f27ee59
JF
1468}
1469
9f27ee59
JF
1470/**
1471 * Callback received when the backend's state changes.
1472 */
203fd61f 1473static void blkback_changed(struct xenbus_device *dev,
9f27ee59
JF
1474 enum xenbus_state backend_state)
1475{
a1b4b12b 1476 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59 1477
203fd61f 1478 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
9f27ee59
JF
1479
1480 switch (backend_state) {
1481 case XenbusStateInitialising:
1482 case XenbusStateInitWait:
1483 case XenbusStateInitialised:
b78c9512
NI
1484 case XenbusStateReconfiguring:
1485 case XenbusStateReconfigured:
9f27ee59
JF
1486 case XenbusStateUnknown:
1487 case XenbusStateClosed:
1488 break;
1489
1490 case XenbusStateConnected:
1491 blkfront_connect(info);
1492 break;
1493
1494 case XenbusStateClosing:
b70f5fa0 1495 blkfront_closing(info);
9f27ee59
JF
1496 break;
1497 }
1498}
1499
fa1bd359 1500static int blkfront_remove(struct xenbus_device *xbdev)
9f27ee59 1501{
fa1bd359
DS
1502 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
1503 struct block_device *bdev = NULL;
1504 struct gendisk *disk;
9f27ee59 1505
fa1bd359 1506 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
9f27ee59
JF
1507
1508 blkif_free(info, 0);
1509
fa1bd359
DS
1510 mutex_lock(&info->mutex);
1511
1512 disk = info->gd;
1513 if (disk)
1514 bdev = bdget_disk(disk, 0);
1515
1516 info->xbdev = NULL;
1517 mutex_unlock(&info->mutex);
1518
1519 if (!bdev) {
1520 kfree(info);
1521 return 0;
1522 }
1523
1524 /*
1525 * The xbdev was removed before we reached the Closed
1526 * state. See if it's safe to remove the disk. If the bdev
1527 * isn't closed yet, we let release take care of it.
1528 */
1529
1530 mutex_lock(&bdev->bd_mutex);
1531 info = disk->private_data;
1532
d54142c7
DS
1533 dev_warn(disk_to_dev(disk),
1534 "%s was hot-unplugged, %d stale handles\n",
1535 xbdev->nodename, bdev->bd_openers);
1536
7b32d104 1537 if (info && !bdev->bd_openers) {
fa1bd359
DS
1538 xlvbd_release_gendisk(info);
1539 disk->private_data = NULL;
0e345826 1540 kfree(info);
fa1bd359
DS
1541 }
1542
1543 mutex_unlock(&bdev->bd_mutex);
1544 bdput(bdev);
9f27ee59
JF
1545
1546 return 0;
1547}
1548
1d78d705
CL
1549static int blkfront_is_ready(struct xenbus_device *dev)
1550{
a1b4b12b 1551 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
1d78d705 1552
5d7ed20e 1553 return info->is_ready && info->xbdev;
1d78d705
CL
1554}
1555
a63c848b 1556static int blkif_open(struct block_device *bdev, fmode_t mode)
9f27ee59 1557{
13961743
DS
1558 struct gendisk *disk = bdev->bd_disk;
1559 struct blkfront_info *info;
1560 int err = 0;
6e9624b8 1561
2a48fc0a 1562 mutex_lock(&blkfront_mutex);
6e9624b8 1563
13961743
DS
1564 info = disk->private_data;
1565 if (!info) {
1566 /* xbdev gone */
1567 err = -ERESTARTSYS;
1568 goto out;
1569 }
1570
1571 mutex_lock(&info->mutex);
1572
1573 if (!info->gd)
1574 /* xbdev is closed */
1575 err = -ERESTARTSYS;
1576
1577 mutex_unlock(&info->mutex);
1578
13961743 1579out:
2a48fc0a 1580 mutex_unlock(&blkfront_mutex);
13961743 1581 return err;
9f27ee59
JF
1582}
1583
a63c848b 1584static int blkif_release(struct gendisk *disk, fmode_t mode)
9f27ee59 1585{
a63c848b 1586 struct blkfront_info *info = disk->private_data;
7fd152f4
DS
1587 struct block_device *bdev;
1588 struct xenbus_device *xbdev;
1589
2a48fc0a 1590 mutex_lock(&blkfront_mutex);
7fd152f4
DS
1591
1592 bdev = bdget_disk(disk, 0);
7fd152f4 1593
acfca3c6
DS
1594 if (bdev->bd_openers)
1595 goto out;
1596
7fd152f4
DS
1597 /*
1598 * Check if we have been instructed to close. We will have
1599 * deferred this request, because the bdev was still open.
1600 */
1601
1602 mutex_lock(&info->mutex);
1603 xbdev = info->xbdev;
1604
1605 if (xbdev && xbdev->state == XenbusStateClosing) {
1606 /* pending switch to state closed */
d54142c7 1607 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
7fd152f4
DS
1608 xlvbd_release_gendisk(info);
1609 xenbus_frontend_closed(info->xbdev);
1610 }
1611
1612 mutex_unlock(&info->mutex);
1613
1614 if (!xbdev) {
1615 /* sudden device removal */
d54142c7 1616 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
7fd152f4
DS
1617 xlvbd_release_gendisk(info);
1618 disk->private_data = NULL;
1619 kfree(info);
9f27ee59 1620 }
7fd152f4 1621
a4cc14ec 1622out:
dad5cf65 1623 bdput(bdev);
2a48fc0a 1624 mutex_unlock(&blkfront_mutex);
9f27ee59
JF
1625 return 0;
1626}
1627
83d5cde4 1628static const struct block_device_operations xlvbd_block_fops =
9f27ee59
JF
1629{
1630 .owner = THIS_MODULE,
a63c848b
AV
1631 .open = blkif_open,
1632 .release = blkif_release,
597592d9 1633 .getgeo = blkif_getgeo,
8a6cfeb6 1634 .ioctl = blkif_ioctl,
9f27ee59
JF
1635};
1636
1637
ec9c42ec 1638static const struct xenbus_device_id blkfront_ids[] = {
9f27ee59
JF
1639 { "vbd" },
1640 { "" }
1641};
1642
73db144b 1643static DEFINE_XENBUS_DRIVER(blkfront, ,
9f27ee59
JF
1644 .probe = blkfront_probe,
1645 .remove = blkfront_remove,
1646 .resume = blkfront_resume,
203fd61f 1647 .otherend_changed = blkback_changed,
1d78d705 1648 .is_ready = blkfront_is_ready,
73db144b 1649);
9f27ee59
JF
1650
1651static int __init xlblk_init(void)
1652{
469738e6
LE
1653 int ret;
1654
6e833587 1655 if (!xen_domain())
9f27ee59
JF
1656 return -ENODEV;
1657
e95ae5a4 1658 if (xen_hvm_domain() && !xen_platform_pci_unplug)
b9136d20
IM
1659 return -ENODEV;
1660
9f27ee59
JF
1661 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
1662 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
1663 XENVBD_MAJOR, DEV_NAME);
1664 return -ENODEV;
1665 }
1666
73db144b 1667 ret = xenbus_register_frontend(&blkfront_driver);
469738e6
LE
1668 if (ret) {
1669 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
1670 return ret;
1671 }
1672
1673 return 0;
9f27ee59
JF
1674}
1675module_init(xlblk_init);
1676
1677
5a60d0cd 1678static void __exit xlblk_exit(void)
9f27ee59 1679{
8605067f
JB
1680 xenbus_unregister_driver(&blkfront_driver);
1681 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
1682 kfree(minors);
9f27ee59
JF
1683}
1684module_exit(xlblk_exit);
1685
1686MODULE_DESCRIPTION("Xen virtual block device frontend");
1687MODULE_LICENSE("GPL");
1688MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
d2f0c52b 1689MODULE_ALIAS("xen:vbd");
4f93f09b 1690MODULE_ALIAS("xenblk");
This page took 0.470133 seconds and 5 git commands to generate.