blob: ea5387679723fd46e3ee46b216e2fe2f4e0954a0 [file] [log] [blame]
Thomas Gleixner68252eb2019-05-20 19:08:00 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Phillip Lougher8256c8f62009-01-05 08:46:26 +00002/*
3 * Squashfs - a compressed read only filesystem for Linux
4 *
5 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
Phillip Lougherd7f2ff62011-05-26 10:39:56 +01006 * Phillip Lougher <phillip@squashfs.org.uk>
Phillip Lougher8256c8f62009-01-05 08:46:26 +00007 *
Phillip Lougher8256c8f62009-01-05 08:46:26 +00008 * id.c
9 */
10
11/*
12 * This file implements code to handle uids and gids.
13 *
14 * For space efficiency regular files store uid and gid indexes, which are
15 * converted to 32-bit uids/gids using an id look up table. This table is
16 * stored compressed into metadata blocks. A second index table is used to
17 * locate these. This second index table for speed of access (and because it
18 * is small) is read at mount time and cached in memory.
19 */
20
21#include <linux/fs.h>
22#include <linux/vfs.h>
23#include <linux/slab.h>
Phillip Lougher8256c8f62009-01-05 08:46:26 +000024
25#include "squashfs_fs.h"
26#include "squashfs_fs_sb.h"
Phillip Lougher8256c8f62009-01-05 08:46:26 +000027#include "squashfs.h"
28
29/*
30 * Map uid/gid index into real 32-bit uid/gid using the id look up table
31 */
32int squashfs_get_id(struct super_block *sb, unsigned int index,
33 unsigned int *id)
34{
35 struct squashfs_sb_info *msblk = sb->s_fs_info;
36 int block = SQUASHFS_ID_BLOCK(index);
37 int offset = SQUASHFS_ID_BLOCK_OFFSET(index);
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080038 u64 start_block;
Phillip Lougher8256c8f62009-01-05 08:46:26 +000039 __le32 disk_id;
40 int err;
41
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080042 if (index >= msblk->ids)
43 return -EINVAL;
44
45 start_block = le64_to_cpu(msblk->id_table[block]);
46
Phillip Lougher8256c8f62009-01-05 08:46:26 +000047 err = squashfs_read_metadata(sb, &disk_id, &start_block, &offset,
48 sizeof(disk_id));
49 if (err < 0)
50 return err;
51
52 *id = le32_to_cpu(disk_id);
53 return 0;
54}
55
56
57/*
58 * Read uncompressed id lookup table indexes from disk into memory
59 */
60__le64 *squashfs_read_id_index_table(struct super_block *sb,
Phillip Lougher37986f62011-05-24 04:05:22 +010061 u64 id_table_start, u64 next_table, unsigned short no_ids)
Phillip Lougher8256c8f62009-01-05 08:46:26 +000062{
63 unsigned int length = SQUASHFS_ID_BLOCK_BYTES(no_ids);
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080064 unsigned int indexes = SQUASHFS_ID_BLOCKS(no_ids);
65 int n;
Phillip Lougher37986f62011-05-24 04:05:22 +010066 __le64 *table;
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080067 u64 start, end;
Phillip Lougher8256c8f62009-01-05 08:46:26 +000068
69 TRACE("In read_id_index_table, length %d\n", length);
70
Phillip Lougher37986f62011-05-24 04:05:22 +010071 /* Sanity check values */
72
73 /* there should always be at least one id */
74 if (no_ids == 0)
75 return ERR_PTR(-EINVAL);
76
77 /*
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080078 * The computed size of the index table (length bytes) should exactly
79 * match the table start and end points
Phillip Lougher37986f62011-05-24 04:05:22 +010080 */
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080081 if (length != (next_table - id_table_start))
Phillip Lougher37986f62011-05-24 04:05:22 +010082 return ERR_PTR(-EINVAL);
83
84 table = squashfs_read_table(sb, id_table_start, length);
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080085 if (IS_ERR(table))
86 return table;
Phillip Lougher37986f62011-05-24 04:05:22 +010087
88 /*
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080089 * table[0], table[1], ... table[indexes - 1] store the locations
90 * of the compressed id blocks. Each entry should be less than
91 * the next (i.e. table[0] < table[1]), and the difference between them
92 * should be SQUASHFS_METADATA_SIZE or less. table[indexes - 1]
93 * should be less than id_table_start, and again the difference
94 * should be SQUASHFS_METADATA_SIZE or less
Phillip Lougher37986f62011-05-24 04:05:22 +010095 */
Phillip Lougherf37aa4c2021-02-09 13:41:53 -080096 for (n = 0; n < (indexes - 1); n++) {
97 start = le64_to_cpu(table[n]);
98 end = le64_to_cpu(table[n + 1]);
99
Phillip Lougher8b44ca22021-03-24 21:37:35 -0700100 if (start >= end || (end - start) >
101 (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
Phillip Lougherf37aa4c2021-02-09 13:41:53 -0800102 kfree(table);
103 return ERR_PTR(-EINVAL);
104 }
105 }
106
107 start = le64_to_cpu(table[indexes - 1]);
Phillip Lougher8b44ca22021-03-24 21:37:35 -0700108 if (start >= id_table_start || (id_table_start - start) >
109 (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
Phillip Lougher37986f62011-05-24 04:05:22 +0100110 kfree(table);
111 return ERR_PTR(-EINVAL);
112 }
113
114 return table;
Phillip Lougher8256c8f62009-01-05 08:46:26 +0000115}