2 * Squashfs - a compressed read only filesystem for Linux
5 * Phillip Lougher <phillip@squashfs.org.uk>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2,
10 * or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * This file implements code to map the 32-bit xattr id stored in the inode
26 * into the on disk location of the xattr data.
30 #include <linux/vfs.h>
31 #include <linux/slab.h>
33 #include "squashfs_fs.h"
34 #include "squashfs_fs_sb.h"
39 * Map xattr id using the xattr id look up table
41 int squashfs_xattr_lookup(struct super_block *sb, unsigned int index,
42 int *count, unsigned int *size, unsigned long long *xattr)
44 struct squashfs_sb_info *msblk = sb->s_fs_info;
45 int block = SQUASHFS_XATTR_BLOCK(index);
46 int offset = SQUASHFS_XATTR_BLOCK_OFFSET(index);
48 struct squashfs_xattr_id id;
51 if (index >= msblk->xattr_ids)
54 start_block = le64_to_cpu(msblk->xattr_id_table[block]);
56 err = squashfs_read_metadata(sb, &id, &start_block, &offset,
61 *xattr = le64_to_cpu(id.xattr);
62 *size = le32_to_cpu(id.size);
63 *count = le32_to_cpu(id.count);
69 * Read uncompressed xattr id lookup table indexes from disk into memory
71 __le64 *squashfs_read_xattr_id_table(struct super_block *sb, u64 table_start,
72 u64 *xattr_table_start, int *xattr_ids)
74 struct squashfs_sb_info *msblk = sb->s_fs_info;
75 unsigned int len, indexes;
76 struct squashfs_xattr_id_table *id_table;
81 id_table = squashfs_read_table(sb, table_start, sizeof(*id_table));
83 return (__le64 *) id_table;
85 *xattr_table_start = le64_to_cpu(id_table->xattr_table_start);
86 *xattr_ids = le32_to_cpu(id_table->xattr_ids);
89 /* Sanity check values */
91 /* there is always at least one xattr id */
93 return ERR_PTR(-EINVAL);
95 len = SQUASHFS_XATTR_BLOCK_BYTES(*xattr_ids);
96 indexes = SQUASHFS_XATTR_BLOCKS(*xattr_ids);
99 * The computed size of the index table (len bytes) should exactly
100 * match the table start and end points
102 start = table_start + sizeof(*id_table);
103 end = msblk->bytes_used;
105 if (len != (end - start))
106 return ERR_PTR(-EINVAL);
108 table = squashfs_read_table(sb, start, len);
112 /* table[0], table[1], ... table[indexes - 1] store the locations
113 * of the compressed xattr id blocks. Each entry should be less than
114 * the next (i.e. table[0] < table[1]), and the difference between them
115 * should be SQUASHFS_METADATA_SIZE or less. table[indexes - 1]
116 * should be less than table_start, and again the difference
117 * shouls be SQUASHFS_METADATA_SIZE or less.
119 * Finally xattr_table_start should be less than table[0].
121 for (n = 0; n < (indexes - 1); n++) {
122 start = le64_to_cpu(table[n]);
123 end = le64_to_cpu(table[n + 1]);
125 if (start >= end || (end - start) >
126 (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
128 return ERR_PTR(-EINVAL);
132 start = le64_to_cpu(table[indexes - 1]);
133 if (start >= table_start || (table_start - start) >
134 (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
136 return ERR_PTR(-EINVAL);
139 if (*xattr_table_start >= le64_to_cpu(table[0])) {
141 return ERR_PTR(-EINVAL);