]> Pileus Git - ~andy/linux/commitdiff
dm ioctl: increase granularity of type_lock when loading table
authorMike Snitzer <snitzer@redhat.com>
Tue, 27 Aug 2013 22:57:03 +0000 (18:57 -0400)
committerMike Snitzer <snitzer@redhat.com>
Fri, 6 Sep 2013 00:46:06 +0000 (20:46 -0400)
Hold the mapped device's type_lock before calling populate_table() since
it is where the table's type is determined based on the specified
targets.  There is no need to allow concurrent table loads to race to
establish the table's targets or type.

This eliminates the need to grab the lock in dm_table_set_type().

Also verify that the type_lock is held in both dm_set_md_type() and
dm_get_md_type().

Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
drivers/md/dm-ioctl.c
drivers/md/dm-table.c
drivers/md/dm.c

index 5667cea55e719a94870ddc31a87372a4e1d20017..42cca3642010aed3b5ccd79da6d850d969c6ef06 100644 (file)
@@ -1264,9 +1264,12 @@ static int table_load(struct dm_ioctl *param, size_t param_size)
        if (r)
                goto out;
 
+       /* Protect md->type and md->queue against concurrent table loads. */
+       dm_lock_md_type(md);
        r = populate_table(t, param, param_size);
        if (r) {
                dm_table_destroy(t);
+               dm_unlock_md_type(md);
                goto out;
        }
 
@@ -1276,12 +1279,11 @@ static int table_load(struct dm_ioctl *param, size_t param_size)
                DMWARN("can't replace immutable target type %s",
                       immutable_target_type->name);
                dm_table_destroy(t);
+               dm_unlock_md_type(md);
                r = -EINVAL;
                goto out;
        }
 
-       /* Protect md->type and md->queue against concurrent table loads. */
-       dm_lock_md_type(md);
        if (dm_get_md_type(md) == DM_TYPE_NONE)
                /* Initial table load: acquire type of table. */
                dm_set_md_type(md, dm_table_get_type(t));
index f309477d7efe6c4da1271aa2068e234933825394..8f8783533ac7e13383aed49eff8a40ba3a0218bf 100644 (file)
@@ -888,9 +888,7 @@ static int dm_table_set_type(struct dm_table *t)
                 * Determine the type from the live device.
                 * Default to bio-based if device is new.
                 */
-               dm_lock_md_type(t->md);
                live_md_type = dm_get_md_type(t->md);
-               dm_unlock_md_type(t->md);
                if (live_md_type == DM_TYPE_REQUEST_BASED)
                        request_based = 1;
                else
index ef095a96d039192c5f8b9c363628ff4de22116a5..7faeaa3d4835ad5a903fb40514302dfeeb7f92cb 100644 (file)
@@ -2235,11 +2235,13 @@ void dm_unlock_md_type(struct mapped_device *md)
 
 void dm_set_md_type(struct mapped_device *md, unsigned type)
 {
+       BUG_ON(!mutex_is_locked(&md->type_lock));
        md->type = type;
 }
 
 unsigned dm_get_md_type(struct mapped_device *md)
 {
+       BUG_ON(!mutex_is_locked(&md->type_lock));
        return md->type;
 }