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.
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.
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]
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
24 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
25 * Copyright (c) 2013 Joyent, Inc. All rights reserved.
28 #include <sys/zfs_context.h>
29 #include <sys/spa_impl.h>
30 #include <sys/refcount.h>
31 #include <sys/vdev_disk.h>
32 #include <sys/vdev_impl.h>
33 #include <sys/fs/zfs.h>
35 #include <sys/sunldi.h>
36 #include <sys/efi_partition.h>
37 #include <sys/fm/fs/zfs.h>
40 * Virtual device vector for disks.
43 extern ldi_ident_t zfs_li
;
45 static void vdev_disk_close(vdev_t
*);
47 typedef struct vdev_disk_ldi_cb
{
49 ldi_callback_id_t lcb_id
;
53 vdev_disk_alloc(vdev_t
*vd
)
57 dvd
= vd
->vdev_tsd
= kmem_zalloc(sizeof (vdev_disk_t
), KM_SLEEP
);
59 * Create the LDI event callback list.
61 list_create(&dvd
->vd_ldi_cbs
, sizeof (vdev_disk_ldi_cb_t
),
62 offsetof(vdev_disk_ldi_cb_t
, lcb_next
));
66 vdev_disk_free(vdev_t
*vd
)
68 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
69 vdev_disk_ldi_cb_t
*lcb
;
75 * We have already closed the LDI handle. Clean up the LDI event
76 * callbacks and free vd->vdev_tsd.
78 while ((lcb
= list_head(&dvd
->vd_ldi_cbs
)) != NULL
) {
79 list_remove(&dvd
->vd_ldi_cbs
, lcb
);
80 (void) ldi_ev_remove_callbacks(lcb
->lcb_id
);
81 kmem_free(lcb
, sizeof (vdev_disk_ldi_cb_t
));
83 list_destroy(&dvd
->vd_ldi_cbs
);
84 kmem_free(dvd
, sizeof (vdev_disk_t
));
90 vdev_disk_off_notify(ldi_handle_t lh
, ldi_ev_cookie_t ecookie
, void *arg
,
93 vdev_t
*vd
= (vdev_t
*)arg
;
94 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
97 * Ignore events other than offline.
99 if (strcmp(ldi_ev_get_type(ecookie
), LDI_EV_OFFLINE
) != 0)
100 return (LDI_EV_SUCCESS
);
103 * All LDI handles must be closed for the state change to succeed, so
104 * call on vdev_disk_close() to do this.
106 * We inform vdev_disk_close that it is being called from offline
107 * notify context so it will defer cleanup of LDI event callbacks and
108 * freeing of vd->vdev_tsd to the offline finalize or a reopen.
110 dvd
->vd_ldi_offline
= B_TRUE
;
114 * Now that the device is closed, request that the spa_async_thread
115 * mark the device as REMOVED and notify FMA of the removal.
117 zfs_post_remove(vd
->vdev_spa
, vd
);
118 vd
->vdev_remove_wanted
= B_TRUE
;
119 spa_async_request(vd
->vdev_spa
, SPA_ASYNC_REMOVE
);
121 return (LDI_EV_SUCCESS
);
126 vdev_disk_off_finalize(ldi_handle_t lh
, ldi_ev_cookie_t ecookie
,
127 int ldi_result
, void *arg
, void *ev_data
)
129 vdev_t
*vd
= (vdev_t
*)arg
;
132 * Ignore events other than offline.
134 if (strcmp(ldi_ev_get_type(ecookie
), LDI_EV_OFFLINE
) != 0)
138 * We have already closed the LDI handle in notify.
139 * Clean up the LDI event callbacks and free vd->vdev_tsd.
144 * Request that the vdev be reopened if the offline state change was
147 if (ldi_result
!= LDI_EV_SUCCESS
) {
148 vd
->vdev_probe_wanted
= B_TRUE
;
149 spa_async_request(vd
->vdev_spa
, SPA_ASYNC_PROBE
);
153 static ldi_ev_callback_t vdev_disk_off_callb
= {
154 .cb_vers
= LDI_EV_CB_VERS
,
155 .cb_notify
= vdev_disk_off_notify
,
156 .cb_finalize
= vdev_disk_off_finalize
161 vdev_disk_dgrd_finalize(ldi_handle_t lh
, ldi_ev_cookie_t ecookie
,
162 int ldi_result
, void *arg
, void *ev_data
)
164 vdev_t
*vd
= (vdev_t
*)arg
;
167 * Ignore events other than degrade.
169 if (strcmp(ldi_ev_get_type(ecookie
), LDI_EV_DEGRADE
) != 0)
173 * Degrade events always succeed. Mark the vdev as degraded.
174 * This status is purely informative for the user.
176 (void) vdev_degrade(vd
->vdev_spa
, vd
->vdev_guid
, 0);
179 static ldi_ev_callback_t vdev_disk_dgrd_callb
= {
180 .cb_vers
= LDI_EV_CB_VERS
,
182 .cb_finalize
= vdev_disk_dgrd_finalize
186 vdev_disk_hold(vdev_t
*vd
)
191 ASSERT(spa_config_held(vd
->vdev_spa
, SCL_STATE
, RW_WRITER
));
194 * We must have a pathname, and it must be absolute.
196 if (vd
->vdev_path
== NULL
|| vd
->vdev_path
[0] != '/')
200 * Only prefetch path and devid info if the device has
203 if (vd
->vdev_tsd
!= NULL
)
206 if (vd
->vdev_wholedisk
== -1ULL) {
207 size_t len
= strlen(vd
->vdev_path
) + 3;
208 char *buf
= kmem_alloc(len
, KM_SLEEP
);
210 (void) snprintf(buf
, len
, "%ss0", vd
->vdev_path
);
212 (void) ldi_vp_from_name(buf
, &vd
->vdev_name_vp
);
216 if (vd
->vdev_name_vp
== NULL
)
217 (void) ldi_vp_from_name(vd
->vdev_path
, &vd
->vdev_name_vp
);
219 if (vd
->vdev_devid
!= NULL
&&
220 ddi_devid_str_decode(vd
->vdev_devid
, &devid
, &minor
) == 0) {
221 (void) ldi_vp_from_devid(devid
, minor
, &vd
->vdev_devid_vp
);
222 ddi_devid_str_free(minor
);
223 ddi_devid_free(devid
);
228 vdev_disk_rele(vdev_t
*vd
)
230 ASSERT(spa_config_held(vd
->vdev_spa
, SCL_STATE
, RW_WRITER
));
232 if (vd
->vdev_name_vp
) {
233 VN_RELE_ASYNC(vd
->vdev_name_vp
,
234 dsl_pool_vnrele_taskq(vd
->vdev_spa
->spa_dsl_pool
));
235 vd
->vdev_name_vp
= NULL
;
237 if (vd
->vdev_devid_vp
) {
238 VN_RELE_ASYNC(vd
->vdev_devid_vp
,
239 dsl_pool_vnrele_taskq(vd
->vdev_spa
->spa_dsl_pool
));
240 vd
->vdev_devid_vp
= NULL
;
245 vdev_disk_get_space(vdev_t
*vd
, uint64_t capacity
, uint_t blksz
)
247 ASSERT(vd
->vdev_wholedisk
);
249 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
252 uint64_t avail_space
= 0;
253 int efisize
= EFI_LABEL_SIZE
* 2;
255 dk_ioc
.dki_data
= kmem_alloc(efisize
, KM_SLEEP
);
257 dk_ioc
.dki_length
= efisize
;
258 dk_ioc
.dki_data_64
= (uint64_t)(uintptr_t)dk_ioc
.dki_data
;
259 efi
= dk_ioc
.dki_data
;
261 if (ldi_ioctl(dvd
->vd_lh
, DKIOCGETEFI
, (intptr_t)&dk_ioc
,
262 FKIOCTL
, kcred
, NULL
) == 0) {
263 uint64_t efi_altern_lba
= LE_64(efi
->efi_gpt_AlternateLBA
);
265 if (capacity
> efi_altern_lba
)
266 avail_space
= (capacity
- efi_altern_lba
) * blksz
;
268 kmem_free(dk_ioc
.dki_data
, efisize
);
269 return (avail_space
);
273 * We want to be loud in DEBUG kernels when DKIOCGMEDIAINFOEXT fails, or when
274 * even a fallback to DKIOCGMEDIAINFO fails.
277 #define VDEV_DEBUG(...) cmn_err(CE_NOTE, __VA_ARGS__)
279 #define VDEV_DEBUG(...) /* Nothing... */
283 vdev_disk_open(vdev_t
*vd
, uint64_t *psize
, uint64_t *max_psize
,
286 spa_t
*spa
= vd
->vdev_spa
;
287 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
288 ldi_ev_cookie_t ecookie
;
289 vdev_disk_ldi_cb_t
*lcb
;
291 struct dk_minfo_ext ude
;
294 struct dk_minfo_ext
*dkmext
= &dks
.ude
;
295 struct dk_minfo
*dkm
= &dks
.ud
;
299 boolean_t validate_devid
= B_FALSE
;
301 uint64_t capacity
= 0, blksz
= 0, pbsize
;
304 * We must have a pathname, and it must be absolute.
306 if (vd
->vdev_path
== NULL
|| vd
->vdev_path
[0] != '/') {
307 vd
->vdev_stat
.vs_aux
= VDEV_AUX_BAD_LABEL
;
308 return (SET_ERROR(EINVAL
));
312 * Reopen the device if it's not currently open. Otherwise,
313 * just update the physical size of the device.
316 if (dvd
->vd_ldi_offline
&& dvd
->vd_lh
== NULL
) {
318 * If we are opening a device in its offline notify
319 * context, the LDI handle was just closed. Clean
320 * up the LDI event callbacks and free vd->vdev_tsd.
324 ASSERT(vd
->vdev_reopening
);
330 * Create vd->vdev_tsd.
336 * When opening a disk device, we want to preserve the user's original
337 * intent. We always want to open the device by the path the user gave
338 * us, even if it is one of multiple paths to the same device. But we
339 * also want to be able to survive disks being removed/recabled.
340 * Therefore the sequence of opening devices is:
342 * 1. Try opening the device by path. For legacy pools without the
343 * 'whole_disk' property, attempt to fix the path by appending 's0'.
345 * 2. If the devid of the device matches the stored value, return
348 * 3. Otherwise, the device may have moved. Try opening the device
349 * by the devid instead.
351 if (vd
->vdev_devid
!= NULL
) {
352 if (ddi_devid_str_decode(vd
->vdev_devid
, &dvd
->vd_devid
,
353 &dvd
->vd_minor
) != 0) {
354 vd
->vdev_stat
.vs_aux
= VDEV_AUX_BAD_LABEL
;
355 return (SET_ERROR(EINVAL
));
359 error
= EINVAL
; /* presume failure */
361 if (vd
->vdev_path
!= NULL
) {
363 if (vd
->vdev_wholedisk
== -1ULL) {
364 size_t len
= strlen(vd
->vdev_path
) + 3;
365 char *buf
= kmem_alloc(len
, KM_SLEEP
);
367 (void) snprintf(buf
, len
, "%ss0", vd
->vdev_path
);
369 error
= ldi_open_by_name(buf
, spa_mode(spa
), kcred
,
370 &dvd
->vd_lh
, zfs_li
);
372 spa_strfree(vd
->vdev_path
);
374 vd
->vdev_wholedisk
= 1ULL;
381 * If we have not yet opened the device, try to open it by the
385 error
= ldi_open_by_name(vd
->vdev_path
, spa_mode(spa
),
386 kcred
, &dvd
->vd_lh
, zfs_li
);
390 * Compare the devid to the stored value.
392 if (error
== 0 && vd
->vdev_devid
!= NULL
&&
393 ldi_get_devid(dvd
->vd_lh
, &devid
) == 0) {
394 if (ddi_devid_compare(devid
, dvd
->vd_devid
) != 0) {
395 error
= SET_ERROR(EINVAL
);
396 (void) ldi_close(dvd
->vd_lh
, spa_mode(spa
),
400 ddi_devid_free(devid
);
404 * If we succeeded in opening the device, but 'vdev_wholedisk'
405 * is not yet set, then this must be a slice.
407 if (error
== 0 && vd
->vdev_wholedisk
== -1ULL)
408 vd
->vdev_wholedisk
= 0;
412 * If we were unable to open by path, or the devid check fails, open by
415 if (error
!= 0 && vd
->vdev_devid
!= NULL
) {
416 error
= ldi_open_by_devid(dvd
->vd_devid
, dvd
->vd_minor
,
417 spa_mode(spa
), kcred
, &dvd
->vd_lh
, zfs_li
);
421 * If all else fails, then try opening by physical path (if available)
422 * or the logical path (if we failed due to the devid check). While not
423 * as reliable as the devid, this will give us something, and the higher
424 * level vdev validation will prevent us from opening the wrong device.
427 if (vd
->vdev_devid
!= NULL
)
428 validate_devid
= B_TRUE
;
430 if (vd
->vdev_physpath
!= NULL
&&
431 (dev
= ddi_pathname_to_dev_t(vd
->vdev_physpath
)) != NODEV
)
432 error
= ldi_open_by_dev(&dev
, OTYP_BLK
, spa_mode(spa
),
433 kcred
, &dvd
->vd_lh
, zfs_li
);
436 * Note that we don't support the legacy auto-wholedisk support
437 * as above. This hasn't been used in a very long time and we
438 * don't need to propagate its oddities to this edge condition.
440 if (error
&& vd
->vdev_path
!= NULL
)
441 error
= ldi_open_by_name(vd
->vdev_path
, spa_mode(spa
),
442 kcred
, &dvd
->vd_lh
, zfs_li
);
446 vd
->vdev_stat
.vs_aux
= VDEV_AUX_OPEN_FAILED
;
451 * Now that the device has been successfully opened, update the devid
454 if (validate_devid
&& spa_writeable(spa
) &&
455 ldi_get_devid(dvd
->vd_lh
, &devid
) == 0) {
456 if (ddi_devid_compare(devid
, dvd
->vd_devid
) != 0) {
459 vd_devid
= ddi_devid_str_encode(devid
, dvd
->vd_minor
);
460 zfs_dbgmsg("vdev %s: update devid from %s, "
461 "to %s", vd
->vdev_path
, vd
->vdev_devid
, vd_devid
);
462 spa_strfree(vd
->vdev_devid
);
463 vd
->vdev_devid
= spa_strdup(vd_devid
);
464 ddi_devid_str_free(vd_devid
);
466 ddi_devid_free(devid
);
470 * Once a device is opened, verify that the physical device path (if
471 * available) is up to date.
473 if (ldi_get_dev(dvd
->vd_lh
, &dev
) == 0 &&
474 ldi_get_otyp(dvd
->vd_lh
, &otyp
) == 0) {
475 char *physpath
, *minorname
;
477 physpath
= kmem_alloc(MAXPATHLEN
, KM_SLEEP
);
479 if (ddi_dev_pathname(dev
, otyp
, physpath
) == 0 &&
480 ldi_get_minor_name(dvd
->vd_lh
, &minorname
) == 0 &&
481 (vd
->vdev_physpath
== NULL
||
482 strcmp(vd
->vdev_physpath
, physpath
) != 0)) {
483 if (vd
->vdev_physpath
)
484 spa_strfree(vd
->vdev_physpath
);
485 (void) strlcat(physpath
, ":", MAXPATHLEN
);
486 (void) strlcat(physpath
, minorname
, MAXPATHLEN
);
487 vd
->vdev_physpath
= spa_strdup(physpath
);
490 kmem_free(minorname
, strlen(minorname
) + 1);
491 kmem_free(physpath
, MAXPATHLEN
);
495 * Register callbacks for the LDI offline event.
497 if (ldi_ev_get_cookie(dvd
->vd_lh
, LDI_EV_OFFLINE
, &ecookie
) ==
499 lcb
= kmem_zalloc(sizeof (vdev_disk_ldi_cb_t
), KM_SLEEP
);
500 list_insert_tail(&dvd
->vd_ldi_cbs
, lcb
);
501 (void) ldi_ev_register_callbacks(dvd
->vd_lh
, ecookie
,
502 &vdev_disk_off_callb
, (void *) vd
, &lcb
->lcb_id
);
506 * Register callbacks for the LDI degrade event.
508 if (ldi_ev_get_cookie(dvd
->vd_lh
, LDI_EV_DEGRADE
, &ecookie
) ==
510 lcb
= kmem_zalloc(sizeof (vdev_disk_ldi_cb_t
), KM_SLEEP
);
511 list_insert_tail(&dvd
->vd_ldi_cbs
, lcb
);
512 (void) ldi_ev_register_callbacks(dvd
->vd_lh
, ecookie
,
513 &vdev_disk_dgrd_callb
, (void *) vd
, &lcb
->lcb_id
);
517 * Determine the actual size of the device.
519 if (ldi_get_size(dvd
->vd_lh
, psize
) != 0) {
520 vd
->vdev_stat
.vs_aux
= VDEV_AUX_OPEN_FAILED
;
521 return (SET_ERROR(EINVAL
));
527 * Determine the device's minimum transfer size.
528 * If the ioctl isn't supported, assume DEV_BSIZE.
530 if ((error
= ldi_ioctl(dvd
->vd_lh
, DKIOCGMEDIAINFOEXT
,
531 (intptr_t)dkmext
, FKIOCTL
, kcred
, NULL
)) == 0) {
532 capacity
= dkmext
->dki_capacity
- 1;
533 blksz
= dkmext
->dki_lbsize
;
534 pbsize
= dkmext
->dki_pbsize
;
535 } else if ((error
= ldi_ioctl(dvd
->vd_lh
, DKIOCGMEDIAINFO
,
536 (intptr_t)dkm
, FKIOCTL
, kcred
, NULL
)) == 0) {
538 "vdev_disk_open(\"%s\"): fallback to DKIOCGMEDIAINFO\n",
540 capacity
= dkm
->dki_capacity
- 1;
541 blksz
= dkm
->dki_lbsize
;
544 VDEV_DEBUG("vdev_disk_open(\"%s\"): "
545 "both DKIOCGMEDIAINFO{,EXT} calls failed, %d\n",
546 vd
->vdev_path
, error
);
550 *ashift
= highbit64(MAX(pbsize
, SPA_MINBLOCKSIZE
)) - 1;
552 if (vd
->vdev_wholedisk
== 1) {
557 * If we have the capability to expand, we'd have
558 * found out via success from DKIOCGMEDIAINFO{,EXT}.
559 * Adjust max_psize upward accordingly since we know
560 * we own the whole disk now.
562 *max_psize
+= vdev_disk_get_space(vd
, capacity
, blksz
);
563 zfs_dbgmsg("capacity change: vdev %s, psize %llu, "
564 "max_psize %llu", vd
->vdev_path
, *psize
,
569 * Since we own the whole disk, try to enable disk write
570 * caching. We ignore errors because it's OK if we can't do it.
572 (void) ldi_ioctl(dvd
->vd_lh
, DKIOCSETWCE
, (intptr_t)&wce
,
573 FKIOCTL
, kcred
, NULL
);
577 * Clear the nowritecache bit, so that on a vdev_reopen() we will
580 vd
->vdev_nowritecache
= B_FALSE
;
586 vdev_disk_close(vdev_t
*vd
)
588 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
590 if (vd
->vdev_reopening
|| dvd
== NULL
)
593 if (dvd
->vd_minor
!= NULL
) {
594 ddi_devid_str_free(dvd
->vd_minor
);
595 dvd
->vd_minor
= NULL
;
598 if (dvd
->vd_devid
!= NULL
) {
599 ddi_devid_free(dvd
->vd_devid
);
600 dvd
->vd_devid
= NULL
;
603 if (dvd
->vd_lh
!= NULL
) {
604 (void) ldi_close(dvd
->vd_lh
, spa_mode(vd
->vdev_spa
), kcred
);
608 vd
->vdev_delayed_close
= B_FALSE
;
610 * If we closed the LDI handle due to an offline notify from LDI,
611 * don't free vd->vdev_tsd or unregister the callbacks here;
612 * the offline finalize callback or a reopen will take care of it.
614 if (dvd
->vd_ldi_offline
)
621 vdev_disk_physio(vdev_t
*vd
, caddr_t data
,
622 size_t size
, uint64_t offset
, int flags
, boolean_t isdump
)
624 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
627 * If the vdev is closed, it's likely in the REMOVED or FAULTED state.
628 * Nothing to be done here but return failure.
630 if (dvd
== NULL
|| (dvd
->vd_ldi_offline
&& dvd
->vd_lh
== NULL
))
633 ASSERT(vd
->vdev_ops
== &vdev_disk_ops
);
636 * If in the context of an active crash dump, use the ldi_dump(9F)
637 * call instead of ldi_strategy(9F) as usual.
640 ASSERT3P(dvd
, !=, NULL
);
641 return (ldi_dump(dvd
->vd_lh
, data
, lbtodb(offset
),
645 return (vdev_disk_ldi_physio(dvd
->vd_lh
, data
, size
, offset
, flags
));
649 vdev_disk_ldi_physio(ldi_handle_t vd_lh
, caddr_t data
,
650 size_t size
, uint64_t offset
, int flags
)
656 return (SET_ERROR(EINVAL
));
658 ASSERT(flags
& B_READ
|| flags
& B_WRITE
);
660 bp
= getrbuf(KM_SLEEP
);
661 bp
->b_flags
= flags
| B_BUSY
| B_NOCACHE
| B_FAILFAST
;
663 bp
->b_un
.b_addr
= (void *)data
;
664 bp
->b_lblkno
= lbtodb(offset
);
665 bp
->b_bufsize
= size
;
667 error
= ldi_strategy(vd_lh
, bp
);
669 if ((error
= biowait(bp
)) == 0 && bp
->b_resid
!= 0)
670 error
= SET_ERROR(EIO
);
677 vdev_disk_io_intr(buf_t
*bp
)
679 vdev_buf_t
*vb
= (vdev_buf_t
*)bp
;
680 zio_t
*zio
= vb
->vb_io
;
683 * The rest of the zio stack only deals with EIO, ECKSUM, and ENXIO.
684 * Rather than teach the rest of the stack about other error
685 * possibilities (EFAULT, etc), we normalize the error value here.
687 zio
->io_error
= (geterror(bp
) != 0 ? EIO
: 0);
689 if (zio
->io_error
== 0 && bp
->b_resid
!= 0)
690 zio
->io_error
= SET_ERROR(EIO
);
692 kmem_free(vb
, sizeof (vdev_buf_t
));
694 zio_delay_interrupt(zio
);
698 vdev_disk_ioctl_free(zio_t
*zio
)
700 kmem_free(zio
->io_vsd
, sizeof (struct dk_callback
));
703 static const zio_vsd_ops_t vdev_disk_vsd_ops
= {
704 vdev_disk_ioctl_free
,
705 zio_vsd_default_cksum_report
709 vdev_disk_ioctl_done(void *zio_arg
, int error
)
711 zio_t
*zio
= zio_arg
;
713 zio
->io_error
= error
;
719 vdev_disk_io_start(zio_t
*zio
)
721 vdev_t
*vd
= zio
->io_vd
;
722 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
724 struct dk_callback
*dkc
;
729 * If the vdev is closed, it's likely in the REMOVED or FAULTED state.
730 * Nothing to be done here but return failure.
732 if (dvd
== NULL
|| (dvd
->vd_ldi_offline
&& dvd
->vd_lh
== NULL
)) {
733 zio
->io_error
= ENXIO
;
738 if (zio
->io_type
== ZIO_TYPE_IOCTL
) {
740 if (!vdev_readable(vd
)) {
741 zio
->io_error
= SET_ERROR(ENXIO
);
746 switch (zio
->io_cmd
) {
748 case DKIOCFLUSHWRITECACHE
:
750 if (zfs_nocacheflush
)
753 if (vd
->vdev_nowritecache
) {
754 zio
->io_error
= SET_ERROR(ENOTSUP
);
758 zio
->io_vsd
= dkc
= kmem_alloc(sizeof (*dkc
), KM_SLEEP
);
759 zio
->io_vsd_ops
= &vdev_disk_vsd_ops
;
761 dkc
->dkc_callback
= vdev_disk_ioctl_done
;
762 dkc
->dkc_flag
= FLUSH_VOLATILE
;
763 dkc
->dkc_cookie
= zio
;
765 error
= ldi_ioctl(dvd
->vd_lh
, zio
->io_cmd
,
766 (uintptr_t)dkc
, FKIOCTL
, kcred
, NULL
);
770 * The ioctl will be done asychronously,
771 * and will call vdev_disk_ioctl_done()
777 if (error
== ENOTSUP
|| error
== ENOTTY
) {
779 * If we get ENOTSUP or ENOTTY, we know that
780 * no future attempts will ever succeed.
781 * In this case we set a persistent bit so
782 * that we don't bother with the ioctl in the
785 vd
->vdev_nowritecache
= B_TRUE
;
787 zio
->io_error
= error
;
792 zio
->io_error
= SET_ERROR(ENOTSUP
);
799 ASSERT(zio
->io_type
== ZIO_TYPE_READ
|| zio
->io_type
== ZIO_TYPE_WRITE
);
800 zio
->io_target_timestamp
= zio_handle_io_delay(zio
);
802 vb
= kmem_alloc(sizeof (vdev_buf_t
), KM_SLEEP
);
808 bp
->b_flags
= B_BUSY
| B_NOCACHE
|
809 (zio
->io_type
== ZIO_TYPE_READ
? B_READ
: B_WRITE
);
810 if (!(zio
->io_flags
& (ZIO_FLAG_IO_RETRY
| ZIO_FLAG_TRYHARD
)))
811 bp
->b_flags
|= B_FAILFAST
;
812 bp
->b_bcount
= zio
->io_size
;
813 bp
->b_un
.b_addr
= zio
->io_data
;
814 bp
->b_lblkno
= lbtodb(zio
->io_offset
);
815 bp
->b_bufsize
= zio
->io_size
;
816 bp
->b_iodone
= (int (*)())vdev_disk_io_intr
;
818 /* ldi_strategy() will return non-zero only on programming errors */
819 VERIFY(ldi_strategy(dvd
->vd_lh
, bp
) == 0);
823 vdev_disk_io_done(zio_t
*zio
)
825 vdev_t
*vd
= zio
->io_vd
;
828 * If the device returned EIO, then attempt a DKIOCSTATE ioctl to see if
829 * the device has been removed. If this is the case, then we trigger an
830 * asynchronous removal of the device. Otherwise, probe the device and
831 * make sure it's still accessible.
833 if (zio
->io_error
== EIO
&& !vd
->vdev_remove_wanted
) {
834 vdev_disk_t
*dvd
= vd
->vdev_tsd
;
835 int state
= DKIO_NONE
;
837 if (ldi_ioctl(dvd
->vd_lh
, DKIOCSTATE
, (intptr_t)&state
,
838 FKIOCTL
, kcred
, NULL
) == 0 && state
!= DKIO_INSERTED
) {
840 * We post the resource as soon as possible, instead of
841 * when the async removal actually happens, because the
842 * DE is using this information to discard previous I/O
845 zfs_post_remove(zio
->io_spa
, vd
);
846 vd
->vdev_remove_wanted
= B_TRUE
;
847 spa_async_request(zio
->io_spa
, SPA_ASYNC_REMOVE
);
848 } else if (!vd
->vdev_delayed_close
) {
849 vd
->vdev_delayed_close
= B_TRUE
;
854 vdev_ops_t vdev_disk_ops
= {
863 VDEV_TYPE_DISK
, /* name of this vdev type */
864 B_TRUE
/* leaf vdev */
868 * Given the root disk device devid or pathname, read the label from
869 * the device, and construct a configuration nvlist.
872 vdev_disk_read_rootlabel(char *devpath
, char *devid
, nvlist_t
**config
)
878 ddi_devid_t tmpdevid
;
883 * Read the device label and build the nvlist.
885 if (devid
!= NULL
&& ddi_devid_str_decode(devid
, &tmpdevid
,
887 error
= ldi_open_by_devid(tmpdevid
, minor_name
,
888 FREAD
, kcred
, &vd_lh
, zfs_li
);
889 ddi_devid_free(tmpdevid
);
890 ddi_devid_str_free(minor_name
);
893 if (error
&& (error
= ldi_open_by_name(devpath
, FREAD
, kcred
, &vd_lh
,
897 if (ldi_get_size(vd_lh
, &s
)) {
898 (void) ldi_close(vd_lh
, FREAD
, kcred
);
899 return (SET_ERROR(EIO
));
902 size
= P2ALIGN_TYPED(s
, sizeof (vdev_label_t
), uint64_t);
903 label
= kmem_alloc(sizeof (vdev_label_t
), KM_SLEEP
);
906 for (l
= 0; l
< VDEV_LABELS
; l
++) {
907 uint64_t offset
, state
, txg
= 0;
909 /* read vdev label */
910 offset
= vdev_label_offset(size
, l
, 0);
911 if (vdev_disk_ldi_physio(vd_lh
, (caddr_t
)label
,
912 VDEV_SKIP_SIZE
+ VDEV_PHYS_SIZE
, offset
, B_READ
) != 0)
915 if (nvlist_unpack(label
->vl_vdev_phys
.vp_nvlist
,
916 sizeof (label
->vl_vdev_phys
.vp_nvlist
), config
, 0) != 0) {
921 if (nvlist_lookup_uint64(*config
, ZPOOL_CONFIG_POOL_STATE
,
922 &state
) != 0 || state
>= POOL_STATE_DESTROYED
) {
923 nvlist_free(*config
);
928 if (nvlist_lookup_uint64(*config
, ZPOOL_CONFIG_POOL_TXG
,
929 &txg
) != 0 || txg
== 0) {
930 nvlist_free(*config
);
938 kmem_free(label
, sizeof (vdev_label_t
));
939 (void) ldi_close(vd_lh
, FREAD
, kcred
);
941 error
= SET_ERROR(EIDRM
);