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) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
  23  * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
  24  * Copyright 2016 Nexenta Systems, Inc.  All rights reserved.
  25  * Copyright (c) 2013 Joyent, Inc.  All rights reserved.
  26  * Copyright (c) 2017 James S Blachly, MD <james.blachly@gmail.com>
  27  */
  28 
  29 #include <sys/zfs_context.h>
  30 #include <sys/spa_impl.h>
  31 #include <sys/refcount.h>
  32 #include <sys/vdev_disk.h>
  33 #include <sys/vdev_impl.h>
  34 #include <sys/abd.h>
  35 #include <sys/fs/zfs.h>
  36 #include <sys/zio.h>
  37 #include <sys/sunldi.h>
  38 #include <sys/efi_partition.h>
  39 #include <sys/fm/fs/zfs.h>
  40 
  41 /*
  42  * Virtual device vector for disks.
  43  */
  44 
  45 extern ldi_ident_t zfs_li;
  46 
  47 static void vdev_disk_close(vdev_t *);
  48 
  49 typedef struct vdev_disk_ldi_cb {
  50         list_node_t             lcb_next;
  51         ldi_callback_id_t       lcb_id;
  52 } vdev_disk_ldi_cb_t;
  53 
  54 static void
  55 vdev_disk_alloc(vdev_t *vd)
  56 {
  57         vdev_disk_t *dvd;
  58 
  59         dvd = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
  60         /*
  61          * Create the LDI event callback list.
  62          */
  63         list_create(&dvd->vd_ldi_cbs, sizeof (vdev_disk_ldi_cb_t),
  64             offsetof(vdev_disk_ldi_cb_t, lcb_next));
  65 }
  66 
  67 static void
  68 vdev_disk_free(vdev_t *vd)
  69 {
  70         vdev_disk_t *dvd = vd->vdev_tsd;
  71         vdev_disk_ldi_cb_t *lcb;
  72 
  73         if (dvd == NULL)
  74                 return;
  75 
  76         /*
  77          * We have already closed the LDI handle. Clean up the LDI event
  78          * callbacks and free vd->vdev_tsd.
  79          */
  80         while ((lcb = list_head(&dvd->vd_ldi_cbs)) != NULL) {
  81                 list_remove(&dvd->vd_ldi_cbs, lcb);
  82                 (void) ldi_ev_remove_callbacks(lcb->lcb_id);
  83                 kmem_free(lcb, sizeof (vdev_disk_ldi_cb_t));
  84         }
  85         list_destroy(&dvd->vd_ldi_cbs);
  86         kmem_free(dvd, sizeof (vdev_disk_t));
  87         vd->vdev_tsd = NULL;
  88 }
  89 
  90 /* ARGSUSED */
  91 static int
  92 vdev_disk_off_notify(ldi_handle_t lh, ldi_ev_cookie_t ecookie, void *arg,
  93     void *ev_data)
  94 {
  95         vdev_t *vd = (vdev_t *)arg;
  96         vdev_disk_t *dvd = vd->vdev_tsd;
  97 
  98         /*
  99          * Ignore events other than offline.
 100          */
 101         if (strcmp(ldi_ev_get_type(ecookie), LDI_EV_OFFLINE) != 0)
 102                 return (LDI_EV_SUCCESS);
 103 
 104         /*
 105          * All LDI handles must be closed for the state change to succeed, so
 106          * call on vdev_disk_close() to do this.
 107          *
 108          * We inform vdev_disk_close that it is being called from offline
 109          * notify context so it will defer cleanup of LDI event callbacks and
 110          * freeing of vd->vdev_tsd to the offline finalize or a reopen.
 111          */
 112         dvd->vd_ldi_offline = B_TRUE;
 113         vdev_disk_close(vd);
 114 
 115         /*
 116          * Now that the device is closed, request that the spa_async_thread
 117          * mark the device as REMOVED and notify FMA of the removal.
 118          */
 119         zfs_post_remove(vd->vdev_spa, vd);
 120         vd->vdev_remove_wanted = B_TRUE;
 121         spa_async_request(vd->vdev_spa, SPA_ASYNC_REMOVE);
 122 
 123         return (LDI_EV_SUCCESS);
 124 }
 125 
 126 /* ARGSUSED */
 127 static void
 128 vdev_disk_off_finalize(ldi_handle_t lh, ldi_ev_cookie_t ecookie,
 129     int ldi_result, void *arg, void *ev_data)
 130 {
 131         vdev_t *vd = (vdev_t *)arg;
 132 
 133         /*
 134          * Ignore events other than offline.
 135          */
 136         if (strcmp(ldi_ev_get_type(ecookie), LDI_EV_OFFLINE) != 0)
 137                 return;
 138 
 139         /*
 140          * We have already closed the LDI handle in notify.
 141          * Clean up the LDI event callbacks and free vd->vdev_tsd.
 142          */
 143         vdev_disk_free(vd);
 144 
 145         /*
 146          * Request that the vdev be reopened if the offline state change was
 147          * unsuccessful.
 148          */
 149         if (ldi_result != LDI_EV_SUCCESS) {
 150                 vd->vdev_probe_wanted = B_TRUE;
 151                 spa_async_request(vd->vdev_spa, SPA_ASYNC_PROBE);
 152         }
 153 }
 154 
 155 static ldi_ev_callback_t vdev_disk_off_callb = {
 156         .cb_vers = LDI_EV_CB_VERS,
 157         .cb_notify = vdev_disk_off_notify,
 158         .cb_finalize = vdev_disk_off_finalize
 159 };
 160 
 161 /* ARGSUSED */
 162 static void
 163 vdev_disk_dgrd_finalize(ldi_handle_t lh, ldi_ev_cookie_t ecookie,
 164     int ldi_result, void *arg, void *ev_data)
 165 {
 166         vdev_t *vd = (vdev_t *)arg;
 167 
 168         /*
 169          * Ignore events other than degrade.
 170          */
 171         if (strcmp(ldi_ev_get_type(ecookie), LDI_EV_DEGRADE) != 0)
 172                 return;
 173 
 174         /*
 175          * Degrade events always succeed. Mark the vdev as degraded.
 176          * This status is purely informative for the user.
 177          */
 178         (void) vdev_degrade(vd->vdev_spa, vd->vdev_guid, 0);
 179 }
 180 
 181 static ldi_ev_callback_t vdev_disk_dgrd_callb = {
 182         .cb_vers = LDI_EV_CB_VERS,
 183         .cb_notify = NULL,
 184         .cb_finalize = vdev_disk_dgrd_finalize
 185 };
 186 
 187 static void
 188 vdev_disk_hold(vdev_t *vd)
 189 {
 190         ddi_devid_t devid;
 191         char *minor;
 192 
 193         ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
 194 
 195         /*
 196          * We must have a pathname, and it must be absolute.
 197          */
 198         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/')
 199                 return;
 200 
 201         /*
 202          * Only prefetch path and devid info if the device has
 203          * never been opened.
 204          */
 205         if (vd->vdev_tsd != NULL)
 206                 return;
 207 
 208         if (vd->vdev_wholedisk == -1ULL) {
 209                 size_t len = strlen(vd->vdev_path) + 3;
 210                 char *buf = kmem_alloc(len, KM_SLEEP);
 211 
 212                 (void) snprintf(buf, len, "%ss0", vd->vdev_path);
 213 
 214                 (void) ldi_vp_from_name(buf, &vd->vdev_name_vp);
 215                 kmem_free(buf, len);
 216         }
 217 
 218         if (vd->vdev_name_vp == NULL)
 219                 (void) ldi_vp_from_name(vd->vdev_path, &vd->vdev_name_vp);
 220 
 221         if (vd->vdev_devid != NULL &&
 222             ddi_devid_str_decode(vd->vdev_devid, &devid, &minor) == 0) {
 223                 (void) ldi_vp_from_devid(devid, minor, &vd->vdev_devid_vp);
 224                 ddi_devid_str_free(minor);
 225                 ddi_devid_free(devid);
 226         }
 227 }
 228 
 229 static void
 230 vdev_disk_rele(vdev_t *vd)
 231 {
 232         ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
 233 
 234         if (vd->vdev_name_vp) {
 235                 VN_RELE_ASYNC(vd->vdev_name_vp,
 236                     dsl_pool_vnrele_taskq(vd->vdev_spa->spa_dsl_pool));
 237                 vd->vdev_name_vp = NULL;
 238         }
 239         if (vd->vdev_devid_vp) {
 240                 VN_RELE_ASYNC(vd->vdev_devid_vp,
 241                     dsl_pool_vnrele_taskq(vd->vdev_spa->spa_dsl_pool));
 242                 vd->vdev_devid_vp = NULL;
 243         }
 244 }
 245 
 246 /*
 247  * We want to be loud in DEBUG kernels when DKIOCGMEDIAINFOEXT fails, or when
 248  * even a fallback to DKIOCGMEDIAINFO fails.
 249  */
 250 #ifdef DEBUG
 251 #define VDEV_DEBUG(...) cmn_err(CE_NOTE, __VA_ARGS__)
 252 #else
 253 #define VDEV_DEBUG(...) /* Nothing... */
 254 #endif
 255 
 256 static int
 257 vdev_disk_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
 258     uint64_t *ashift)
 259 {
 260         spa_t *spa = vd->vdev_spa;
 261         vdev_disk_t *dvd = vd->vdev_tsd;
 262         ldi_ev_cookie_t ecookie;
 263         vdev_disk_ldi_cb_t *lcb;
 264         union {
 265                 struct dk_minfo_ext ude;
 266                 struct dk_minfo ud;
 267         } dks;
 268         struct dk_minfo_ext *dkmext = &dks.ude;
 269         struct dk_minfo *dkm = &dks.ud;
 270         int error;
 271         dev_t dev;
 272         int otyp;
 273         boolean_t validate_devid = B_FALSE;
 274         ddi_devid_t devid;
 275         uint64_t capacity = 0, blksz = 0, pbsize;
 276         int device_rotational;
 277 
 278         /*
 279          * We must have a pathname, and it must be absolute.
 280          */
 281         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
 282                 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
 283                 return (SET_ERROR(EINVAL));
 284         }
 285 
 286         /*
 287          * Reopen the device if it's not currently open. Otherwise,
 288          * just update the physical size of the device.
 289          */
 290         if (dvd != NULL) {
 291                 if (dvd->vd_ldi_offline && dvd->vd_lh == NULL) {
 292                         /*
 293                          * If we are opening a device in its offline notify
 294                          * context, the LDI handle was just closed. Clean
 295                          * up the LDI event callbacks and free vd->vdev_tsd.
 296                          */
 297                         vdev_disk_free(vd);
 298                 } else {
 299                         ASSERT(vd->vdev_reopening);
 300                         goto skip_open;
 301                 }
 302         }
 303 
 304         /*
 305          * Create vd->vdev_tsd.
 306          */
 307         vdev_disk_alloc(vd);
 308         dvd = vd->vdev_tsd;
 309 
 310         /*
 311          * When opening a disk device, we want to preserve the user's original
 312          * intent.  We always want to open the device by the path the user gave
 313          * us, even if it is one of multiple paths to the same device.  But we
 314          * also want to be able to survive disks being removed/recabled.
 315          * Therefore the sequence of opening devices is:
 316          *
 317          * 1. Try opening the device by path.  For legacy pools without the
 318          *    'whole_disk' property, attempt to fix the path by appending 's0'.
 319          *
 320          * 2. If the devid of the device matches the stored value, return
 321          *    success.
 322          *
 323          * 3. Otherwise, the device may have moved.  Try opening the device
 324          *    by the devid instead.
 325          */
 326         if (vd->vdev_devid != NULL) {
 327                 if (ddi_devid_str_decode(vd->vdev_devid, &dvd->vd_devid,
 328                     &dvd->vd_minor) != 0) {
 329                         vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
 330                         return (SET_ERROR(EINVAL));
 331                 }
 332         }
 333 
 334         error = EINVAL;         /* presume failure */
 335 
 336         if (vd->vdev_path != NULL) {
 337 
 338                 if (vd->vdev_wholedisk == -1ULL) {
 339                         size_t len = strlen(vd->vdev_path) + 3;
 340                         char *buf = kmem_alloc(len, KM_SLEEP);
 341 
 342                         (void) snprintf(buf, len, "%ss0", vd->vdev_path);
 343 
 344                         error = ldi_open_by_name(buf, spa_mode(spa), kcred,
 345                             &dvd->vd_lh, zfs_li);
 346                         if (error == 0) {
 347                                 spa_strfree(vd->vdev_path);
 348                                 vd->vdev_path = buf;
 349                                 vd->vdev_wholedisk = 1ULL;
 350                         } else {
 351                                 kmem_free(buf, len);
 352                         }
 353                 }
 354 
 355                 /*
 356                  * If we have not yet opened the device, try to open it by the
 357                  * specified path.
 358                  */
 359                 if (error != 0) {
 360                         error = ldi_open_by_name(vd->vdev_path, spa_mode(spa),
 361                             kcred, &dvd->vd_lh, zfs_li);
 362                 }
 363 
 364                 /*
 365                  * Compare the devid to the stored value.
 366                  */
 367                 if (error == 0 && vd->vdev_devid != NULL &&
 368                     ldi_get_devid(dvd->vd_lh, &devid) == 0) {
 369                         if (ddi_devid_compare(devid, dvd->vd_devid) != 0) {
 370                                 error = SET_ERROR(EINVAL);
 371                                 (void) ldi_close(dvd->vd_lh, spa_mode(spa),
 372                                     kcred);
 373                                 dvd->vd_lh = NULL;
 374                         }
 375                         ddi_devid_free(devid);
 376                 }
 377 
 378                 /*
 379                  * If we succeeded in opening the device, but 'vdev_wholedisk'
 380                  * is not yet set, then this must be a slice.
 381                  */
 382                 if (error == 0 && vd->vdev_wholedisk == -1ULL)
 383                         vd->vdev_wholedisk = 0;
 384         }
 385 
 386         /*
 387          * If we were unable to open by path, or the devid check fails, open by
 388          * devid instead.
 389          */
 390         if (error != 0 && vd->vdev_devid != NULL) {
 391                 error = ldi_open_by_devid(dvd->vd_devid, dvd->vd_minor,
 392                     spa_mode(spa), kcred, &dvd->vd_lh, zfs_li);
 393         }
 394 
 395         /*
 396          * If all else fails, then try opening by physical path (if available)
 397          * or the logical path (if we failed due to the devid check).  While not
 398          * as reliable as the devid, this will give us something, and the higher
 399          * level vdev validation will prevent us from opening the wrong device.
 400          */
 401         if (error) {
 402                 if (vd->vdev_devid != NULL)
 403                         validate_devid = B_TRUE;
 404 
 405                 if (vd->vdev_physpath != NULL &&
 406                     (dev = ddi_pathname_to_dev_t(vd->vdev_physpath)) != NODEV)
 407                         error = ldi_open_by_dev(&dev, OTYP_BLK, spa_mode(spa),
 408                             kcred, &dvd->vd_lh, zfs_li);
 409 
 410                 /*
 411                  * Note that we don't support the legacy auto-wholedisk support
 412                  * as above.  This hasn't been used in a very long time and we
 413                  * don't need to propagate its oddities to this edge condition.
 414                  */
 415                 if (error && vd->vdev_path != NULL)
 416                         error = ldi_open_by_name(vd->vdev_path, spa_mode(spa),
 417                             kcred, &dvd->vd_lh, zfs_li);
 418         }
 419 
 420         if (error) {
 421                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
 422                 return (error);
 423         }
 424 
 425         /*
 426          * Now that the device has been successfully opened, update the devid
 427          * if necessary.
 428          */
 429         if (validate_devid && spa_writeable(spa) &&
 430             ldi_get_devid(dvd->vd_lh, &devid) == 0) {
 431                 if (ddi_devid_compare(devid, dvd->vd_devid) != 0) {
 432                         char *vd_devid;
 433 
 434                         vd_devid = ddi_devid_str_encode(devid, dvd->vd_minor);
 435                         zfs_dbgmsg("vdev %s: update devid from %s, "
 436                             "to %s", vd->vdev_path, vd->vdev_devid, vd_devid);
 437                         spa_strfree(vd->vdev_devid);
 438                         vd->vdev_devid = spa_strdup(vd_devid);
 439                         ddi_devid_str_free(vd_devid);
 440                 }
 441                 ddi_devid_free(devid);
 442         }
 443 
 444         /*
 445          * Once a device is opened, verify that the physical device path (if
 446          * available) is up to date.
 447          */
 448         if (ldi_get_dev(dvd->vd_lh, &dev) == 0 &&
 449             ldi_get_otyp(dvd->vd_lh, &otyp) == 0) {
 450                 char *physpath, *minorname;
 451 
 452                 physpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
 453                 minorname = NULL;
 454                 if (ddi_dev_pathname(dev, otyp, physpath) == 0 &&
 455                     ldi_get_minor_name(dvd->vd_lh, &minorname) == 0 &&
 456                     (vd->vdev_physpath == NULL ||
 457                     strcmp(vd->vdev_physpath, physpath) != 0)) {
 458                         if (vd->vdev_physpath)
 459                                 spa_strfree(vd->vdev_physpath);
 460                         (void) strlcat(physpath, ":", MAXPATHLEN);
 461                         (void) strlcat(physpath, minorname, MAXPATHLEN);
 462                         vd->vdev_physpath = spa_strdup(physpath);
 463                 }
 464                 if (minorname)
 465                         kmem_free(minorname, strlen(minorname) + 1);
 466                 kmem_free(physpath, MAXPATHLEN);
 467         }
 468 
 469         /*
 470          * Register callbacks for the LDI offline event.
 471          */
 472         if (ldi_ev_get_cookie(dvd->vd_lh, LDI_EV_OFFLINE, &ecookie) ==
 473             LDI_EV_SUCCESS) {
 474                 lcb = kmem_zalloc(sizeof (vdev_disk_ldi_cb_t), KM_SLEEP);
 475                 list_insert_tail(&dvd->vd_ldi_cbs, lcb);
 476                 (void) ldi_ev_register_callbacks(dvd->vd_lh, ecookie,
 477                     &vdev_disk_off_callb, (void *) vd, &lcb->lcb_id);
 478         }
 479 
 480         /*
 481          * Register callbacks for the LDI degrade event.
 482          */
 483         if (ldi_ev_get_cookie(dvd->vd_lh, LDI_EV_DEGRADE, &ecookie) ==
 484             LDI_EV_SUCCESS) {
 485                 lcb = kmem_zalloc(sizeof (vdev_disk_ldi_cb_t), KM_SLEEP);
 486                 list_insert_tail(&dvd->vd_ldi_cbs, lcb);
 487                 (void) ldi_ev_register_callbacks(dvd->vd_lh, ecookie,
 488                     &vdev_disk_dgrd_callb, (void *) vd, &lcb->lcb_id);
 489         }
 490 skip_open:
 491         /*
 492          * Determine the actual size of the device.
 493          */
 494         if (ldi_get_size(dvd->vd_lh, psize) != 0) {
 495                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
 496                 return (SET_ERROR(EINVAL));
 497         }
 498 
 499         *max_psize = *psize;
 500 
 501         /*
 502          * Determine the device's minimum transfer size.
 503          * If the ioctl isn't supported, assume DEV_BSIZE.
 504          */
 505         if ((error = ldi_ioctl(dvd->vd_lh, DKIOCGMEDIAINFOEXT,
 506             (intptr_t)dkmext, FKIOCTL, kcred, NULL)) == 0) {
 507                 capacity = dkmext->dki_capacity - 1;
 508                 blksz = dkmext->dki_lbsize;
 509                 pbsize = dkmext->dki_pbsize;
 510         } else if ((error = ldi_ioctl(dvd->vd_lh, DKIOCGMEDIAINFO,
 511             (intptr_t)dkm, FKIOCTL, kcred, NULL)) == 0) {
 512                 VDEV_DEBUG(
 513                     "vdev_disk_open(\"%s\"): fallback to DKIOCGMEDIAINFO\n",
 514                     vd->vdev_path);
 515                 capacity = dkm->dki_capacity - 1;
 516                 blksz = dkm->dki_lbsize;
 517                 pbsize = blksz;
 518         } else {
 519                 VDEV_DEBUG("vdev_disk_open(\"%s\"): "
 520                     "both DKIOCGMEDIAINFO{,EXT} calls failed, %d\n",
 521                     vd->vdev_path, error);
 522                 pbsize = DEV_BSIZE;
 523         }
 524 
 525         *ashift = highbit64(MAX(pbsize, SPA_MINBLOCKSIZE)) - 1;
 526 
 527         if (vd->vdev_wholedisk == 1) {
 528                 int wce = 1;
 529 
 530                 if (error == 0) {
 531                         /*
 532                          * If we have the capability to expand, we'd have
 533                          * found out via success from DKIOCGMEDIAINFO{,EXT}.
 534                          * Adjust max_psize upward accordingly since we know
 535                          * we own the whole disk now.
 536                          */
 537                         *max_psize = capacity * blksz;
 538                 }
 539 
 540                 /*
 541                  * Since we own the whole disk, try to enable disk write
 542                  * caching.  We ignore errors because it's OK if we can't do it.
 543                  */
 544                 (void) ldi_ioctl(dvd->vd_lh, DKIOCSETWCE, (intptr_t)&wce,
 545                     FKIOCTL, kcred, NULL);
 546         }
 547 
 548         /*
 549          * Inform the ZIO pipeline if we are non-rotational
 550          */
 551         device_rotational = ldi_prop_get_int(dvd->vd_lh, LDI_DEV_T_ANY,
 552             "device-rotational", 1);
 553         vd->vdev_nonrot = (device_rotational ? B_FALSE : B_TRUE);
 554 
 555         /*
 556          * Clear the nowritecache bit, so that on a vdev_reopen() we will
 557          * try again.
 558          */
 559         vd->vdev_nowritecache = B_FALSE;
 560 
 561         return (0);
 562 }
 563 
 564 static void
 565 vdev_disk_close(vdev_t *vd)
 566 {
 567         vdev_disk_t *dvd = vd->vdev_tsd;
 568 
 569         if (vd->vdev_reopening || dvd == NULL)
 570                 return;
 571 
 572         if (dvd->vd_minor != NULL) {
 573                 ddi_devid_str_free(dvd->vd_minor);
 574                 dvd->vd_minor = NULL;
 575         }
 576 
 577         if (dvd->vd_devid != NULL) {
 578                 ddi_devid_free(dvd->vd_devid);
 579                 dvd->vd_devid = NULL;
 580         }
 581 
 582         if (dvd->vd_lh != NULL) {
 583                 (void) ldi_close(dvd->vd_lh, spa_mode(vd->vdev_spa), kcred);
 584                 dvd->vd_lh = NULL;
 585         }
 586 
 587         vd->vdev_delayed_close = B_FALSE;
 588         /*
 589          * If we closed the LDI handle due to an offline notify from LDI,
 590          * don't free vd->vdev_tsd or unregister the callbacks here;
 591          * the offline finalize callback or a reopen will take care of it.
 592          */
 593         if (dvd->vd_ldi_offline)
 594                 return;
 595 
 596         vdev_disk_free(vd);
 597 }
 598 
 599 int
 600 vdev_disk_physio(vdev_t *vd, caddr_t data,
 601     size_t size, uint64_t offset, int flags, boolean_t isdump)
 602 {
 603         vdev_disk_t *dvd = vd->vdev_tsd;
 604 
 605         /*
 606          * If the vdev is closed, it's likely in the REMOVED or FAULTED state.
 607          * Nothing to be done here but return failure.
 608          */
 609         if (dvd == NULL || (dvd->vd_ldi_offline && dvd->vd_lh == NULL))
 610                 return (EIO);
 611 
 612         ASSERT(vd->vdev_ops == &vdev_disk_ops);
 613 
 614         /*
 615          * If in the context of an active crash dump, use the ldi_dump(9F)
 616          * call instead of ldi_strategy(9F) as usual.
 617          */
 618         if (isdump) {
 619                 ASSERT3P(dvd, !=, NULL);
 620                 return (ldi_dump(dvd->vd_lh, data, lbtodb(offset),
 621                     lbtodb(size)));
 622         }
 623 
 624         return (vdev_disk_ldi_physio(dvd->vd_lh, data, size, offset, flags));
 625 }
 626 
 627 int
 628 vdev_disk_ldi_physio(ldi_handle_t vd_lh, caddr_t data,
 629     size_t size, uint64_t offset, int flags)
 630 {
 631         buf_t *bp;
 632         int error = 0;
 633 
 634         if (vd_lh == NULL)
 635                 return (SET_ERROR(EINVAL));
 636 
 637         ASSERT(flags & B_READ || flags & B_WRITE);
 638 
 639         bp = getrbuf(KM_SLEEP);
 640         bp->b_flags = flags | B_BUSY | B_NOCACHE | B_FAILFAST;
 641         bp->b_bcount = size;
 642         bp->b_un.b_addr = (void *)data;
 643         bp->b_lblkno = lbtodb(offset);
 644         bp->b_bufsize = size;
 645 
 646         error = ldi_strategy(vd_lh, bp);
 647         ASSERT(error == 0);
 648         if ((error = biowait(bp)) == 0 && bp->b_resid != 0)
 649                 error = SET_ERROR(EIO);
 650         freerbuf(bp);
 651 
 652         return (error);
 653 }
 654 
 655 static void
 656 vdev_disk_io_intr(buf_t *bp)
 657 {
 658         vdev_buf_t *vb = (vdev_buf_t *)bp;
 659         zio_t *zio = vb->vb_io;
 660 
 661         /*
 662          * The rest of the zio stack only deals with EIO, ECKSUM, and ENXIO.
 663          * Rather than teach the rest of the stack about other error
 664          * possibilities (EFAULT, etc), we normalize the error value here.
 665          */
 666         zio->io_error = (geterror(bp) != 0 ? EIO : 0);
 667 
 668         if (zio->io_error == 0 && bp->b_resid != 0)
 669                 zio->io_error = SET_ERROR(EIO);
 670 
 671         if (zio->io_type == ZIO_TYPE_READ) {
 672                 abd_return_buf_copy(zio->io_abd, bp->b_un.b_addr, zio->io_size);
 673         } else {
 674                 abd_return_buf(zio->io_abd, bp->b_un.b_addr, zio->io_size);
 675         }
 676 
 677         kmem_free(vb, sizeof (vdev_buf_t));
 678 
 679         zio_delay_interrupt(zio);
 680 }
 681 
 682 static void
 683 vdev_disk_ioctl_free(zio_t *zio)
 684 {
 685         kmem_free(zio->io_vsd, sizeof (struct dk_callback));
 686 }
 687 
 688 static const zio_vsd_ops_t vdev_disk_vsd_ops = {
 689         vdev_disk_ioctl_free,
 690         zio_vsd_default_cksum_report
 691 };
 692 
 693 static void
 694 vdev_disk_ioctl_done(void *zio_arg, int error)
 695 {
 696         zio_t *zio = zio_arg;
 697 
 698         zio->io_error = error;
 699 
 700         zio_interrupt(zio);
 701 }
 702 
 703 static void
 704 vdev_disk_io_start(zio_t *zio)
 705 {
 706         vdev_t *vd = zio->io_vd;
 707         vdev_disk_t *dvd = vd->vdev_tsd;
 708         vdev_buf_t *vb;
 709         struct dk_callback *dkc;
 710         buf_t *bp;
 711         int error;
 712 
 713         /*
 714          * If the vdev is closed, it's likely in the REMOVED or FAULTED state.
 715          * Nothing to be done here but return failure.
 716          */
 717         if (dvd == NULL || (dvd->vd_ldi_offline && dvd->vd_lh == NULL)) {
 718                 zio->io_error = ENXIO;
 719                 zio_interrupt(zio);
 720                 return;
 721         }
 722 
 723         if (zio->io_type == ZIO_TYPE_IOCTL) {
 724                 /* XXPOLICY */
 725                 if (!vdev_readable(vd)) {
 726                         zio->io_error = SET_ERROR(ENXIO);
 727                         zio_interrupt(zio);
 728                         return;
 729                 }
 730 
 731                 switch (zio->io_cmd) {
 732 
 733                 case DKIOCFLUSHWRITECACHE:
 734 
 735                         if (zfs_nocacheflush)
 736                                 break;
 737 
 738                         if (vd->vdev_nowritecache) {
 739                                 zio->io_error = SET_ERROR(ENOTSUP);
 740                                 break;
 741                         }
 742 
 743                         zio->io_vsd = dkc = kmem_alloc(sizeof (*dkc), KM_SLEEP);
 744                         zio->io_vsd_ops = &vdev_disk_vsd_ops;
 745 
 746                         dkc->dkc_callback = vdev_disk_ioctl_done;
 747                         dkc->dkc_flag = FLUSH_VOLATILE;
 748                         dkc->dkc_cookie = zio;
 749 
 750                         error = ldi_ioctl(dvd->vd_lh, zio->io_cmd,
 751                             (uintptr_t)dkc, FKIOCTL, kcred, NULL);
 752 
 753                         if (error == 0) {
 754                                 /*
 755                                  * The ioctl will be done asychronously,
 756                                  * and will call vdev_disk_ioctl_done()
 757                                  * upon completion.
 758                                  */
 759                                 return;
 760                         }
 761 
 762                         zio->io_error = error;
 763 
 764                         break;
 765 
 766                 default:
 767                         zio->io_error = SET_ERROR(ENOTSUP);
 768                 }
 769 
 770                 zio_execute(zio);
 771                 return;
 772         }
 773 
 774         ASSERT(zio->io_type == ZIO_TYPE_READ || zio->io_type == ZIO_TYPE_WRITE);
 775         zio->io_target_timestamp = zio_handle_io_delay(zio);
 776 
 777         vb = kmem_alloc(sizeof (vdev_buf_t), KM_SLEEP);
 778 
 779         vb->vb_io = zio;
 780         bp = &vb->vb_buf;
 781 
 782         bioinit(bp);
 783         bp->b_flags = B_BUSY | B_NOCACHE |
 784             (zio->io_type == ZIO_TYPE_READ ? B_READ : B_WRITE);
 785         if (!(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
 786                 bp->b_flags |= B_FAILFAST;
 787         bp->b_bcount = zio->io_size;
 788 
 789         if (zio->io_type == ZIO_TYPE_READ) {
 790                 bp->b_un.b_addr =
 791                     abd_borrow_buf(zio->io_abd, zio->io_size);
 792         } else {
 793                 bp->b_un.b_addr =
 794                     abd_borrow_buf_copy(zio->io_abd, zio->io_size);
 795         }
 796 
 797         bp->b_lblkno = lbtodb(zio->io_offset);
 798         bp->b_bufsize = zio->io_size;
 799         bp->b_iodone = (int (*)())vdev_disk_io_intr;
 800 
 801         /* ldi_strategy() will return non-zero only on programming errors */
 802         VERIFY(ldi_strategy(dvd->vd_lh, bp) == 0);
 803 }
 804 
 805 static void
 806 vdev_disk_io_done(zio_t *zio)
 807 {
 808         vdev_t *vd = zio->io_vd;
 809 
 810         /*
 811          * If the device returned EIO, then attempt a DKIOCSTATE ioctl to see if
 812          * the device has been removed.  If this is the case, then we trigger an
 813          * asynchronous removal of the device. Otherwise, probe the device and
 814          * make sure it's still accessible.
 815          */
 816         if (zio->io_error == EIO && !vd->vdev_remove_wanted) {
 817                 vdev_disk_t *dvd = vd->vdev_tsd;
 818                 int state = DKIO_NONE;
 819 
 820                 if (ldi_ioctl(dvd->vd_lh, DKIOCSTATE, (intptr_t)&state,
 821                     FKIOCTL, kcred, NULL) == 0 && state != DKIO_INSERTED) {
 822                         /*
 823                          * We post the resource as soon as possible, instead of
 824                          * when the async removal actually happens, because the
 825                          * DE is using this information to discard previous I/O
 826                          * errors.
 827                          */
 828                         zfs_post_remove(zio->io_spa, vd);
 829                         vd->vdev_remove_wanted = B_TRUE;
 830                         spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
 831                 } else if (!vd->vdev_delayed_close) {
 832                         vd->vdev_delayed_close = B_TRUE;
 833                 }
 834         }
 835 }
 836 
 837 vdev_ops_t vdev_disk_ops = {
 838         vdev_disk_open,
 839         vdev_disk_close,
 840         vdev_default_asize,
 841         vdev_disk_io_start,
 842         vdev_disk_io_done,
 843         NULL,
 844         vdev_disk_hold,
 845         vdev_disk_rele,
 846         VDEV_TYPE_DISK,         /* name of this vdev type */
 847         B_TRUE                  /* leaf vdev */
 848 };
 849 
 850 /*
 851  * Given the root disk device devid or pathname, read the label from
 852  * the device, and construct a configuration nvlist.
 853  */
 854 int
 855 vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
 856 {
 857         ldi_handle_t vd_lh;
 858         vdev_label_t *label;
 859         uint64_t s, size;
 860         int l;
 861         ddi_devid_t tmpdevid;
 862         int error = -1;
 863         char *minor_name;
 864 
 865         /*
 866          * Read the device label and build the nvlist.
 867          */
 868         if (devid != NULL && ddi_devid_str_decode(devid, &tmpdevid,
 869             &minor_name) == 0) {
 870                 error = ldi_open_by_devid(tmpdevid, minor_name,
 871                     FREAD, kcred, &vd_lh, zfs_li);
 872                 ddi_devid_free(tmpdevid);
 873                 ddi_devid_str_free(minor_name);
 874         }
 875 
 876         if (error && (error = ldi_open_by_name(devpath, FREAD, kcred, &vd_lh,
 877             zfs_li)))
 878                 return (error);
 879 
 880         if (ldi_get_size(vd_lh, &s)) {
 881                 (void) ldi_close(vd_lh, FREAD, kcred);
 882                 return (SET_ERROR(EIO));
 883         }
 884 
 885         size = P2ALIGN_TYPED(s, sizeof (vdev_label_t), uint64_t);
 886         label = kmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
 887 
 888         *config = NULL;
 889         for (l = 0; l < VDEV_LABELS; l++) {
 890                 uint64_t offset, state, txg = 0;
 891 
 892                 /* read vdev label */
 893                 offset = vdev_label_offset(size, l, 0);
 894                 if (vdev_disk_ldi_physio(vd_lh, (caddr_t)label,
 895                     VDEV_SKIP_SIZE + VDEV_PHYS_SIZE, offset, B_READ) != 0)
 896                         continue;
 897 
 898                 if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
 899                     sizeof (label->vl_vdev_phys.vp_nvlist), config, 0) != 0) {
 900                         *config = NULL;
 901                         continue;
 902                 }
 903 
 904                 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_STATE,
 905                     &state) != 0 || state >= POOL_STATE_DESTROYED) {
 906                         nvlist_free(*config);
 907                         *config = NULL;
 908                         continue;
 909                 }
 910 
 911                 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_TXG,
 912                     &txg) != 0 || txg == 0) {
 913                         nvlist_free(*config);
 914                         *config = NULL;
 915                         continue;
 916                 }
 917 
 918                 break;
 919         }
 920 
 921         kmem_free(label, sizeof (vdev_label_t));
 922         (void) ldi_close(vd_lh, FREAD, kcred);
 923         if (*config == NULL)
 924                 error = SET_ERROR(EIDRM);
 925 
 926         return (error);
 927 }