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