Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * Squashfs - a compressed read only filesystem for Linux
  4 *
  5 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
  6 * Phillip Lougher <phillip@squashfs.org.uk>
  7 *
  8 * export.c
  9 */
 10
 11/*
 12 * This file implements code to make Squashfs filesystems exportable (NFS etc.)
 13 *
 14 * The export code uses an inode lookup table to map inode numbers passed in
 15 * filehandles to an inode location on disk.  This table is stored compressed
 16 * into metadata blocks.  A second index table is used to locate these.  This
 17 * second index table for speed of access (and because it is small) is read at
 18 * mount time and cached in memory.
 19 *
 20 * The inode lookup table is used only by the export code, inode disk
 21 * locations are directly encoded in directories, enabling direct access
 22 * without an intermediate lookup for all operations except the export ops.
 23 */
 24
 25#include <linux/fs.h>
 26#include <linux/vfs.h>
 27#include <linux/dcache.h>
 28#include <linux/exportfs.h>
 29#include <linux/slab.h>
 30
 31#include "squashfs_fs.h"
 32#include "squashfs_fs_sb.h"
 33#include "squashfs_fs_i.h"
 34#include "squashfs.h"
 35
 36/*
 37 * Look-up inode number (ino) in table, returning the inode location.
 38 */
 39static long long squashfs_inode_lookup(struct super_block *sb, int ino_num)
 40{
 41	struct squashfs_sb_info *msblk = sb->s_fs_info;
 42	int blk = SQUASHFS_LOOKUP_BLOCK(ino_num - 1);
 43	int offset = SQUASHFS_LOOKUP_BLOCK_OFFSET(ino_num - 1);
 44	u64 start;
 45	__le64 ino;
 46	int err;
 47
 48	TRACE("Entered squashfs_inode_lookup, inode_number = %d\n", ino_num);
 49
 50	if (ino_num == 0 || (ino_num - 1) >= msblk->inodes)
 51		return -EINVAL;
 52
 53	start = le64_to_cpu(msblk->inode_lookup_table[blk]);
 54
 55	err = squashfs_read_metadata(sb, &ino, &start, &offset, sizeof(ino));
 56	if (err < 0)
 57		return err;
 58
 59	TRACE("squashfs_inode_lookup, inode = 0x%llx\n",
 60		(u64) le64_to_cpu(ino));
 61
 62	return le64_to_cpu(ino);
 63}
 64
 65
 66static struct dentry *squashfs_export_iget(struct super_block *sb,
 67	unsigned int ino_num)
 68{
 69	long long ino;
 70	struct dentry *dentry = ERR_PTR(-ENOENT);
 71
 72	TRACE("Entered squashfs_export_iget\n");
 73
 74	ino = squashfs_inode_lookup(sb, ino_num);
 75	if (ino >= 0)
 76		dentry = d_obtain_alias(squashfs_iget(sb, ino, ino_num));
 77
 78	return dentry;
 79}
 80
 81
 82static struct dentry *squashfs_fh_to_dentry(struct super_block *sb,
 83		struct fid *fid, int fh_len, int fh_type)
 84{
 85	if ((fh_type != FILEID_INO32_GEN && fh_type != FILEID_INO32_GEN_PARENT)
 86			|| fh_len < 2)
 87		return NULL;
 88
 89	return squashfs_export_iget(sb, fid->i32.ino);
 90}
 91
 92
 93static struct dentry *squashfs_fh_to_parent(struct super_block *sb,
 94		struct fid *fid, int fh_len, int fh_type)
 95{
 96	if (fh_type != FILEID_INO32_GEN_PARENT || fh_len < 4)
 97		return NULL;
 98
 99	return squashfs_export_iget(sb, fid->i32.parent_ino);
100}
101
102
103static struct dentry *squashfs_get_parent(struct dentry *child)
104{
105	struct inode *inode = d_inode(child);
106	unsigned int parent_ino = squashfs_i(inode)->parent;
107
108	return squashfs_export_iget(inode->i_sb, parent_ino);
109}
110
111
112/*
113 * Read uncompressed inode lookup table indexes off disk into memory
114 */
115__le64 *squashfs_read_inode_lookup_table(struct super_block *sb,
116		u64 lookup_table_start, u64 next_table, unsigned int inodes)
117{
118	unsigned int length = SQUASHFS_LOOKUP_BLOCK_BYTES(inodes);
119	unsigned int indexes = SQUASHFS_LOOKUP_BLOCKS(inodes);
120	int n;
121	__le64 *table;
122	u64 start, end;
123
124	TRACE("In read_inode_lookup_table, length %d\n", length);
125
126	/* Sanity check values */
127
128	/* there should always be at least one inode */
129	if (inodes == 0)
130		return ERR_PTR(-EINVAL);
131
132	/*
133	 * The computed size of the lookup table (length bytes) should exactly
134	 * match the table start and end points
135	 */
136	if (length != (next_table - lookup_table_start))
137		return ERR_PTR(-EINVAL);
138
139	table = squashfs_read_table(sb, lookup_table_start, length);
140	if (IS_ERR(table))
141		return table;
142
143	/*
144	 * table0], table[1], ... table[indexes - 1] store the locations
145	 * of the compressed inode lookup blocks.  Each entry should be
146	 * less than the next (i.e. table[0] < table[1]), and the difference
147	 * between them should be SQUASHFS_METADATA_SIZE or less.
148	 * table[indexes - 1] should  be less than lookup_table_start, and
149	 * again the difference should be SQUASHFS_METADATA_SIZE or less
150	 */
151	for (n = 0; n < (indexes - 1); n++) {
152		start = le64_to_cpu(table[n]);
153		end = le64_to_cpu(table[n + 1]);
154
155		if (start >= end
156		    || (end - start) >
157		    (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
158			kfree(table);
159			return ERR_PTR(-EINVAL);
160		}
161	}
162
163	start = le64_to_cpu(table[indexes - 1]);
164	if (start >= lookup_table_start ||
165	    (lookup_table_start - start) >
166	    (SQUASHFS_METADATA_SIZE + SQUASHFS_BLOCK_OFFSET)) {
167		kfree(table);
168		return ERR_PTR(-EINVAL);
169	}
170
171	return table;
172}
173
174
175const struct export_operations squashfs_export_ops = {
176	.encode_fh = generic_encode_ino32_fh,
177	.fh_to_dentry = squashfs_fh_to_dentry,
178	.fh_to_parent = squashfs_fh_to_parent,
179	.get_parent = squashfs_get_parent
180};
  1/*
  2 * Squashfs - a compressed read only filesystem for Linux
  3 *
  4 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
  5 * Phillip Lougher <phillip@squashfs.org.uk>
  6 *
  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.
 11 *
 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.
 16 *
 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.
 20 *
 21 * export.c
 22 */
 23
 24/*
 25 * This file implements code to make Squashfs filesystems exportable (NFS etc.)
 26 *
 27 * The export code uses an inode lookup table to map inode numbers passed in
 28 * filehandles to an inode location on disk.  This table is stored compressed
 29 * into metadata blocks.  A second index table is used to locate these.  This
 30 * second index table for speed of access (and because it is small) is read at
 31 * mount time and cached in memory.
 32 *
 33 * The inode lookup table is used only by the export code, inode disk
 34 * locations are directly encoded in directories, enabling direct access
 35 * without an intermediate lookup for all operations except the export ops.
 36 */
 37
 38#include <linux/fs.h>
 39#include <linux/vfs.h>
 40#include <linux/dcache.h>
 41#include <linux/exportfs.h>
 42#include <linux/slab.h>
 43
 44#include "squashfs_fs.h"
 45#include "squashfs_fs_sb.h"
 46#include "squashfs_fs_i.h"
 47#include "squashfs.h"
 48
 49/*
 50 * Look-up inode number (ino) in table, returning the inode location.
 51 */
 52static long long squashfs_inode_lookup(struct super_block *sb, int ino_num)
 53{
 54	struct squashfs_sb_info *msblk = sb->s_fs_info;
 55	int blk = SQUASHFS_LOOKUP_BLOCK(ino_num - 1);
 56	int offset = SQUASHFS_LOOKUP_BLOCK_OFFSET(ino_num - 1);
 57	u64 start = le64_to_cpu(msblk->inode_lookup_table[blk]);
 58	__le64 ino;
 59	int err;
 60
 61	TRACE("Entered squashfs_inode_lookup, inode_number = %d\n", ino_num);
 62
 63	err = squashfs_read_metadata(sb, &ino, &start, &offset, sizeof(ino));
 64	if (err < 0)
 65		return err;
 66
 67	TRACE("squashfs_inode_lookup, inode = 0x%llx\n",
 68		(u64) le64_to_cpu(ino));
 69
 70	return le64_to_cpu(ino);
 71}
 72
 73
 74static struct dentry *squashfs_export_iget(struct super_block *sb,
 75	unsigned int ino_num)
 76{
 77	long long ino;
 78	struct dentry *dentry = ERR_PTR(-ENOENT);
 79
 80	TRACE("Entered squashfs_export_iget\n");
 81
 82	ino = squashfs_inode_lookup(sb, ino_num);
 83	if (ino >= 0)
 84		dentry = d_obtain_alias(squashfs_iget(sb, ino, ino_num));
 85
 86	return dentry;
 87}
 88
 89
 90static struct dentry *squashfs_fh_to_dentry(struct super_block *sb,
 91		struct fid *fid, int fh_len, int fh_type)
 92{
 93	if ((fh_type != FILEID_INO32_GEN && fh_type != FILEID_INO32_GEN_PARENT)
 94			|| fh_len < 2)
 95		return NULL;
 96
 97	return squashfs_export_iget(sb, fid->i32.ino);
 98}
 99
100
101static struct dentry *squashfs_fh_to_parent(struct super_block *sb,
102		struct fid *fid, int fh_len, int fh_type)
103{
104	if (fh_type != FILEID_INO32_GEN_PARENT || fh_len < 4)
105		return NULL;
106
107	return squashfs_export_iget(sb, fid->i32.parent_ino);
108}
109
110
111static struct dentry *squashfs_get_parent(struct dentry *child)
112{
113	struct inode *inode = child->d_inode;
114	unsigned int parent_ino = squashfs_i(inode)->parent;
115
116	return squashfs_export_iget(inode->i_sb, parent_ino);
117}
118
119
120/*
121 * Read uncompressed inode lookup table indexes off disk into memory
122 */
123__le64 *squashfs_read_inode_lookup_table(struct super_block *sb,
124		u64 lookup_table_start, u64 next_table, unsigned int inodes)
125{
126	unsigned int length = SQUASHFS_LOOKUP_BLOCK_BYTES(inodes);
127	__le64 *table;
128
129	TRACE("In read_inode_lookup_table, length %d\n", length);
130
131	/* Sanity check values */
132
133	/* there should always be at least one inode */
134	if (inodes == 0)
135		return ERR_PTR(-EINVAL);
136
137	/* length bytes should not extend into the next table - this check
138	 * also traps instances where lookup_table_start is incorrectly larger
139	 * than the next table start
140	 */
141	if (lookup_table_start + length > next_table)
142		return ERR_PTR(-EINVAL);
143
144	table = squashfs_read_table(sb, lookup_table_start, length);
145
146	/*
147	 * table[0] points to the first inode lookup table metadata block,
148	 * this should be less than lookup_table_start
149	 */
150	if (!IS_ERR(table) && le64_to_cpu(table[0]) >= lookup_table_start) {
151		kfree(table);
152		return ERR_PTR(-EINVAL);
153	}
154
155	return table;
156}
157
158
159const struct export_operations squashfs_export_ops = {
160	.fh_to_dentry = squashfs_fh_to_dentry,
161	.fh_to_parent = squashfs_fh_to_parent,
162	.get_parent = squashfs_get_parent
163};