Browse Source

btrfs: add check to sysfs handler of label

Add a sanity check for the fs_info as we will dereference it, similar to
what the 'store features' handler does.

Signed-off-by: David Sterba <dsterba@suse.com>
David Sterba 9 years ago
parent
commit
66ac9fe7ba
1 changed files with 3 additions and 0 deletions
  1. 3 0
      fs/btrfs/sysfs.c

+ 3 - 0
fs/btrfs/sysfs.c

@@ -377,6 +377,9 @@ static ssize_t btrfs_label_store(struct kobject *kobj,
 	struct btrfs_fs_info *fs_info = to_fs_info(kobj);
 	struct btrfs_fs_info *fs_info = to_fs_info(kobj);
 	size_t p_len;
 	size_t p_len;
 
 
+	if (!fs_info)
+		return -EPERM;
+
 	if (fs_info->sb->s_flags & MS_RDONLY)
 	if (fs_info->sb->s_flags & MS_RDONLY)
 		return -EROFS;
 		return -EROFS;