]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c
MFC r218278:
[FreeBSD/stable/8.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / vdev_geom.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) 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
23  * All rights reserved.
24  */
25
26 #include <sys/zfs_context.h>
27 #include <sys/param.h>
28 #include <sys/kernel.h>
29 #include <sys/bio.h>
30 #include <sys/disk.h>
31 #include <sys/spa.h>
32 #include <sys/spa_impl.h>
33 #include <sys/vdev_impl.h>
34 #include <sys/fs/zfs.h>
35 #include <sys/zio.h>
36 #include <geom/geom.h>
37 #include <geom/geom_int.h>
38
39 /*
40  * Virtual device vector for GEOM.
41  */
42
43 struct g_class zfs_vdev_class = {
44         .name = "ZFS::VDEV",
45         .version = G_VERSION,
46 };
47
48 DECLARE_GEOM_CLASS(zfs_vdev_class, zfs_vdev);
49
50 static void
51 vdev_geom_orphan(struct g_consumer *cp)
52 {
53         struct g_geom *gp;
54         vdev_t *vd;
55         int error;
56
57         g_topology_assert();
58
59         vd = cp->private;
60         gp = cp->geom;
61         error = cp->provider->error;
62
63         ZFS_LOG(1, "Closing access to %s.", cp->provider->name);
64         if (cp->acr + cp->acw + cp->ace > 0)
65                 g_access(cp, -cp->acr, -cp->acw, -cp->ace);
66         ZFS_LOG(1, "Destroyed consumer to %s.", cp->provider->name);
67         g_detach(cp);
68         g_destroy_consumer(cp);
69         /* Destroy geom if there are no consumers left. */
70         if (LIST_EMPTY(&gp->consumer)) {
71                 ZFS_LOG(1, "Destroyed geom %s.", gp->name);
72                 g_wither_geom(gp, error);
73         }
74         vd->vdev_tsd = NULL;
75         vd->vdev_remove_wanted = B_TRUE;
76         spa_async_request(vd->vdev_spa, SPA_ASYNC_REMOVE);
77 }
78
79 static struct g_consumer *
80 vdev_geom_attach(struct g_provider *pp)
81 {
82         struct g_geom *gp;
83         struct g_consumer *cp;
84
85         g_topology_assert();
86
87         ZFS_LOG(1, "Attaching to %s.", pp->name);
88         /* Do we have geom already? No? Create one. */
89         LIST_FOREACH(gp, &zfs_vdev_class.geom, geom) {
90                 if (gp->flags & G_GEOM_WITHER)
91                         continue;
92                 if (strcmp(gp->name, "zfs::vdev") != 0)
93                         continue;
94                 break;
95         }
96         if (gp == NULL) {
97                 gp = g_new_geomf(&zfs_vdev_class, "zfs::vdev");
98                 gp->orphan = vdev_geom_orphan;
99                 cp = g_new_consumer(gp);
100                 if (g_attach(cp, pp) != 0) {
101                         g_wither_geom(gp, ENXIO);
102                         return (NULL);
103                 }
104                 if (g_access(cp, 1, 0, 1) != 0) {
105                         g_wither_geom(gp, ENXIO);
106                         return (NULL);
107                 }
108                 ZFS_LOG(1, "Created geom and consumer for %s.", pp->name);
109         } else {
110                 /* Check if we are already connected to this provider. */
111                 LIST_FOREACH(cp, &gp->consumer, consumer) {
112                         if (cp->provider == pp) {
113                                 ZFS_LOG(1, "Found consumer for %s.", pp->name);
114                                 break;
115                         }
116                 }
117                 if (cp == NULL) {
118                         cp = g_new_consumer(gp);
119                         if (g_attach(cp, pp) != 0) {
120                                 g_destroy_consumer(cp);
121                                 return (NULL);
122                         }
123                         if (g_access(cp, 1, 0, 1) != 0) {
124                                 g_detach(cp);
125                                 g_destroy_consumer(cp);
126                                 return (NULL);
127                         }
128                         ZFS_LOG(1, "Created consumer for %s.", pp->name);
129                 } else {
130                         if (g_access(cp, 1, 0, 1) != 0)
131                                 return (NULL);
132                         ZFS_LOG(1, "Used existing consumer for %s.", pp->name);
133                 }
134         }
135         return (cp);
136 }
137
138 static void
139 vdev_geom_detach(void *arg, int flag __unused)
140 {
141         struct g_geom *gp;
142         struct g_consumer *cp;
143
144         g_topology_assert();
145         cp = arg;
146         gp = cp->geom;
147
148         ZFS_LOG(1, "Closing access to %s.", cp->provider->name);
149         g_access(cp, -1, 0, -1);
150         /* Destroy consumer on last close. */
151         if (cp->acr == 0 && cp->ace == 0) {
152                 ZFS_LOG(1, "Destroyed consumer to %s.", cp->provider->name);
153                 if (cp->acw > 0)
154                         g_access(cp, 0, -cp->acw, 0);
155                 g_detach(cp);
156                 g_destroy_consumer(cp);
157         }
158         /* Destroy geom if there are no consumers left. */
159         if (LIST_EMPTY(&gp->consumer)) {
160                 ZFS_LOG(1, "Destroyed geom %s.", gp->name);
161                 g_wither_geom(gp, ENXIO);
162         }
163 }
164
165 static uint64_t
166 nvlist_get_guid(nvlist_t *list)
167 {
168         nvpair_t *elem = NULL;
169         uint64_t value;
170
171         while ((elem = nvlist_next_nvpair(list, elem)) != NULL) {
172                 if (nvpair_type(elem) == DATA_TYPE_UINT64 &&
173                     strcmp(nvpair_name(elem), "guid") == 0) {
174                         VERIFY(nvpair_value_uint64(elem, &value) == 0);
175                         return (value);
176                 }
177         }
178         return (0);
179 }
180
181 static int
182 vdev_geom_io(struct g_consumer *cp, int cmd, void *data, off_t offset, off_t size)
183 {
184         struct bio *bp;
185         u_char *p;
186         off_t off;
187         int error;
188
189         ASSERT((offset % cp->provider->sectorsize) == 0);
190         ASSERT((size % cp->provider->sectorsize) == 0);
191
192         bp = g_alloc_bio();
193         off = offset;
194         offset += size;
195         p = data;
196         error = 0;
197
198         for (; off < offset; off += MAXPHYS, p += MAXPHYS, size -= MAXPHYS) {
199                 bzero(bp, sizeof(*bp));
200                 bp->bio_cmd = cmd;
201                 bp->bio_done = NULL;
202                 bp->bio_offset = off;
203                 bp->bio_length = MIN(size, MAXPHYS);
204                 bp->bio_data = p;
205                 g_io_request(bp, cp);
206                 error = biowait(bp, "vdev_geom_io");
207                 if (error != 0)
208                         break;
209         }
210
211         g_destroy_bio(bp);
212         return (error);
213 }
214
215 static uint64_t
216 vdev_geom_read_guid(struct g_consumer *cp)
217 {
218         struct g_provider *pp;
219         vdev_label_t *label;
220         char *p, *buf;
221         size_t buflen;
222         uint64_t psize;
223         off_t offset, size;
224         uint64_t guid;
225         int error, l, len, iszvol;
226
227         g_topology_assert_not();
228
229         pp = cp->provider;
230         ZFS_LOG(1, "Reading guid from %s...", pp->name);
231         if (g_getattr("ZFS::iszvol", cp, &iszvol) == 0 && iszvol) {
232                 ZFS_LOG(1, "Skipping ZVOL-based provider %s.", pp->name);
233                 return (0);
234         }
235
236         psize = pp->mediasize;
237         psize = P2ALIGN(psize, (uint64_t)sizeof(vdev_label_t));
238
239         size = sizeof(*label) + pp->sectorsize -
240             ((sizeof(*label) - 1) % pp->sectorsize) - 1;
241
242         guid = 0;
243         label = kmem_alloc(size, KM_SLEEP);
244         buflen = sizeof(label->vl_vdev_phys.vp_nvlist);
245
246         for (l = 0; l < VDEV_LABELS; l++) {
247                 nvlist_t *config = NULL;
248
249                 offset = vdev_label_offset(psize, l, 0);
250                 if ((offset % pp->sectorsize) != 0)
251                         continue;
252
253                 if (vdev_geom_io(cp, BIO_READ, label, offset, size) != 0)
254                         continue;
255                 buf = label->vl_vdev_phys.vp_nvlist;
256
257                 if (nvlist_unpack(buf, buflen, &config, 0) != 0)
258                         continue;
259
260                 guid = nvlist_get_guid(config);
261                 nvlist_free(config);
262                 if (guid != 0)
263                         break;
264         }
265
266         kmem_free(label, size);
267         if (guid != 0)
268                 ZFS_LOG(1, "guid for %s is %ju", pp->name, (uintmax_t)guid);
269         return (guid);
270 }
271
272 struct vdev_geom_find {
273         uint64_t guid;
274         struct g_consumer *cp;
275 };
276
277 static void
278 vdev_geom_taste_orphan(struct g_consumer *cp)
279 {
280
281         KASSERT(1 == 0, ("%s called while tasting %s.", __func__,
282             cp->provider->name));
283 }
284
285 static void
286 vdev_geom_attach_by_guid_event(void *arg, int flags __unused)
287 {
288         struct vdev_geom_find *ap;
289         struct g_class *mp;
290         struct g_geom *gp, *zgp;
291         struct g_provider *pp;
292         struct g_consumer *zcp;
293         uint64_t guid;
294
295         g_topology_assert();
296
297         ap = arg;
298
299         zgp = g_new_geomf(&zfs_vdev_class, "zfs::vdev::taste");
300         /* This orphan function should be never called. */
301         zgp->orphan = vdev_geom_taste_orphan;
302         zcp = g_new_consumer(zgp);
303
304         LIST_FOREACH(mp, &g_classes, class) {
305                 if (mp == &zfs_vdev_class)
306                         continue;
307                 LIST_FOREACH(gp, &mp->geom, geom) {
308                         if (gp->flags & G_GEOM_WITHER)
309                                 continue;
310                         LIST_FOREACH(pp, &gp->provider, provider) {
311                                 if (pp->flags & G_PF_WITHER)
312                                         continue;
313                                 g_attach(zcp, pp);
314                                 if (g_access(zcp, 1, 0, 0) != 0) {
315                                         g_detach(zcp);
316                                         continue;
317                                 }
318                                 g_topology_unlock();
319                                 guid = vdev_geom_read_guid(zcp);
320                                 g_topology_lock();
321                                 g_access(zcp, -1, 0, 0);
322                                 g_detach(zcp);
323                                 if (guid != ap->guid)
324                                         continue;
325                                 ap->cp = vdev_geom_attach(pp);
326                                 if (ap->cp == NULL) {
327                                         printf("ZFS WARNING: Unable to attach to %s.\n",
328                                             pp->name);
329                                         continue;
330                                 }
331                                 goto end;
332                         }
333                 }
334         }
335         ap->cp = NULL;
336 end:
337         g_destroy_consumer(zcp);
338         g_destroy_geom(zgp);
339 }
340
341 static struct g_consumer *
342 vdev_geom_attach_by_guid(uint64_t guid)
343 {
344         struct vdev_geom_find *ap;
345         struct g_consumer *cp;
346
347         ap = kmem_zalloc(sizeof(*ap), KM_SLEEP);
348         ap->guid = guid;
349         g_waitfor_event(vdev_geom_attach_by_guid_event, ap, M_WAITOK, NULL);
350         cp = ap->cp;
351         kmem_free(ap, sizeof(*ap));
352         return (cp);
353 }
354
355 static struct g_consumer *
356 vdev_geom_open_by_guid(vdev_t *vd)
357 {
358         struct g_consumer *cp;
359         char *buf;
360         size_t len;
361
362         ZFS_LOG(1, "Searching by guid [%ju].", (uintmax_t)vd->vdev_guid);
363         cp = vdev_geom_attach_by_guid(vd->vdev_guid);
364         if (cp != NULL) {
365                 len = strlen(cp->provider->name) + strlen("/dev/") + 1;
366                 buf = kmem_alloc(len, KM_SLEEP);
367
368                 snprintf(buf, len, "/dev/%s", cp->provider->name);
369                 spa_strfree(vd->vdev_path);
370                 vd->vdev_path = buf;
371
372                 ZFS_LOG(1, "Attach by guid [%ju] succeeded, provider %s.",
373                     (uintmax_t)vd->vdev_guid, vd->vdev_path);
374         } else {
375                 ZFS_LOG(1, "Search by guid [%ju] failed.",
376                     (uintmax_t)vd->vdev_guid);
377         }
378
379         return (cp);
380 }
381
382 static struct g_consumer *
383 vdev_geom_open_by_path(vdev_t *vd, int check_guid)
384 {
385         struct g_provider *pp;
386         struct g_consumer *cp;
387         uint64_t guid;
388
389         cp = NULL;
390         g_topology_lock();
391         pp = g_provider_by_name(vd->vdev_path + sizeof("/dev/") - 1);
392         if (pp != NULL) {
393                 ZFS_LOG(1, "Found provider by name %s.", vd->vdev_path);
394                 cp = vdev_geom_attach(pp);
395                 if (cp != NULL && check_guid && ISP2(pp->sectorsize) &&
396                     pp->sectorsize <= VDEV_PAD_SIZE) {
397                         g_topology_unlock();
398                         guid = vdev_geom_read_guid(cp);
399                         g_topology_lock();
400                         if (guid != vd->vdev_guid) {
401                                 vdev_geom_detach(cp, 0);
402                                 cp = NULL;
403                                 ZFS_LOG(1, "guid mismatch for provider %s: "
404                                     "%ju != %ju.", vd->vdev_path,
405                                     (uintmax_t)vd->vdev_guid, (uintmax_t)guid);
406                         } else {
407                                 ZFS_LOG(1, "guid match for provider %s.",
408                                     vd->vdev_path);
409                         }
410                 }
411         }
412         g_topology_unlock();
413
414         return (cp);
415 }
416
417 static int
418 vdev_geom_open(vdev_t *vd, uint64_t *psize, uint64_t *ashift)
419 {
420         struct g_provider *pp;
421         struct g_consumer *cp;
422         int error, owned;
423
424         /*
425          * We must have a pathname, and it must be absolute.
426          */
427         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
428                 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
429                 return (EINVAL);
430         }
431
432         vd->vdev_tsd = NULL;
433
434         if ((owned = mtx_owned(&Giant)))
435                 mtx_unlock(&Giant);
436         error = 0;
437
438         /*
439          * If we're creating pool, just find GEOM provider by its name
440          * and ignore GUID mismatches.
441          */
442         if (vd->vdev_spa->spa_load_state == SPA_LOAD_NONE)
443                 cp = vdev_geom_open_by_path(vd, 0);
444         else {
445                 cp = vdev_geom_open_by_path(vd, 1);
446                 if (cp == NULL) {
447                         /*
448                          * The device at vd->vdev_path doesn't have the
449                          * expected guid. The disks might have merely
450                          * moved around so try all other GEOM providers
451                          * to find one with the right guid.
452                          */
453                         cp = vdev_geom_open_by_guid(vd);
454                 }
455         }
456
457         if (cp == NULL) {
458                 ZFS_LOG(1, "Provider %s not found.", vd->vdev_path);
459                 error = ENOENT;
460         } else if (cp->provider->sectorsize > VDEV_PAD_SIZE ||
461             !ISP2(cp->provider->sectorsize)) {
462                 ZFS_LOG(1, "Provider %s has unsupported sectorsize.",
463                     vd->vdev_path);
464
465                 g_topology_lock();
466                 vdev_geom_detach(cp, 0);
467                 g_topology_unlock();
468
469                 error = EINVAL;
470                 cp = NULL;
471         } else if (cp->acw == 0 && (spa_mode(vd->vdev_spa) & FWRITE) != 0) {
472                 int i;
473
474                 g_topology_lock();
475                 for (i = 0; i < 5; i++) {
476                         error = g_access(cp, 0, 1, 0);
477                         if (error == 0)
478                                 break;
479                         g_topology_unlock();
480                         tsleep(vd, 0, "vdev", hz / 2);
481                         g_topology_lock();
482                 }
483                 if (error != 0) {
484                         printf("ZFS WARNING: Unable to open %s for writing (error=%d).\n",
485                             vd->vdev_path, error);
486                         vdev_geom_detach(cp, 0);
487                         cp = NULL;
488                 }
489                 g_topology_unlock();
490         }
491         if (owned)
492                 mtx_lock(&Giant);
493         if (cp == NULL) {
494                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
495                 return (error);
496         }
497
498         cp->private = vd;
499         vd->vdev_tsd = cp;
500         pp = cp->provider;
501
502         /*
503          * Determine the actual size of the device.
504          */
505         *psize = pp->mediasize;
506
507         /*
508          * Determine the device's minimum transfer size.
509          */
510         *ashift = highbit(MAX(pp->sectorsize, SPA_MINBLOCKSIZE)) - 1;
511
512         /*
513          * Clear the nowritecache bit, so that on a vdev_reopen() we will
514          * try again.
515          */
516         vd->vdev_nowritecache = B_FALSE;
517
518         return (0);
519 }
520
521 static void
522 vdev_geom_close(vdev_t *vd)
523 {
524         struct g_consumer *cp;
525
526         cp = vd->vdev_tsd;
527         if (cp == NULL)
528                 return;
529         vd->vdev_tsd = NULL;
530         g_post_event(vdev_geom_detach, cp, M_WAITOK, NULL);
531 }
532
533 static void
534 vdev_geom_io_intr(struct bio *bp)
535 {
536         zio_t *zio;
537
538         zio = bp->bio_caller1;
539         zio->io_error = bp->bio_error;
540         if (zio->io_error == 0 && bp->bio_resid != 0)
541                 zio->io_error = EIO;
542         if (bp->bio_cmd == BIO_FLUSH && bp->bio_error == ENOTSUP) {
543                 vdev_t *vd;
544
545                 /*
546                  * If we get ENOTSUP, we know that no future
547                  * attempts will ever succeed.  In this case we
548                  * set a persistent bit so that we don't bother
549                  * with the ioctl in the future.
550                  */
551                 vd = zio->io_vd;
552                 vd->vdev_nowritecache = B_TRUE;
553         }
554         g_destroy_bio(bp);
555         zio_interrupt(zio);
556 }
557
558 static int
559 vdev_geom_io_start(zio_t *zio)
560 {
561         vdev_t *vd;
562         struct g_consumer *cp;
563         struct bio *bp;
564         int error;
565
566         vd = zio->io_vd;
567
568         if (zio->io_type == ZIO_TYPE_IOCTL) {
569                 /* XXPOLICY */
570                 if (!vdev_readable(vd)) {
571                         zio->io_error = ENXIO;
572                         return (ZIO_PIPELINE_CONTINUE);
573                 }
574
575                 switch (zio->io_cmd) {
576
577                 case DKIOCFLUSHWRITECACHE:
578
579                         if (zfs_nocacheflush)
580                                 break;
581
582                         if (vd->vdev_nowritecache) {
583                                 zio->io_error = ENOTSUP;
584                                 break;
585                         }
586
587                         goto sendreq;
588                 default:
589                         zio->io_error = ENOTSUP;
590                 }
591
592                 return (ZIO_PIPELINE_CONTINUE);
593         }
594 sendreq:
595         cp = vd->vdev_tsd;
596         if (cp == NULL) {
597                 zio->io_error = ENXIO;
598                 return (ZIO_PIPELINE_CONTINUE);
599         }
600         bp = g_alloc_bio();
601         bp->bio_caller1 = zio;
602         switch (zio->io_type) {
603         case ZIO_TYPE_READ:
604         case ZIO_TYPE_WRITE:
605                 bp->bio_cmd = zio->io_type == ZIO_TYPE_READ ? BIO_READ : BIO_WRITE;
606                 bp->bio_data = zio->io_data;
607                 bp->bio_offset = zio->io_offset;
608                 bp->bio_length = zio->io_size;
609                 break;
610         case ZIO_TYPE_IOCTL:
611                 bp->bio_cmd = BIO_FLUSH;
612                 bp->bio_flags |= BIO_ORDERED;
613                 bp->bio_data = NULL;
614                 bp->bio_offset = cp->provider->mediasize;
615                 bp->bio_length = 0;
616                 break;
617         }
618         bp->bio_done = vdev_geom_io_intr;
619
620         g_io_request(bp, cp);
621
622         return (ZIO_PIPELINE_STOP);
623 }
624
625 static void
626 vdev_geom_io_done(zio_t *zio)
627 {
628 }
629
630 vdev_ops_t vdev_geom_ops = {
631         vdev_geom_open,
632         vdev_geom_close,
633         vdev_default_asize,
634         vdev_geom_io_start,
635         vdev_geom_io_done,
636         NULL,
637         VDEV_TYPE_DISK,         /* name of this vdev type */
638         B_TRUE                  /* leaf vdev */
639 };