GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / squashfs / id.c
blob26f63a3d5c41dcd0698a5d7ffb9e1c421a3a0085
1 /* Modified by Broadcom Corp. Portions Copyright (c) Broadcom Corp, 2012. */
2 /*
3 * Squashfs - a compressed read only filesystem for Linux
5 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
6 * Phillip Lougher <phillip@lougher.demon.co.uk>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2,
11 * or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * id.c
26 * This file implements code to handle uids and gids.
28 * For space efficiency regular files store uid and gid indexes, which are
29 * converted to 32-bit uids/gids using an id look up table. This table is
30 * stored compressed into metadata blocks. A second index table is used to
31 * locate these. This second index table for speed of access (and because it
32 * is small) is read at mount time and cached in memory.
35 #include <linux/fs.h>
36 #include <linux/vfs.h>
37 #include <linux/slab.h>
39 #include "squashfs_fs.h"
40 #include "squashfs_fs_sb.h"
41 #include "squashfs.h"
44 * Map uid/gid index into real 32-bit uid/gid using the id look up table
46 int squashfs_get_id(struct super_block *sb, unsigned int index,
47 unsigned int *id)
49 struct squashfs_sb_info *msblk = sb->s_fs_info;
50 int block = SQUASHFS_ID_BLOCK(index);
51 int offset = SQUASHFS_ID_BLOCK_OFFSET(index);
52 u64 start_block = le64_to_cpu(msblk->id_table[block]);
53 __le32 disk_id;
54 int err;
56 err = squashfs_read_metadata(sb, &disk_id, &start_block, &offset,
57 sizeof(disk_id));
58 if (err < 0)
59 return err;
61 *id = le32_to_cpu(disk_id);
62 return 0;
67 * Read uncompressed id lookup table indexes from disk into memory
69 __le64 *squashfs_read_id_index_table(struct super_block *sb,
70 u64 id_table_start, unsigned short no_ids)
72 unsigned int length = SQUASHFS_ID_BLOCK_BYTES(no_ids);
73 __le64 *id_table;
74 int err;
76 TRACE("In read_id_index_table, length %d\n", length);
78 /* Allocate id lookup table indexes */
79 id_table = kmalloc(length, GFP_KERNEL);
80 if (id_table == NULL) {
81 ERROR("Failed to allocate id index table\n");
82 return ERR_PTR(-ENOMEM);
85 err = squashfs_read_table(sb, id_table, id_table_start, length);
86 if (err < 0) {
87 ERROR("unable to read id index table\n");
88 kfree(id_table);
89 return ERR_PTR(err);
92 return id_table;