]> git.proxmox.com Git - mirror_zfs-debian.git/blob - module/zfs/vdev_disk.c
Merge tag 'upstream/0.6.5.8'
[mirror_zfs-debian.git] / module / zfs / vdev_disk.c
1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright (C) 2008-2010 Lawrence Livermore National Security, LLC.
23 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
24 * Rewritten for Linux by Brian Behlendorf <behlendorf1@llnl.gov>.
25 * LLNL-CODE-403049.
26 * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
27 */
28
29 #include <sys/zfs_context.h>
30 #include <sys/spa.h>
31 #include <sys/vdev_disk.h>
32 #include <sys/vdev_impl.h>
33 #include <sys/fs/zfs.h>
34 #include <sys/zio.h>
35 #include <sys/sunldi.h>
36
37 char *zfs_vdev_scheduler = VDEV_SCHEDULER;
38 static void *zfs_vdev_holder = VDEV_HOLDER;
39
40 /*
41 * Virtual device vector for disks.
42 */
43 typedef struct dio_request {
44 struct completion dr_comp; /* Completion for sync IO */
45 zio_t *dr_zio; /* Parent ZIO */
46 atomic_t dr_ref; /* References */
47 int dr_wait; /* Wait for IO */
48 int dr_error; /* Bio error */
49 int dr_bio_count; /* Count of bio's */
50 struct bio *dr_bio[0]; /* Attached bio's */
51 } dio_request_t;
52
53
54 #ifdef HAVE_OPEN_BDEV_EXCLUSIVE
55 static fmode_t
56 vdev_bdev_mode(int smode)
57 {
58 fmode_t mode = 0;
59
60 ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
61
62 if (smode & FREAD)
63 mode |= FMODE_READ;
64
65 if (smode & FWRITE)
66 mode |= FMODE_WRITE;
67
68 return (mode);
69 }
70 #else
71 static int
72 vdev_bdev_mode(int smode)
73 {
74 int mode = 0;
75
76 ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
77
78 if ((smode & FREAD) && !(smode & FWRITE))
79 mode = MS_RDONLY;
80
81 return (mode);
82 }
83 #endif /* HAVE_OPEN_BDEV_EXCLUSIVE */
84
85 static uint64_t
86 bdev_capacity(struct block_device *bdev)
87 {
88 struct hd_struct *part = bdev->bd_part;
89
90 /* The partition capacity referenced by the block device */
91 if (part)
92 return (part->nr_sects << 9);
93
94 /* Otherwise assume the full device capacity */
95 return (get_capacity(bdev->bd_disk) << 9);
96 }
97
98 static void
99 vdev_disk_error(zio_t *zio)
100 {
101 #ifdef ZFS_DEBUG
102 printk("ZFS: zio error=%d type=%d offset=%llu size=%llu "
103 "flags=%x delay=%llu\n", zio->io_error, zio->io_type,
104 (u_longlong_t)zio->io_offset, (u_longlong_t)zio->io_size,
105 zio->io_flags, (u_longlong_t)zio->io_delay);
106 #endif
107 }
108
109 /*
110 * Use the Linux 'noop' elevator for zfs managed block devices. This
111 * strikes the ideal balance by allowing the zfs elevator to do all
112 * request ordering and prioritization. While allowing the Linux
113 * elevator to do the maximum front/back merging allowed by the
114 * physical device. This yields the largest possible requests for
115 * the device with the lowest total overhead.
116 */
117 static int
118 vdev_elevator_switch(vdev_t *v, char *elevator)
119 {
120 vdev_disk_t *vd = v->vdev_tsd;
121 struct block_device *bdev = vd->vd_bdev;
122 struct request_queue *q = bdev_get_queue(bdev);
123 char *device = bdev->bd_disk->disk_name;
124 int error;
125
126 /*
127 * Skip devices which are not whole disks (partitions).
128 * Device-mapper devices are excepted since they may be whole
129 * disks despite the vdev_wholedisk flag, in which case we can
130 * and should switch the elevator. If the device-mapper device
131 * does not have an elevator (i.e. dm-raid, dm-crypt, etc.) the
132 * "Skip devices without schedulers" check below will fail.
133 */
134 if (!v->vdev_wholedisk && strncmp(device, "dm-", 3) != 0)
135 return (0);
136
137 /* Skip devices without schedulers (loop, ram, dm, etc) */
138 if (!q->elevator || !blk_queue_stackable(q))
139 return (0);
140
141 /* Leave existing scheduler when set to "none" */
142 if ((strncmp(elevator, "none", 4) == 0) && (strlen(elevator) == 4))
143 return (0);
144
145 #ifdef HAVE_ELEVATOR_CHANGE
146 error = elevator_change(q, elevator);
147 #else
148 /*
149 * For pre-2.6.36 kernels elevator_change() is not available.
150 * Therefore we fall back to using a usermodehelper to echo the
151 * elevator into sysfs; This requires /bin/echo and sysfs to be
152 * mounted which may not be true early in the boot process.
153 */
154 #define SET_SCHEDULER_CMD \
155 "exec 0</dev/null " \
156 " 1>/sys/block/%s/queue/scheduler " \
157 " 2>/dev/null; " \
158 "echo %s"
159
160 {
161 char *argv[] = { "/bin/sh", "-c", NULL, NULL };
162 char *envp[] = { NULL };
163
164 argv[2] = kmem_asprintf(SET_SCHEDULER_CMD, device, elevator);
165 error = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
166 strfree(argv[2]);
167 }
168 #endif /* HAVE_ELEVATOR_CHANGE */
169 if (error)
170 printk("ZFS: Unable to set \"%s\" scheduler for %s (%s): %d\n",
171 elevator, v->vdev_path, device, error);
172
173 return (error);
174 }
175
176 /*
177 * Expanding a whole disk vdev involves invoking BLKRRPART on the
178 * whole disk device. This poses a problem, because BLKRRPART will
179 * return EBUSY if one of the disk's partitions is open. That's why
180 * we have to do it here, just before opening the data partition.
181 * Unfortunately, BLKRRPART works by dropping all partitions and
182 * recreating them, which means that for a short time window, all
183 * /dev/sdxN device files disappear (until udev recreates them).
184 * This means two things:
185 * - When we open the data partition just after a BLKRRPART, we
186 * can't do it using the normal device file path because of the
187 * obvious race condition with udev. Instead, we use reliable
188 * kernel APIs to get a handle to the new partition device from
189 * the whole disk device.
190 * - Because vdev_disk_open() initially needs to find the device
191 * using its path, multiple vdev_disk_open() invocations in
192 * short succession on the same disk with BLKRRPARTs in the
193 * middle have a high probability of failure (because of the
194 * race condition with udev). A typical situation where this
195 * might happen is when the zpool userspace tool does a
196 * TRYIMPORT immediately followed by an IMPORT. For this
197 * reason, we only invoke BLKRRPART in the module when strictly
198 * necessary (zpool online -e case), and rely on userspace to
199 * do it when possible.
200 */
201 static struct block_device *
202 vdev_disk_rrpart(const char *path, int mode, vdev_disk_t *vd)
203 {
204 #if defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK)
205 struct block_device *bdev, *result = ERR_PTR(-ENXIO);
206 struct gendisk *disk;
207 int error, partno;
208
209 bdev = vdev_bdev_open(path, vdev_bdev_mode(mode), zfs_vdev_holder);
210 if (IS_ERR(bdev))
211 return (bdev);
212
213 disk = get_gendisk(bdev->bd_dev, &partno);
214 vdev_bdev_close(bdev, vdev_bdev_mode(mode));
215
216 if (disk) {
217 bdev = bdget(disk_devt(disk));
218 if (bdev) {
219 error = blkdev_get(bdev, vdev_bdev_mode(mode), vd);
220 if (error == 0)
221 error = ioctl_by_bdev(bdev, BLKRRPART, 0);
222 vdev_bdev_close(bdev, vdev_bdev_mode(mode));
223 }
224
225 bdev = bdget_disk(disk, partno);
226 if (bdev) {
227 error = blkdev_get(bdev,
228 vdev_bdev_mode(mode) | FMODE_EXCL, vd);
229 if (error == 0)
230 result = bdev;
231 }
232 put_disk(disk);
233 }
234
235 return (result);
236 #else
237 return (ERR_PTR(-EOPNOTSUPP));
238 #endif /* defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK) */
239 }
240
241 static int
242 vdev_disk_open(vdev_t *v, uint64_t *psize, uint64_t *max_psize,
243 uint64_t *ashift)
244 {
245 struct block_device *bdev = ERR_PTR(-ENXIO);
246 vdev_disk_t *vd;
247 int count = 0, mode, block_size;
248
249 /* Must have a pathname and it must be absolute. */
250 if (v->vdev_path == NULL || v->vdev_path[0] != '/') {
251 v->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
252 return (SET_ERROR(EINVAL));
253 }
254
255 /*
256 * Reopen the device if it's not currently open. Otherwise,
257 * just update the physical size of the device.
258 */
259 if (v->vdev_tsd != NULL) {
260 ASSERT(v->vdev_reopening);
261 vd = v->vdev_tsd;
262 goto skip_open;
263 }
264
265 vd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
266 if (vd == NULL)
267 return (SET_ERROR(ENOMEM));
268
269 /*
270 * Devices are always opened by the path provided at configuration
271 * time. This means that if the provided path is a udev by-id path
272 * then drives may be recabled without an issue. If the provided
273 * path is a udev by-path path, then the physical location information
274 * will be preserved. This can be critical for more complicated
275 * configurations where drives are located in specific physical
276 * locations to maximize the systems tolerence to component failure.
277 * Alternatively, you can provide your own udev rule to flexibly map
278 * the drives as you see fit. It is not advised that you use the
279 * /dev/[hd]d devices which may be reordered due to probing order.
280 * Devices in the wrong locations will be detected by the higher
281 * level vdev validation.
282 *
283 * The specified paths may be briefly removed and recreated in
284 * response to udev events. This should be exceptionally unlikely
285 * because the zpool command makes every effort to verify these paths
286 * have already settled prior to reaching this point. Therefore,
287 * a ENOENT failure at this point is highly likely to be transient
288 * and it is reasonable to sleep and retry before giving up. In
289 * practice delays have been observed to be on the order of 100ms.
290 */
291 mode = spa_mode(v->vdev_spa);
292 if (v->vdev_wholedisk && v->vdev_expanding)
293 bdev = vdev_disk_rrpart(v->vdev_path, mode, vd);
294
295 while (IS_ERR(bdev) && count < 50) {
296 bdev = vdev_bdev_open(v->vdev_path,
297 vdev_bdev_mode(mode), zfs_vdev_holder);
298 if (unlikely(PTR_ERR(bdev) == -ENOENT)) {
299 msleep(10);
300 count++;
301 } else if (IS_ERR(bdev)) {
302 break;
303 }
304 }
305
306 if (IS_ERR(bdev)) {
307 dprintf("failed open v->vdev_path=%s, error=%d count=%d\n",
308 v->vdev_path, -PTR_ERR(bdev), count);
309 kmem_free(vd, sizeof (vdev_disk_t));
310 return (SET_ERROR(-PTR_ERR(bdev)));
311 }
312
313 v->vdev_tsd = vd;
314 vd->vd_bdev = bdev;
315
316 skip_open:
317 /* Determine the physical block size */
318 block_size = vdev_bdev_block_size(vd->vd_bdev);
319
320 /* Clear the nowritecache bit, causes vdev_reopen() to try again. */
321 v->vdev_nowritecache = B_FALSE;
322
323 /* Inform the ZIO pipeline that we are non-rotational */
324 v->vdev_nonrot = blk_queue_nonrot(bdev_get_queue(vd->vd_bdev));
325
326 /* Physical volume size in bytes */
327 *psize = bdev_capacity(vd->vd_bdev);
328
329 /* TODO: report possible expansion size */
330 *max_psize = *psize;
331
332 /* Based on the minimum sector size set the block size */
333 *ashift = highbit64(MAX(block_size, SPA_MINBLOCKSIZE)) - 1;
334
335 /* Try to set the io scheduler elevator algorithm */
336 (void) vdev_elevator_switch(v, zfs_vdev_scheduler);
337
338 return (0);
339 }
340
341 static void
342 vdev_disk_close(vdev_t *v)
343 {
344 vdev_disk_t *vd = v->vdev_tsd;
345
346 if (v->vdev_reopening || vd == NULL)
347 return;
348
349 if (vd->vd_bdev != NULL)
350 vdev_bdev_close(vd->vd_bdev,
351 vdev_bdev_mode(spa_mode(v->vdev_spa)));
352
353 kmem_free(vd, sizeof (vdev_disk_t));
354 v->vdev_tsd = NULL;
355 }
356
357 static dio_request_t *
358 vdev_disk_dio_alloc(int bio_count)
359 {
360 dio_request_t *dr;
361 int i;
362
363 dr = kmem_zalloc(sizeof (dio_request_t) +
364 sizeof (struct bio *) * bio_count, KM_SLEEP);
365 if (dr) {
366 init_completion(&dr->dr_comp);
367 atomic_set(&dr->dr_ref, 0);
368 dr->dr_bio_count = bio_count;
369 dr->dr_error = 0;
370
371 for (i = 0; i < dr->dr_bio_count; i++)
372 dr->dr_bio[i] = NULL;
373 }
374
375 return (dr);
376 }
377
378 static void
379 vdev_disk_dio_free(dio_request_t *dr)
380 {
381 int i;
382
383 for (i = 0; i < dr->dr_bio_count; i++)
384 if (dr->dr_bio[i])
385 bio_put(dr->dr_bio[i]);
386
387 kmem_free(dr, sizeof (dio_request_t) +
388 sizeof (struct bio *) * dr->dr_bio_count);
389 }
390
391 static void
392 vdev_disk_dio_get(dio_request_t *dr)
393 {
394 atomic_inc(&dr->dr_ref);
395 }
396
397 static int
398 vdev_disk_dio_put(dio_request_t *dr)
399 {
400 int rc = atomic_dec_return(&dr->dr_ref);
401
402 /*
403 * Free the dio_request when the last reference is dropped and
404 * ensure zio_interpret is called only once with the correct zio
405 */
406 if (rc == 0) {
407 zio_t *zio = dr->dr_zio;
408 int error = dr->dr_error;
409
410 vdev_disk_dio_free(dr);
411
412 if (zio) {
413 zio->io_delay = jiffies_64 - zio->io_delay;
414 zio->io_error = error;
415 ASSERT3S(zio->io_error, >=, 0);
416 if (zio->io_error)
417 vdev_disk_error(zio);
418 zio_interrupt(zio);
419 }
420 }
421
422 return (rc);
423 }
424
425 BIO_END_IO_PROTO(vdev_disk_physio_completion, bio, error)
426 {
427 dio_request_t *dr = bio->bi_private;
428 int rc;
429 int wait;
430
431 if (dr->dr_error == 0) {
432 #ifdef HAVE_1ARG_BIO_END_IO_T
433 dr->dr_error = -(bio->bi_error);
434 #else
435 if (error)
436 dr->dr_error = -(error);
437 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
438 dr->dr_error = EIO;
439 #endif
440 }
441
442 wait = dr->dr_wait;
443 /* Drop reference aquired by __vdev_disk_physio */
444 rc = vdev_disk_dio_put(dr);
445
446 /* Wake up synchronous waiter this is the last outstanding bio */
447 if (wait && rc == 1)
448 complete(&dr->dr_comp);
449 }
450
451 static inline unsigned long
452 bio_nr_pages(void *bio_ptr, unsigned int bio_size)
453 {
454 return ((((unsigned long)bio_ptr + bio_size + PAGE_SIZE - 1) >>
455 PAGE_SHIFT) - ((unsigned long)bio_ptr >> PAGE_SHIFT));
456 }
457
458 static unsigned int
459 bio_map(struct bio *bio, void *bio_ptr, unsigned int bio_size)
460 {
461 unsigned int offset, size, i;
462 struct page *page;
463
464 offset = offset_in_page(bio_ptr);
465 for (i = 0; i < bio->bi_max_vecs; i++) {
466 size = PAGE_SIZE - offset;
467
468 if (bio_size <= 0)
469 break;
470
471 if (size > bio_size)
472 size = bio_size;
473
474 if (is_vmalloc_addr(bio_ptr))
475 page = vmalloc_to_page(bio_ptr);
476 else
477 page = virt_to_page(bio_ptr);
478
479 /*
480 * Some network related block device uses tcp_sendpage, which
481 * doesn't behave well when using 0-count page, this is a
482 * safety net to catch them.
483 */
484 ASSERT3S(page_count(page), >, 0);
485
486 if (bio_add_page(bio, page, size, offset) != size)
487 break;
488
489 bio_ptr += size;
490 bio_size -= size;
491 offset = 0;
492 }
493
494 return (bio_size);
495 }
496
497 #ifndef bio_set_op_attrs
498 #define bio_set_op_attrs(bio, rw, flags) \
499 do { (bio)->bi_rw |= (rw)|(flags); } while (0)
500 #endif
501
502 static inline void
503 vdev_submit_bio_impl(struct bio *bio)
504 {
505 #ifdef HAVE_1ARG_SUBMIT_BIO
506 submit_bio(bio);
507 #else
508 submit_bio(0, bio);
509 #endif
510 }
511
512 static inline void
513 vdev_submit_bio(struct bio *bio)
514 {
515 #ifdef HAVE_CURRENT_BIO_TAIL
516 struct bio **bio_tail = current->bio_tail;
517 current->bio_tail = NULL;
518 vdev_submit_bio_impl(bio);
519 current->bio_tail = bio_tail;
520 #else
521 struct bio_list *bio_list = current->bio_list;
522 current->bio_list = NULL;
523 vdev_submit_bio_impl(bio);
524 current->bio_list = bio_list;
525 #endif
526 }
527
528 static int
529 __vdev_disk_physio(struct block_device *bdev, zio_t *zio, caddr_t kbuf_ptr,
530 size_t kbuf_size, uint64_t kbuf_offset, int rw, int flags, int wait)
531 {
532 dio_request_t *dr;
533 caddr_t bio_ptr;
534 uint64_t bio_offset;
535 int bio_size, bio_count = 16;
536 int i = 0, error = 0;
537
538 ASSERT3U(kbuf_offset + kbuf_size, <=, bdev->bd_inode->i_size);
539
540 retry:
541 dr = vdev_disk_dio_alloc(bio_count);
542 if (dr == NULL)
543 return (ENOMEM);
544
545 if (zio && !(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
546 bio_set_flags_failfast(bdev, &flags);
547
548 dr->dr_zio = zio;
549 dr->dr_wait = wait;
550
551 /*
552 * When the IO size exceeds the maximum bio size for the request
553 * queue we are forced to break the IO in multiple bio's and wait
554 * for them all to complete. Ideally, all pool users will set
555 * their volume block size to match the maximum request size and
556 * the common case will be one bio per vdev IO request.
557 */
558 bio_ptr = kbuf_ptr;
559 bio_offset = kbuf_offset;
560 bio_size = kbuf_size;
561 for (i = 0; i <= dr->dr_bio_count; i++) {
562
563 /* Finished constructing bio's for given buffer */
564 if (bio_size <= 0)
565 break;
566
567 /*
568 * By default only 'bio_count' bio's per dio are allowed.
569 * However, if we find ourselves in a situation where more
570 * are needed we allocate a larger dio and warn the user.
571 */
572 if (dr->dr_bio_count == i) {
573 vdev_disk_dio_free(dr);
574 bio_count *= 2;
575 goto retry;
576 }
577
578 /* bio_alloc() with __GFP_WAIT never returns NULL */
579 dr->dr_bio[i] = bio_alloc(GFP_NOIO,
580 MIN(bio_nr_pages(bio_ptr, bio_size), BIO_MAX_PAGES));
581 if (unlikely(dr->dr_bio[i] == NULL)) {
582 vdev_disk_dio_free(dr);
583 return (ENOMEM);
584 }
585
586 /* Matching put called by vdev_disk_physio_completion */
587 vdev_disk_dio_get(dr);
588
589 dr->dr_bio[i]->bi_bdev = bdev;
590 BIO_BI_SECTOR(dr->dr_bio[i]) = bio_offset >> 9;
591 dr->dr_bio[i]->bi_end_io = vdev_disk_physio_completion;
592 dr->dr_bio[i]->bi_private = dr;
593 bio_set_op_attrs(dr->dr_bio[i], rw, flags);
594
595 /* Remaining size is returned to become the new size */
596 bio_size = bio_map(dr->dr_bio[i], bio_ptr, bio_size);
597
598 /* Advance in buffer and construct another bio if needed */
599 bio_ptr += BIO_BI_SIZE(dr->dr_bio[i]);
600 bio_offset += BIO_BI_SIZE(dr->dr_bio[i]);
601 }
602
603 /* Extra reference to protect dio_request during vdev_submit_bio */
604 vdev_disk_dio_get(dr);
605 if (zio)
606 zio->io_delay = jiffies_64;
607
608 /* Submit all bio's associated with this dio */
609 for (i = 0; i < dr->dr_bio_count; i++)
610 if (dr->dr_bio[i])
611 vdev_submit_bio(dr->dr_bio[i]);
612
613 /*
614 * On synchronous blocking requests we wait for all bio the completion
615 * callbacks to run. We will be woken when the last callback runs
616 * for this dio. We are responsible for putting the last dio_request
617 * reference will in turn put back the last bio references. The
618 * only synchronous consumer is vdev_disk_read_rootlabel() all other
619 * IO originating from vdev_disk_io_start() is asynchronous.
620 */
621 if (wait) {
622 wait_for_completion(&dr->dr_comp);
623 error = dr->dr_error;
624 ASSERT3S(atomic_read(&dr->dr_ref), ==, 1);
625 }
626
627 (void) vdev_disk_dio_put(dr);
628
629 return (error);
630 }
631
632 int
633 vdev_disk_physio(struct block_device *bdev, caddr_t kbuf,
634 size_t size, uint64_t offset, int rw, int flags)
635 {
636 bio_set_flags_failfast(bdev, &flags);
637 return (__vdev_disk_physio(bdev, NULL, kbuf, size, offset, rw, flags,
638 1));
639 }
640
641 BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, rc)
642 {
643 zio_t *zio = bio->bi_private;
644 #ifdef HAVE_1ARG_BIO_END_IO_T
645 int rc = bio->bi_error;
646 #endif
647
648 zio->io_delay = jiffies_64 - zio->io_delay;
649 zio->io_error = -rc;
650 if (rc && (rc == -EOPNOTSUPP))
651 zio->io_vd->vdev_nowritecache = B_TRUE;
652
653 bio_put(bio);
654 ASSERT3S(zio->io_error, >=, 0);
655 if (zio->io_error)
656 vdev_disk_error(zio);
657 zio_interrupt(zio);
658 }
659
660 static int
661 vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
662 {
663 struct request_queue *q;
664 struct bio *bio;
665
666 q = bdev_get_queue(bdev);
667 if (!q)
668 return (ENXIO);
669
670 bio = bio_alloc(GFP_NOIO, 0);
671 /* bio_alloc() with __GFP_WAIT never returns NULL */
672 if (unlikely(bio == NULL))
673 return (ENOMEM);
674
675 bio->bi_end_io = vdev_disk_io_flush_completion;
676 bio->bi_private = zio;
677 bio->bi_bdev = bdev;
678 zio->io_delay = jiffies_64;
679 bio_set_op_attrs(bio, 0, VDEV_WRITE_FLUSH_FUA);
680 vdev_submit_bio(bio);
681 invalidate_bdev(bdev);
682
683 return (0);
684 }
685
686 static void
687 vdev_disk_io_start(zio_t *zio)
688 {
689 vdev_t *v = zio->io_vd;
690 vdev_disk_t *vd = v->vdev_tsd;
691 zio_priority_t pri = zio->io_priority;
692 int rw, flags, error;
693
694 switch (zio->io_type) {
695 case ZIO_TYPE_IOCTL:
696
697 if (!vdev_readable(v)) {
698 zio->io_error = SET_ERROR(ENXIO);
699 zio_interrupt(zio);
700 return;
701 }
702
703 switch (zio->io_cmd) {
704 case DKIOCFLUSHWRITECACHE:
705
706 if (zfs_nocacheflush)
707 break;
708
709 if (v->vdev_nowritecache) {
710 zio->io_error = SET_ERROR(ENOTSUP);
711 break;
712 }
713
714 error = vdev_disk_io_flush(vd->vd_bdev, zio);
715 if (error == 0)
716 return;
717
718 zio->io_error = error;
719 if (error == ENOTSUP)
720 v->vdev_nowritecache = B_TRUE;
721
722 break;
723
724 default:
725 zio->io_error = SET_ERROR(ENOTSUP);
726 }
727
728 zio_execute(zio);
729 return;
730 case ZIO_TYPE_WRITE:
731 rw = WRITE;
732 if ((pri == ZIO_PRIORITY_SYNC_WRITE) && (v->vdev_nonrot))
733 flags = WRITE_SYNC;
734 else
735 flags = 0;
736 break;
737
738 case ZIO_TYPE_READ:
739 rw = READ;
740 if ((pri == ZIO_PRIORITY_SYNC_READ) && (v->vdev_nonrot))
741 flags = READ_SYNC;
742 else
743 flags = 0;
744 break;
745
746 default:
747 zio->io_error = SET_ERROR(ENOTSUP);
748 zio_interrupt(zio);
749 return;
750 }
751
752 error = __vdev_disk_physio(vd->vd_bdev, zio, zio->io_data,
753 zio->io_size, zio->io_offset, rw, flags, 0);
754 if (error) {
755 zio->io_error = error;
756 zio_interrupt(zio);
757 return;
758 }
759 }
760
761 static void
762 vdev_disk_io_done(zio_t *zio)
763 {
764 /*
765 * If the device returned EIO, we revalidate the media. If it is
766 * determined the media has changed this triggers the asynchronous
767 * removal of the device from the configuration.
768 */
769 if (zio->io_error == EIO) {
770 vdev_t *v = zio->io_vd;
771 vdev_disk_t *vd = v->vdev_tsd;
772
773 if (check_disk_change(vd->vd_bdev)) {
774 vdev_bdev_invalidate(vd->vd_bdev);
775 v->vdev_remove_wanted = B_TRUE;
776 spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
777 }
778 }
779 }
780
781 static void
782 vdev_disk_hold(vdev_t *vd)
783 {
784 ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
785
786 /* We must have a pathname, and it must be absolute. */
787 if (vd->vdev_path == NULL || vd->vdev_path[0] != '/')
788 return;
789
790 /*
791 * Only prefetch path and devid info if the device has
792 * never been opened.
793 */
794 if (vd->vdev_tsd != NULL)
795 return;
796
797 /* XXX: Implement me as a vnode lookup for the device */
798 vd->vdev_name_vp = NULL;
799 vd->vdev_devid_vp = NULL;
800 }
801
802 static void
803 vdev_disk_rele(vdev_t *vd)
804 {
805 ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
806
807 /* XXX: Implement me as a vnode rele for the device */
808 }
809
810 vdev_ops_t vdev_disk_ops = {
811 vdev_disk_open,
812 vdev_disk_close,
813 vdev_default_asize,
814 vdev_disk_io_start,
815 vdev_disk_io_done,
816 NULL,
817 vdev_disk_hold,
818 vdev_disk_rele,
819 VDEV_TYPE_DISK, /* name of this vdev type */
820 B_TRUE /* leaf vdev */
821 };
822
823 /*
824 * Given the root disk device devid or pathname, read the label from
825 * the device, and construct a configuration nvlist.
826 */
827 int
828 vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
829 {
830 struct block_device *bdev;
831 vdev_label_t *label;
832 uint64_t s, size;
833 int i;
834
835 bdev = vdev_bdev_open(devpath, vdev_bdev_mode(FREAD), zfs_vdev_holder);
836 if (IS_ERR(bdev))
837 return (-PTR_ERR(bdev));
838
839 s = bdev_capacity(bdev);
840 if (s == 0) {
841 vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
842 return (EIO);
843 }
844
845 size = P2ALIGN_TYPED(s, sizeof (vdev_label_t), uint64_t);
846 label = vmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
847
848 for (i = 0; i < VDEV_LABELS; i++) {
849 uint64_t offset, state, txg = 0;
850
851 /* read vdev label */
852 offset = vdev_label_offset(size, i, 0);
853 if (vdev_disk_physio(bdev, (caddr_t)label,
854 VDEV_SKIP_SIZE + VDEV_PHYS_SIZE, offset, READ,
855 REQ_SYNC) != 0)
856 continue;
857
858 if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
859 sizeof (label->vl_vdev_phys.vp_nvlist), config, 0) != 0) {
860 *config = NULL;
861 continue;
862 }
863
864 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_STATE,
865 &state) != 0 || state >= POOL_STATE_DESTROYED) {
866 nvlist_free(*config);
867 *config = NULL;
868 continue;
869 }
870
871 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_TXG,
872 &txg) != 0 || txg == 0) {
873 nvlist_free(*config);
874 *config = NULL;
875 continue;
876 }
877
878 break;
879 }
880
881 vmem_free(label, sizeof (vdev_label_t));
882 vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
883
884 return (0);
885 }
886
887 module_param(zfs_vdev_scheduler, charp, 0644);
888 MODULE_PARM_DESC(zfs_vdev_scheduler, "I/O scheduler");