blob: 011c6f53dcda35ace62efeda0984e209b4703e9b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Compressed rom filesystem for Linux.
3 *
4 * Copyright (C) 1999 Linus Torvalds.
5 *
6 * This file is released under the GPL.
7 */
8
9/*
10 * These are the VFS interfaces to the compressed rom filesystem.
11 * The actual compression is based on zlib, see the other files.
12 */
13
Fabian Frederick4f21e1e2014-08-08 14:22:50 -070014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/fs.h>
18#include <linux/pagemap.h>
19#include <linux/init.h>
20#include <linux/string.h>
21#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/vfs.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080024#include <linux/mutex.h>
Al Virof7f4f4d2013-12-10 16:54:28 -050025#include <uapi/linux/cramfs_fs.h>
Fabian Frederick1508f3eb2014-08-08 14:22:55 -070026#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Al Virof7f4f4d2013-12-10 16:54:28 -050028#include "internal.h"
29
30/*
31 * cramfs super-block data in memory
32 */
33struct cramfs_sb_info {
34 unsigned long magic;
35 unsigned long size;
36 unsigned long blocks;
37 unsigned long files;
38 unsigned long flags;
39};
40
41static inline struct cramfs_sb_info *CRAMFS_SB(struct super_block *sb)
42{
43 return sb->s_fs_info;
44}
45
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080046static const struct super_operations cramfs_ops;
Arjan van de Ven754661f2007-02-12 00:55:38 -080047static const struct inode_operations cramfs_dir_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080048static const struct file_operations cramfs_directory_operations;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070049static const struct address_space_operations cramfs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Ingo Molnar353ab6e2006-03-26 01:37:12 -080051static DEFINE_MUTEX(read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53
Stefani Seibold6f772fe2011-01-12 17:01:10 -080054/* These macros may change in future, to provide better st_ino semantics. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define OFFSET(x) ((x)->i_ino)
56
Al Viro0577d1b2011-07-17 19:04:14 -040057static unsigned long cramino(const struct cramfs_inode *cino, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Stefani Seibold6f772fe2011-01-12 17:01:10 -080059 if (!cino->offset)
60 return offset + 1;
61 if (!cino->size)
62 return offset + 1;
63
64 /*
65 * The file mode test fixes buggy mkcramfs implementations where
66 * cramfs_inode->offset is set to a non zero value for entries
67 * which did not contain data, like devices node and fifos.
68 */
69 switch (cino->mode & S_IFMT) {
70 case S_IFREG:
71 case S_IFDIR:
72 case S_IFLNK:
73 return cino->offset << 2;
74 default:
75 break;
76 }
77 return offset + 1;
78}
79
80static struct inode *get_cramfs_inode(struct super_block *sb,
Al Viro0577d1b2011-07-17 19:04:14 -040081 const struct cramfs_inode *cramfs_inode, unsigned int offset)
Stefani Seibold6f772fe2011-01-12 17:01:10 -080082{
83 struct inode *inode;
Al Viro77b8a752010-06-04 21:19:01 -040084 static struct timespec zerotime;
Stefani Seibold6f772fe2011-01-12 17:01:10 -080085
86 inode = iget_locked(sb, cramino(cramfs_inode, offset));
87 if (!inode)
88 return ERR_PTR(-ENOMEM);
89 if (!(inode->i_state & I_NEW))
90 return inode;
91
92 switch (cramfs_inode->mode & S_IFMT) {
93 case S_IFREG:
94 inode->i_fop = &generic_ro_fops;
95 inode->i_data.a_ops = &cramfs_aops;
96 break;
97 case S_IFDIR:
98 inode->i_op = &cramfs_dir_inode_operations;
99 inode->i_fop = &cramfs_directory_operations;
100 break;
101 case S_IFLNK:
102 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -0500103 inode_nohighmem(inode);
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800104 inode->i_data.a_ops = &cramfs_aops;
105 break;
106 default:
107 init_special_inode(inode, cramfs_inode->mode,
108 old_decode_dev(cramfs_inode->size));
109 }
110
Al Viro77b8a752010-06-04 21:19:01 -0400111 inode->i_mode = cramfs_inode->mode;
Eric W. Biedermana7d9cfe2012-02-10 11:06:08 -0800112 i_uid_write(inode, cramfs_inode->uid);
113 i_gid_write(inode, cramfs_inode->gid);
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800114
115 /* if the lower 2 bits are zero, the inode contains data */
116 if (!(inode->i_ino & 3)) {
117 inode->i_size = cramfs_inode->size;
118 inode->i_blocks = (cramfs_inode->size - 1) / 512 + 1;
119 }
120
Al Viro77b8a752010-06-04 21:19:01 -0400121 /* Struct copy intentional */
122 inode->i_mtime = inode->i_atime = inode->i_ctime = zerotime;
123 /* inode->i_nlink is left 1 - arguably wrong for directories,
124 but it's the best we can do without reading the directory
125 contents. 1 yields the right result in GNU find, even
126 without -noleaf option. */
Dave Johnsona97c9bf2005-09-06 15:17:40 -0700127
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800128 unlock_new_inode(inode);
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return inode;
131}
132
133/*
134 * We have our own block cache: don't fill up the buffer cache
135 * with the rom-image, because the way the filesystem is set
136 * up the accesses should be fairly regular and cached in the
137 * page cache and dentry tree anyway..
138 *
139 * This also acts as a way to guarantee contiguous areas of up to
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300140 * BLKS_PER_BUF*PAGE_SIZE, so that the caller doesn't need to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 * worry about end-of-buffer issues even when decompressing a full
142 * page cache.
143 */
144#define READ_BUFFERS (2)
145/* NEXT_BUFFER(): Loop over [0..(READ_BUFFERS-1)]. */
146#define NEXT_BUFFER(_ix) ((_ix) ^ 1)
147
148/*
149 * BLKS_PER_BUF_SHIFT should be at least 2 to allow for "compressed"
150 * data that takes up more space than the original and with unlucky
151 * alignment.
152 */
153#define BLKS_PER_BUF_SHIFT (2)
154#define BLKS_PER_BUF (1 << BLKS_PER_BUF_SHIFT)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300155#define BUFFER_SIZE (BLKS_PER_BUF*PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157static unsigned char read_buffers[READ_BUFFERS][BUFFER_SIZE];
158static unsigned buffer_blocknr[READ_BUFFERS];
Fabian Frederick31d92e52014-08-08 14:22:52 -0700159static struct super_block *buffer_dev[READ_BUFFERS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static int next_buffer;
161
162/*
163 * Returns a pointer to a buffer containing at least LEN bytes of
164 * filesystem starting at byte offset OFFSET into the filesystem.
165 */
166static void *cramfs_read(struct super_block *sb, unsigned int offset, unsigned int len)
167{
168 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
169 struct page *pages[BLKS_PER_BUF];
Andi Drebes6bbfb072007-10-18 03:06:54 -0700170 unsigned i, blocknr, buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 unsigned long devsize;
172 char *data;
173
174 if (!len)
175 return NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300176 blocknr = offset >> PAGE_SHIFT;
177 offset &= PAGE_SIZE - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* Check if an existing buffer already has the data.. */
180 for (i = 0; i < READ_BUFFERS; i++) {
181 unsigned int blk_offset;
182
183 if (buffer_dev[i] != sb)
184 continue;
185 if (blocknr < buffer_blocknr[i])
186 continue;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300187 blk_offset = (blocknr - buffer_blocknr[i]) << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 blk_offset += offset;
Nicolas Pitreaa526292018-10-30 13:26:15 -0400189 if (blk_offset > BUFFER_SIZE ||
190 blk_offset + len > BUFFER_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 continue;
192 return read_buffers[i] + blk_offset;
193 }
194
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300195 devsize = mapping->host->i_size >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /* Ok, read in BLKS_PER_BUF pages completely first. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 for (i = 0; i < BLKS_PER_BUF; i++) {
199 struct page *page = NULL;
200
201 if (blocknr + i < devsize) {
Sasha Levin67f9fd92014-04-03 14:48:18 -0700202 page = read_mapping_page(mapping, blocknr + i, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* synchronous error? */
204 if (IS_ERR(page))
205 page = NULL;
206 }
207 pages[i] = page;
208 }
209
210 for (i = 0; i < BLKS_PER_BUF; i++) {
211 struct page *page = pages[i];
Fabian Frederick31d92e52014-08-08 14:22:52 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (page) {
214 wait_on_page_locked(page);
215 if (!PageUptodate(page)) {
216 /* asynchronous error */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300217 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 pages[i] = NULL;
219 }
220 }
221 }
222
223 buffer = next_buffer;
224 next_buffer = NEXT_BUFFER(buffer);
225 buffer_blocknr[buffer] = blocknr;
226 buffer_dev[buffer] = sb;
227
228 data = read_buffers[buffer];
229 for (i = 0; i < BLKS_PER_BUF; i++) {
230 struct page *page = pages[i];
Fabian Frederick31d92e52014-08-08 14:22:52 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300233 memcpy(data, kmap(page), PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300235 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 } else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300237 memset(data, 0, PAGE_SIZE);
238 data += PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 return read_buffers[buffer] + offset;
241}
242
Al Viro2309fb82013-12-10 16:35:14 -0500243static void cramfs_kill_sb(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Al Virof7f4f4d2013-12-10 16:54:28 -0500245 struct cramfs_sb_info *sbi = CRAMFS_SB(sb);
Fabian Frederick31d92e52014-08-08 14:22:52 -0700246
Al Viro2309fb82013-12-10 16:35:14 -0500247 kill_block_super(sb);
248 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251static int cramfs_remount(struct super_block *sb, int *flags, char *data)
252{
Theodore Ts'o02b99842014-03-13 10:14:33 -0400253 sync_filesystem(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 *flags |= MS_RDONLY;
255 return 0;
256}
257
258static int cramfs_fill_super(struct super_block *sb, void *data, int silent)
259{
260 int i;
261 struct cramfs_super super;
262 unsigned long root_offset;
263 struct cramfs_sb_info *sbi;
264 struct inode *root;
265
266 sb->s_flags |= MS_RDONLY;
267
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700268 sbi = kzalloc(sizeof(struct cramfs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (!sbi)
270 return -ENOMEM;
271 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* Invalidate the read buffers on mount: think disk change.. */
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800274 mutex_lock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 for (i = 0; i < READ_BUFFERS; i++)
276 buffer_blocknr[i] = -1;
277
278 /* Read the first block and get the superblock from it */
279 memcpy(&super, cramfs_read(sb, 0, sizeof(super)), sizeof(super));
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800280 mutex_unlock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /* Do sanity checks on the superblock */
283 if (super.magic != CRAMFS_MAGIC) {
Masanari Iida0cc785e2012-02-11 21:35:12 +0900284 /* check for wrong endianness */
Andi Drebesac8d35c2007-10-16 23:27:12 -0700285 if (super.magic == CRAMFS_MAGIC_WEND) {
286 if (!silent)
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700287 pr_err("wrong endianness\n");
Al Viro2309fb82013-12-10 16:35:14 -0500288 return -EINVAL;
Andi Drebesac8d35c2007-10-16 23:27:12 -0700289 }
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* check at 512 byte offset */
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800292 mutex_lock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 memcpy(&super, cramfs_read(sb, 512, sizeof(super)), sizeof(super));
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800294 mutex_unlock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (super.magic != CRAMFS_MAGIC) {
Andi Drebesac8d35c2007-10-16 23:27:12 -0700296 if (super.magic == CRAMFS_MAGIC_WEND && !silent)
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700297 pr_err("wrong endianness\n");
Andi Drebesac8d35c2007-10-16 23:27:12 -0700298 else if (!silent)
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700299 pr_err("wrong magic\n");
Al Viro2309fb82013-12-10 16:35:14 -0500300 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
303
304 /* get feature flags first */
305 if (super.flags & ~CRAMFS_SUPPORTED_FLAGS) {
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700306 pr_err("unsupported filesystem features\n");
Al Viro2309fb82013-12-10 16:35:14 -0500307 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
310 /* Check that the root inode is in a sane state */
311 if (!S_ISDIR(super.root.mode)) {
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700312 pr_err("root is not a directory\n");
Al Viro2309fb82013-12-10 16:35:14 -0500313 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800315 /* correct strange, hard-coded permissions of mkcramfs */
316 super.root.mode |= (S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 root_offset = super.root.offset << 2;
319 if (super.flags & CRAMFS_FLAG_FSID_VERSION_2) {
Fabian Frederick31d92e52014-08-08 14:22:52 -0700320 sbi->size = super.size;
321 sbi->blocks = super.fsid.blocks;
322 sbi->files = super.fsid.files;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 } else {
Fabian Frederick31d92e52014-08-08 14:22:52 -0700324 sbi->size = 1<<28;
325 sbi->blocks = 0;
326 sbi->files = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Fabian Frederick31d92e52014-08-08 14:22:52 -0700328 sbi->magic = super.magic;
329 sbi->flags = super.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (root_offset == 0)
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700331 pr_info("empty filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 else if (!(super.flags & CRAMFS_FLAG_SHIFTED_ROOT_OFFSET) &&
333 ((root_offset != sizeof(struct cramfs_super)) &&
334 (root_offset != 512 + sizeof(struct cramfs_super))))
335 {
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700336 pr_err("bad root offset %lu\n", root_offset);
Al Viro2309fb82013-12-10 16:35:14 -0500337 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
340 /* Set it all up.. */
341 sb->s_op = &cramfs_ops;
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800342 root = get_cramfs_inode(sb, &super.root, 0);
Al Viro0577d1b2011-07-17 19:04:14 -0400343 if (IS_ERR(root))
Al Viro2309fb82013-12-10 16:35:14 -0500344 return PTR_ERR(root);
Al Viro48fde702012-01-08 22:15:13 -0500345 sb->s_root = d_make_root(root);
346 if (!sb->s_root)
Al Viro2309fb82013-12-10 16:35:14 -0500347 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
David Howells726c3342006-06-23 02:02:58 -0700351static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
David Howells726c3342006-06-23 02:02:58 -0700353 struct super_block *sb = dentry->d_sb;
Coly Li94ea77a2009-04-02 16:59:33 -0700354 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
David Howells726c3342006-06-23 02:02:58 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 buf->f_type = CRAMFS_MAGIC;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300357 buf->f_bsize = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 buf->f_blocks = CRAMFS_SB(sb)->blocks;
359 buf->f_bfree = 0;
360 buf->f_bavail = 0;
361 buf->f_files = CRAMFS_SB(sb)->files;
362 buf->f_ffree = 0;
Coly Li94ea77a2009-04-02 16:59:33 -0700363 buf->f_fsid.val[0] = (u32)id;
364 buf->f_fsid.val[1] = (u32)(id >> 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 buf->f_namelen = CRAMFS_MAXPATHLEN;
366 return 0;
367}
368
369/*
370 * Read a cramfs directory entry.
371 */
Al Viro6f7f2312013-05-17 18:02:17 -0400372static int cramfs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Al Viro6f7f2312013-05-17 18:02:17 -0400374 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct super_block *sb = inode->i_sb;
376 char *buf;
377 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /* Offset within the thing. */
Al Viro6f7f2312013-05-17 18:02:17 -0400380 if (ctx->pos >= inode->i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
Al Viro6f7f2312013-05-17 18:02:17 -0400382 offset = ctx->pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /* Directory entries are always 4-byte aligned */
384 if (offset & 3)
385 return -EINVAL;
386
Andi Drebes4176ed52007-10-18 03:06:55 -0700387 buf = kmalloc(CRAMFS_MAXPATHLEN, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!buf)
389 return -ENOMEM;
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 while (offset < inode->i_size) {
392 struct cramfs_inode *de;
393 unsigned long nextoffset;
394 char *name;
395 ino_t ino;
Al Viro175a4eb2011-07-26 03:30:54 -0400396 umode_t mode;
Al Viro6f7f2312013-05-17 18:02:17 -0400397 int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800399 mutex_lock(&read_mutex);
Andi Drebes4176ed52007-10-18 03:06:55 -0700400 de = cramfs_read(sb, OFFSET(inode) + offset, sizeof(*de)+CRAMFS_MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 name = (char *)(de+1);
402
403 /*
404 * Namelengths on disk are shifted by two
405 * and the name padded out to 4-byte boundaries
406 * with zeroes.
407 */
408 namelen = de->namelen << 2;
409 memcpy(buf, name, namelen);
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800410 ino = cramino(de, OFFSET(inode) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 mode = de->mode;
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800412 mutex_unlock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 nextoffset = offset + sizeof(*de) + namelen;
414 for (;;) {
415 if (!namelen) {
416 kfree(buf);
417 return -EIO;
418 }
419 if (buf[namelen-1])
420 break;
421 namelen--;
422 }
Al Viro6f7f2312013-05-17 18:02:17 -0400423 if (!dir_emit(ctx, buf, namelen, ino, mode >> 12))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 break;
425
Al Viro6f7f2312013-05-17 18:02:17 -0400426 ctx->pos = offset = nextoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428 kfree(buf);
429 return 0;
430}
431
432/*
433 * Lookup and fill in the inode data..
434 */
Fabian Frederick31d92e52014-08-08 14:22:52 -0700435static struct dentry *cramfs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 unsigned int offset = 0;
Al Viro0577d1b2011-07-17 19:04:14 -0400438 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int sorted;
440
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800441 mutex_lock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 sorted = CRAMFS_SB(dir->i_sb)->flags & CRAMFS_FLAG_SORTED_DIRS;
443 while (offset < dir->i_size) {
444 struct cramfs_inode *de;
445 char *name;
446 int namelen, retval;
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800447 int dir_off = OFFSET(dir) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Stefani Seibold6f772fe2011-01-12 17:01:10 -0800449 de = cramfs_read(dir->i_sb, dir_off, sizeof(*de)+CRAMFS_MAXPATHLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 name = (char *)(de+1);
451
452 /* Try to take advantage of sorted directories */
453 if (sorted && (dentry->d_name.name[0] < name[0]))
454 break;
455
456 namelen = de->namelen << 2;
457 offset += sizeof(*de) + namelen;
458
459 /* Quick check that the name is roughly the right length */
460 if (((dentry->d_name.len + 3) & ~3) != namelen)
461 continue;
462
463 for (;;) {
464 if (!namelen) {
Al Viro0577d1b2011-07-17 19:04:14 -0400465 inode = ERR_PTR(-EIO);
466 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468 if (name[namelen-1])
469 break;
470 namelen--;
471 }
472 if (namelen != dentry->d_name.len)
473 continue;
474 retval = memcmp(dentry->d_name.name, name, namelen);
475 if (retval > 0)
476 continue;
477 if (!retval) {
Al Viro0577d1b2011-07-17 19:04:14 -0400478 inode = get_cramfs_inode(dir->i_sb, de, dir_off);
479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 /* else (retval < 0) */
482 if (sorted)
483 break;
484 }
Al Viro0577d1b2011-07-17 19:04:14 -0400485out:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800486 mutex_unlock(&read_mutex);
Al Viro0577d1b2011-07-17 19:04:14 -0400487 if (IS_ERR(inode))
488 return ERR_CAST(inode);
489 d_add(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return NULL;
491}
492
Fabian Frederick31d92e52014-08-08 14:22:52 -0700493static int cramfs_readpage(struct file *file, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 struct inode *inode = page->mapping->host;
David VomLehn98310e52009-04-02 16:59:15 -0700496 u32 maxblock;
497 int bytes_filled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 void *pgdata;
499
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300500 maxblock = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 bytes_filled = 0;
David VomLehn98310e52009-04-02 16:59:15 -0700502 pgdata = kmap(page);
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (page->index < maxblock) {
505 struct super_block *sb = inode->i_sb;
506 u32 blkptr_offset = OFFSET(inode) + page->index*4;
507 u32 start_offset, compr_len;
508
509 start_offset = OFFSET(inode) + maxblock*4;
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800510 mutex_lock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (page->index)
David VomLehn98310e52009-04-02 16:59:15 -0700512 start_offset = *(u32 *) cramfs_read(sb, blkptr_offset-4,
513 4);
514 compr_len = (*(u32 *) cramfs_read(sb, blkptr_offset, 4) -
515 start_offset);
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800516 mutex_unlock(&read_mutex);
David VomLehn98310e52009-04-02 16:59:15 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (compr_len == 0)
519 ; /* hole */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300520 else if (unlikely(compr_len > (PAGE_SIZE << 1))) {
Fabian Frederick4f21e1e2014-08-08 14:22:50 -0700521 pr_err("bad compressed blocksize %u\n",
David VomLehn98310e52009-04-02 16:59:15 -0700522 compr_len);
523 goto err;
524 } else {
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800525 mutex_lock(&read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 bytes_filled = cramfs_uncompress_block(pgdata,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300527 PAGE_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 cramfs_read(sb, start_offset, compr_len),
529 compr_len);
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800530 mutex_unlock(&read_mutex);
David VomLehn98310e52009-04-02 16:59:15 -0700531 if (unlikely(bytes_filled < 0))
532 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
David VomLehn98310e52009-04-02 16:59:15 -0700534 }
535
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300536 memset(pgdata + bytes_filled, 0, PAGE_SIZE - bytes_filled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 flush_dcache_page(page);
David VomLehn98310e52009-04-02 16:59:15 -0700538 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 SetPageUptodate(page);
540 unlock_page(page);
541 return 0;
David VomLehn98310e52009-04-02 16:59:15 -0700542
543err:
544 kunmap(page);
545 ClearPageUptodate(page);
546 SetPageError(page);
547 unlock_page(page);
548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700551static const struct address_space_operations cramfs_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 .readpage = cramfs_readpage
553};
554
555/*
556 * Our operations:
557 */
558
559/*
560 * A directory can only readdir
561 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800562static const struct file_operations cramfs_directory_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 .llseek = generic_file_llseek,
564 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -0400565 .iterate_shared = cramfs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
567
Arjan van de Ven754661f2007-02-12 00:55:38 -0800568static const struct inode_operations cramfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 .lookup = cramfs_lookup,
570};
571
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800572static const struct super_operations cramfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 .remount_fs = cramfs_remount,
574 .statfs = cramfs_statfs,
575};
576
Al Viro152a0832010-07-25 00:46:55 +0400577static struct dentry *cramfs_mount(struct file_system_type *fs_type,
578 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Al Viro152a0832010-07-25 00:46:55 +0400580 return mount_bdev(fs_type, flags, dev_name, data, cramfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
583static struct file_system_type cramfs_fs_type = {
584 .owner = THIS_MODULE,
585 .name = "cramfs",
Al Viro152a0832010-07-25 00:46:55 +0400586 .mount = cramfs_mount,
Al Viro2309fb82013-12-10 16:35:14 -0500587 .kill_sb = cramfs_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 .fs_flags = FS_REQUIRES_DEV,
589};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800590MODULE_ALIAS_FS("cramfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592static int __init init_cramfs_fs(void)
593{
Alexey Dobriyan50d44ed2006-09-29 02:01:04 -0700594 int rv;
595
596 rv = cramfs_uncompress_init();
597 if (rv < 0)
598 return rv;
599 rv = register_filesystem(&cramfs_fs_type);
600 if (rv < 0)
601 cramfs_uncompress_exit();
602 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605static void __exit exit_cramfs_fs(void)
606{
607 cramfs_uncompress_exit();
608 unregister_filesystem(&cramfs_fs_type);
609}
610
611module_init(init_cramfs_fs)
612module_exit(exit_cramfs_fs)
613MODULE_LICENSE("GPL");