diff options
Diffstat (limited to 'fs/squashfs/super.c')
-rw-r--r-- | fs/squashfs/super.c | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c index 48b6f4a385a6..88b4f8606652 100644 --- a/fs/squashfs/super.c +++ b/fs/squashfs/super.c | |||
@@ -36,12 +36,14 @@ | |||
36 | #include <linux/init.h> | 36 | #include <linux/init.h> |
37 | #include <linux/module.h> | 37 | #include <linux/module.h> |
38 | #include <linux/magic.h> | 38 | #include <linux/magic.h> |
39 | #include <linux/xattr.h> | ||
39 | 40 | ||
40 | #include "squashfs_fs.h" | 41 | #include "squashfs_fs.h" |
41 | #include "squashfs_fs_sb.h" | 42 | #include "squashfs_fs_sb.h" |
42 | #include "squashfs_fs_i.h" | 43 | #include "squashfs_fs_i.h" |
43 | #include "squashfs.h" | 44 | #include "squashfs.h" |
44 | #include "decompressor.h" | 45 | #include "decompressor.h" |
46 | #include "xattr.h" | ||
45 | 47 | ||
46 | static struct file_system_type squashfs_fs_type; | 48 | static struct file_system_type squashfs_fs_type; |
47 | static const struct super_operations squashfs_super_ops; | 49 | static const struct super_operations squashfs_super_ops; |
@@ -82,7 +84,7 @@ static int squashfs_fill_super(struct super_block *sb, void *data, int silent) | |||
82 | long long root_inode; | 84 | long long root_inode; |
83 | unsigned short flags; | 85 | unsigned short flags; |
84 | unsigned int fragments; | 86 | unsigned int fragments; |
85 | u64 lookup_table_start; | 87 | u64 lookup_table_start, xattr_id_table_start; |
86 | int err; | 88 | int err; |
87 | 89 | ||
88 | TRACE("Entered squashfs_fill_superblock\n"); | 90 | TRACE("Entered squashfs_fill_superblock\n"); |
@@ -139,13 +141,6 @@ static int squashfs_fill_super(struct super_block *sb, void *data, int silent) | |||
139 | if (msblk->decompressor == NULL) | 141 | if (msblk->decompressor == NULL) |
140 | goto failed_mount; | 142 | goto failed_mount; |
141 | 143 | ||
142 | /* | ||
143 | * Check if there's xattrs in the filesystem. These are not | ||
144 | * supported in this version, so warn that they will be ignored. | ||
145 | */ | ||
146 | if (le64_to_cpu(sblk->xattr_table_start) != SQUASHFS_INVALID_BLK) | ||
147 | ERROR("Xattrs in filesystem, these will be ignored\n"); | ||
148 | |||
149 | /* Check the filesystem does not extend beyond the end of the | 144 | /* Check the filesystem does not extend beyond the end of the |
150 | block device */ | 145 | block device */ |
151 | msblk->bytes_used = le64_to_cpu(sblk->bytes_used); | 146 | msblk->bytes_used = le64_to_cpu(sblk->bytes_used); |
@@ -253,7 +248,7 @@ static int squashfs_fill_super(struct super_block *sb, void *data, int silent) | |||
253 | allocate_lookup_table: | 248 | allocate_lookup_table: |
254 | lookup_table_start = le64_to_cpu(sblk->lookup_table_start); | 249 | lookup_table_start = le64_to_cpu(sblk->lookup_table_start); |
255 | if (lookup_table_start == SQUASHFS_INVALID_BLK) | 250 | if (lookup_table_start == SQUASHFS_INVALID_BLK) |
256 | goto allocate_root; | 251 | goto allocate_xattr_table; |
257 | 252 | ||
258 | /* Allocate and read inode lookup table */ | 253 | /* Allocate and read inode lookup table */ |
259 | msblk->inode_lookup_table = squashfs_read_inode_lookup_table(sb, | 254 | msblk->inode_lookup_table = squashfs_read_inode_lookup_table(sb, |
@@ -266,6 +261,21 @@ allocate_lookup_table: | |||
266 | 261 | ||
267 | sb->s_export_op = &squashfs_export_ops; | 262 | sb->s_export_op = &squashfs_export_ops; |
268 | 263 | ||
264 | allocate_xattr_table: | ||
265 | sb->s_xattr = squashfs_xattr_handlers; | ||
266 | xattr_id_table_start = le64_to_cpu(sblk->xattr_id_table_start); | ||
267 | if (xattr_id_table_start == SQUASHFS_INVALID_BLK) | ||
268 | goto allocate_root; | ||
269 | |||
270 | /* Allocate and read xattr id lookup table */ | ||
271 | msblk->xattr_id_table = squashfs_read_xattr_id_table(sb, | ||
272 | xattr_id_table_start, &msblk->xattr_table, &msblk->xattr_ids); | ||
273 | if (IS_ERR(msblk->xattr_id_table)) { | ||
274 | err = PTR_ERR(msblk->xattr_id_table); | ||
275 | msblk->xattr_id_table = NULL; | ||
276 | if (err != -ENOTSUPP) | ||
277 | goto failed_mount; | ||
278 | } | ||
269 | allocate_root: | 279 | allocate_root: |
270 | root = new_inode(sb); | 280 | root = new_inode(sb); |
271 | if (!root) { | 281 | if (!root) { |
@@ -301,6 +311,7 @@ failed_mount: | |||
301 | kfree(msblk->inode_lookup_table); | 311 | kfree(msblk->inode_lookup_table); |
302 | kfree(msblk->fragment_index); | 312 | kfree(msblk->fragment_index); |
303 | kfree(msblk->id_table); | 313 | kfree(msblk->id_table); |
314 | kfree(msblk->xattr_id_table); | ||
304 | kfree(sb->s_fs_info); | 315 | kfree(sb->s_fs_info); |
305 | sb->s_fs_info = NULL; | 316 | sb->s_fs_info = NULL; |
306 | kfree(sblk); | 317 | kfree(sblk); |
@@ -355,6 +366,7 @@ static void squashfs_put_super(struct super_block *sb) | |||
355 | kfree(sbi->fragment_index); | 366 | kfree(sbi->fragment_index); |
356 | kfree(sbi->meta_index); | 367 | kfree(sbi->meta_index); |
357 | kfree(sbi->inode_lookup_table); | 368 | kfree(sbi->inode_lookup_table); |
369 | kfree(sbi->xattr_id_table); | ||
358 | kfree(sb->s_fs_info); | 370 | kfree(sb->s_fs_info); |
359 | sb->s_fs_info = NULL; | 371 | sb->s_fs_info = NULL; |
360 | } | 372 | } |