Author: mav
Date: Tue Dec 10 12:36:44 2013
New Revision: 259168
URL: http://svnweb.freebsd.org/changeset/base/259168

Log:
  Don't even try to read vdev labels from devices smaller then SPA_MINDEVSIZE
  (64MB).  Even if we would find one somehow, ZFS kernel code rejects such
  devices.  It is funny to look on attempts to read 4 256K vdev labels from
  1.44MB floppy, though it is not very practical and quite slow.

Modified:
  head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c

Modified: head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c
==============================================================================
--- head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c     Tue Dec 
10 11:47:38 2013        (r259167)
+++ head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c     Tue Dec 
10 12:36:44 2013        (r259168)
@@ -995,10 +995,10 @@ nozpool_all_slices(avl_tree_t *r, const 
 #endif /* sun */
 }
 
+#ifdef sun
 static void
 check_slices(avl_tree_t *r, int fd, const char *sname)
 {
-#ifdef sun
        struct extvtoc vtoc;
        struct dk_gpt *gpt;
        char diskname[MAXNAMELEN];
@@ -1028,8 +1028,8 @@ check_slices(avl_tree_t *r, int fd, cons
                        check_one_slice(r, diskname, i, 0, 1);
                efi_free(gpt);
        }
-#endif /* sun */
 }
+#endif /* sun */
 
 static void
 zpool_open_func(void *arg)
@@ -1059,6 +1059,7 @@ zpool_open_func(void *arg)
                return;
        }
        /* this file is too small to hold a zpool */
+#ifdef sun
        if (S_ISREG(statbuf.st_mode) &&
            statbuf.st_size < SPA_MINDEVSIZE) {
                (void) close(fd);
@@ -1070,6 +1071,12 @@ zpool_open_func(void *arg)
                 */
                check_slices(rn->rn_avl, fd, rn->rn_name);
        }
+#else  /* !sun */
+       if (statbuf.st_size < SPA_MINDEVSIZE) {
+               (void) close(fd);
+               return;
+       }
+#endif /* sun */
 
        if ((zpool_read_label(fd, &config)) != 0) {
                (void) close(fd);

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c     Tue Dec 
10 11:47:38 2013        (r259167)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c     Tue Dec 
10 12:36:44 2013        (r259168)
@@ -401,10 +401,16 @@ vdev_geom_attach_taster(struct g_consume
 
        if (pp->flags & G_PF_WITHER)
                return (EINVAL);
-       if (pp->sectorsize > VDEV_PAD_SIZE || !ISP2(pp->sectorsize))
-               return (EINVAL);
        g_attach(cp, pp);
        error = g_access(cp, 1, 0, 0);
+       if (error == 0) {
+               if (pp->sectorsize > VDEV_PAD_SIZE || !ISP2(pp->sectorsize))
+                       error = EINVAL;
+               else if (pp->mediasize < SPA_MINDEVSIZE)
+                       error = EINVAL;
+               if (error != 0)
+                       g_access(cp, -1, 0, 0);
+       }
        if (error != 0)
                g_detach(cp);
        return (error);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to