1 Index: linux-2.6.23/fs/Kconfig
2 ===================================================================
3 --- linux-2.6.23.orig/fs/Kconfig 2007-10-10 13:52:12.000000000 +0800
4 +++ linux-2.6.23/fs/Kconfig 2007-10-10 13:52:14.000000000 +0800
10 + tristate "SquashFS 3.0 - Squashed file system support"
13 + Saying Y here includes support for SquashFS 3.0 (a Compressed Read-Only File
14 + System). Squashfs is a highly compressed read-only filesystem for Linux.
15 + It uses zlib compression to compress both files, inodes and directories.
16 + Inodes in the system are very small and all blocks are packed to minimise
17 + data overhead. Block sizes greater than 4K are supported up to a maximum of 64K.
18 + SquashFS 3.0 supports 64 bit filesystems and files (larger than 4GB), full
19 + uid/gid information, hard links and timestamps.
21 + Squashfs is intended for general read-only filesystem use, for archival
22 + use (i.e. in cases where a .tar.gz file may be used), and in embedded
23 + systems where low overhead is needed. Further information and filesystem tools
24 + are available from http://squashfs.sourceforge.net.
26 + If you want to compile this as a module ( = code which can be
27 + inserted in and removed from the running kernel whenever you want),
28 + say M here and read <file:Documentation/modules.txt>. The module
29 + will be called squashfs. Note that the root file system (the one
30 + containing the directory /) cannot be compiled as a module.
34 +config SQUASHFS_EMBEDDED
36 + bool "Additional options for memory-constrained systems"
40 + Saying Y here allows you to specify cache sizes and how Squashfs
41 + allocates memory. This is only intended for memory constrained
46 +config SQUASHFS_FRAGMENT_CACHE_SIZE
47 + int "Number of fragments cached" if SQUASHFS_EMBEDDED
51 + By default SquashFS caches the last 3 fragments read from
52 + the filesystem. Increasing this amount may mean SquashFS
53 + has to re-read fragments less often from disk, at the expense
54 + of extra system memory. Decreasing this amount will mean
55 + SquashFS uses less memory at the expense of extra reads from disk.
57 + Note there must be at least one cached fragment. Anything
58 + much more than three will probably not make much difference.
60 +config SQUASHFS_VMALLOC
61 + bool "Use Vmalloc rather than Kmalloc" if SQUASHFS_EMBEDDED
65 + By default SquashFS uses kmalloc to obtain fragment cache memory.
66 + Kmalloc memory is the standard kernel allocator, but it can fail
67 + on memory constrained systems. Because of the way Vmalloc works,
68 + Vmalloc can succeed when kmalloc fails. Specifying this option
69 + will make SquashFS always use Vmalloc to allocate the
70 + fragment cache memory.
75 tristate "FreeVxFS file system support (VERITAS VxFS(TM) compatible)"
77 Index: linux-2.6.23/fs/Makefile
78 ===================================================================
79 --- linux-2.6.23.orig/fs/Makefile 2007-10-10 13:52:12.000000000 +0800
80 +++ linux-2.6.23/fs/Makefile 2007-10-10 13:52:14.000000000 +0800
82 obj-$(CONFIG_JBD2) += jbd2/
83 obj-$(CONFIG_EXT2_FS) += ext2/
84 obj-$(CONFIG_CRAMFS) += cramfs/
85 +obj-$(CONFIG_SQUASHFS) += squashfs/
86 obj-$(CONFIG_RAMFS) += ramfs/
87 obj-$(CONFIG_HUGETLBFS) += hugetlbfs/
88 obj-$(CONFIG_CODA_FS) += coda/
89 Index: linux-2.6.23/fs/squashfs/inode.c
90 ===================================================================
91 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
92 +++ linux-2.6.23/fs/squashfs/inode.c 2007-10-10 13:52:14.000000000 +0800
95 + * Squashfs - a compressed read only filesystem for Linux
97 + * Copyright (c) 2002, 2003, 2004, 2005, 2006
98 + * Phillip Lougher <phillip@lougher.org.uk>
100 + * This program is free software; you can redistribute it and/or
101 + * modify it under the terms of the GNU General Public License
102 + * as published by the Free Software Foundation; either version 2,
103 + * or (at your option) any later version.
105 + * This program is distributed in the hope that it will be useful,
106 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
107 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
108 + * GNU General Public License for more details.
110 + * You should have received a copy of the GNU General Public License
111 + * along with this program; if not, write to the Free Software
112 + * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
117 +#include <linux/types.h>
118 +#include <linux/squashfs_fs.h>
119 +#include <linux/module.h>
120 +#include <linux/errno.h>
121 +#include <linux/slab.h>
122 +#include <linux/fs.h>
123 +#include <linux/smp_lock.h>
124 +#include <linux/slab.h>
125 +#include <linux/squashfs_fs_sb.h>
126 +#include <linux/squashfs_fs_i.h>
127 +#include <linux/buffer_head.h>
128 +#include <linux/vfs.h>
129 +#include <linux/init.h>
130 +#include <linux/dcache.h>
131 +#include <linux/wait.h>
132 +#include <linux/zlib.h>
133 +#include <linux/blkdev.h>
134 +#include <linux/vmalloc.h>
135 +#include <asm/uaccess.h>
136 +#include <asm/semaphore.h>
138 +#include "squashfs.h"
140 +static void squashfs_put_super(struct super_block *);
141 +static int squashfs_statfs(struct dentry *, struct kstatfs *);
142 +static int squashfs_symlink_readpage(struct file *file, struct page *page);
143 +static int squashfs_readpage(struct file *file, struct page *page);
144 +static int squashfs_readpage4K(struct file *file, struct page *page);
145 +static int squashfs_readdir(struct file *, void *, filldir_t);
146 +static struct inode *squashfs_alloc_inode(struct super_block *sb);
147 +static void squashfs_destroy_inode(struct inode *inode);
148 +static int init_inodecache(void);
149 +static void destroy_inodecache(void);
150 +static struct dentry *squashfs_lookup(struct inode *, struct dentry *,
151 + struct nameidata *);
152 +static struct inode *squashfs_iget(struct super_block *s, squashfs_inode_t inode);
153 +static long long read_blocklist(struct inode *inode, int index,
154 + int readahead_blks, char *block_list,
155 + unsigned short **block_p, unsigned int *bsize);
156 +static int squashfs_get_sb(struct file_system_type *, int,
157 + const char *, void *, struct vfsmount *);
160 +static z_stream stream;
162 +static struct file_system_type squashfs_fs_type = {
163 + .owner = THIS_MODULE,
164 + .name = "squashfs",
165 + .get_sb = squashfs_get_sb,
166 + .kill_sb = kill_block_super,
167 + .fs_flags = FS_REQUIRES_DEV
170 +static unsigned char squashfs_filetype_table[] = {
171 + DT_UNKNOWN, DT_DIR, DT_REG, DT_LNK, DT_BLK, DT_CHR, DT_FIFO, DT_SOCK
174 +static struct super_operations squashfs_ops = {
175 + .alloc_inode = squashfs_alloc_inode,
176 + .destroy_inode = squashfs_destroy_inode,
177 + .statfs = squashfs_statfs,
178 + .put_super = squashfs_put_super,
181 +SQSH_EXTERN struct address_space_operations squashfs_symlink_aops = {
182 + .readpage = squashfs_symlink_readpage
185 +SQSH_EXTERN struct address_space_operations squashfs_aops = {
186 + .readpage = squashfs_readpage
189 +SQSH_EXTERN struct address_space_operations squashfs_aops_4K = {
190 + .readpage = squashfs_readpage4K
193 +static struct file_operations squashfs_dir_ops = {
194 + .read = generic_read_dir,
195 + .readdir = squashfs_readdir
198 +SQSH_EXTERN struct inode_operations squashfs_dir_inode_ops = {
199 + .lookup = squashfs_lookup
203 +static struct buffer_head *get_block_length(struct super_block *s,
204 + int *cur_index, int *offset, int *c_byte)
206 + struct squashfs_sb_info *msblk = s->s_fs_info;
207 + unsigned short temp;
208 + struct buffer_head *bh;
210 + if (!(bh = sb_bread(s, *cur_index)))
213 + if (msblk->devblksize - *offset == 1) {
215 + ((unsigned char *) &temp)[1] = *((unsigned char *)
216 + (bh->b_data + *offset));
218 + ((unsigned char *) &temp)[0] = *((unsigned char *)
219 + (bh->b_data + *offset));
221 + if (!(bh = sb_bread(s, ++(*cur_index))))
224 + ((unsigned char *) &temp)[0] = *((unsigned char *)
227 + ((unsigned char *) &temp)[1] = *((unsigned char *)
233 + ((unsigned char *) &temp)[1] = *((unsigned char *)
234 + (bh->b_data + *offset));
235 + ((unsigned char *) &temp)[0] = *((unsigned char *)
236 + (bh->b_data + *offset + 1));
238 + ((unsigned char *) &temp)[0] = *((unsigned char *)
239 + (bh->b_data + *offset));
240 + ((unsigned char *) &temp)[1] = *((unsigned char *)
241 + (bh->b_data + *offset + 1));
247 + if (SQUASHFS_CHECK_DATA(msblk->sblk.flags)) {
248 + if (*offset == msblk->devblksize) {
250 + if (!(bh = sb_bread(s, ++(*cur_index))))
254 + if (*((unsigned char *) (bh->b_data + *offset)) !=
255 + SQUASHFS_MARKER_BYTE) {
256 + ERROR("Metadata block marker corrupt @ %x\n",
270 +SQSH_EXTERN unsigned int squashfs_read_data(struct super_block *s, char *buffer,
271 + long long index, unsigned int length,
272 + long long *next_index)
274 + struct squashfs_sb_info *msblk = s->s_fs_info;
275 + struct buffer_head *bh[((SQUASHFS_FILE_MAX_SIZE - 1) >>
276 + msblk->devblksize_log2) + 2];
277 + unsigned int offset = index & ((1 << msblk->devblksize_log2) - 1);
278 + unsigned int cur_index = index >> msblk->devblksize_log2;
279 + int bytes, avail_bytes, b = 0, k;
281 + unsigned int compressed;
282 + unsigned int c_byte = length;
285 + bytes = msblk->devblksize - offset;
286 + compressed = SQUASHFS_COMPRESSED_BLOCK(c_byte);
287 + c_buffer = compressed ? msblk->read_data : buffer;
288 + c_byte = SQUASHFS_COMPRESSED_SIZE_BLOCK(c_byte);
290 + TRACE("Block @ 0x%llx, %scompressed size %d\n", index, compressed
291 + ? "" : "un", (unsigned int) c_byte);
293 + if (!(bh[0] = sb_getblk(s, cur_index)))
294 + goto block_release;
296 + for (b = 1; bytes < c_byte; b++) {
297 + if (!(bh[b] = sb_getblk(s, ++cur_index)))
298 + goto block_release;
299 + bytes += msblk->devblksize;
301 + ll_rw_block(READ, b, bh);
303 + if (!(bh[0] = get_block_length(s, &cur_index, &offset,
307 + bytes = msblk->devblksize - offset;
308 + compressed = SQUASHFS_COMPRESSED(c_byte);
309 + c_buffer = compressed ? msblk->read_data : buffer;
310 + c_byte = SQUASHFS_COMPRESSED_SIZE(c_byte);
312 + TRACE("Block @ 0x%llx, %scompressed size %d\n", index, compressed
313 + ? "" : "un", (unsigned int) c_byte);
315 + for (b = 1; bytes < c_byte; b++) {
316 + if (!(bh[b] = sb_getblk(s, ++cur_index)))
317 + goto block_release;
318 + bytes += msblk->devblksize;
320 + ll_rw_block(READ, b - 1, bh + 1);
324 + down(&msblk->read_data_mutex);
326 + for (bytes = 0, k = 0; k < b; k++) {
327 + avail_bytes = (c_byte - bytes) > (msblk->devblksize - offset) ?
328 + msblk->devblksize - offset :
330 + wait_on_buffer(bh[k]);
331 + if (!buffer_uptodate(bh[k]))
332 + goto block_release;
333 + memcpy(c_buffer + bytes, bh[k]->b_data + offset, avail_bytes);
334 + bytes += avail_bytes;
345 + stream.next_in = c_buffer;
346 + stream.avail_in = c_byte;
347 + stream.next_out = buffer;
348 + stream.avail_out = msblk->read_size;
350 + if (((zlib_err = zlib_inflateInit(&stream)) != Z_OK) ||
351 + ((zlib_err = zlib_inflate(&stream, Z_FINISH))
352 + != Z_STREAM_END) || ((zlib_err =
353 + zlib_inflateEnd(&stream)) != Z_OK)) {
354 + ERROR("zlib_fs returned unexpected result 0x%x\n",
358 + bytes = stream.total_out;
360 + up(&msblk->read_data_mutex);
364 + *next_index = index + c_byte + (length ? 0 :
365 + (SQUASHFS_CHECK_DATA(msblk->sblk.flags)
374 + ERROR("sb_bread failed reading block 0x%x\n", cur_index);
379 +SQSH_EXTERN int squashfs_get_cached_block(struct super_block *s, char *buffer,
380 + long long block, unsigned int offset,
381 + int length, long long *next_block,
382 + unsigned int *next_offset)
384 + struct squashfs_sb_info *msblk = s->s_fs_info;
385 + int n, i, bytes, return_length = length;
386 + long long next_index;
388 + TRACE("Entered squashfs_get_cached_block [%llx:%x]\n", block, offset);
391 + for (i = 0; i < SQUASHFS_CACHED_BLKS; i++)
392 + if (msblk->block_cache[i].block == block)
395 + down(&msblk->block_cache_mutex);
397 + if (i == SQUASHFS_CACHED_BLKS) {
398 + /* read inode header block */
399 + for (i = msblk->next_cache, n = SQUASHFS_CACHED_BLKS;
400 + n ; n --, i = (i + 1) %
401 + SQUASHFS_CACHED_BLKS)
402 + if (msblk->block_cache[i].block !=
409 + init_waitqueue_entry(&wait, current);
410 + add_wait_queue(&msblk->waitq, &wait);
411 + set_current_state(TASK_UNINTERRUPTIBLE);
412 + up(&msblk->block_cache_mutex);
414 + set_current_state(TASK_RUNNING);
415 + remove_wait_queue(&msblk->waitq, &wait);
418 + msblk->next_cache = (i + 1) % SQUASHFS_CACHED_BLKS;
420 + if (msblk->block_cache[i].block ==
421 + SQUASHFS_INVALID_BLK) {
422 + if (!(msblk->block_cache[i].data =
423 + kmalloc(SQUASHFS_METADATA_SIZE,
425 + ERROR("Failed to allocate cache"
427 + up(&msblk->block_cache_mutex);
432 + msblk->block_cache[i].block = SQUASHFS_USED_BLK;
433 + up(&msblk->block_cache_mutex);
435 + if (!(msblk->block_cache[i].length =
436 + squashfs_read_data(s,
437 + msblk->block_cache[i].data,
438 + block, 0, &next_index))) {
439 + ERROR("Unable to read cache block [%llx:%x]\n",
444 + down(&msblk->block_cache_mutex);
445 + wake_up(&msblk->waitq);
446 + msblk->block_cache[i].block = block;
447 + msblk->block_cache[i].next_index = next_index;
448 + TRACE("Read cache block [%llx:%x]\n", block, offset);
451 + if (msblk->block_cache[i].block != block) {
452 + up(&msblk->block_cache_mutex);
456 + if ((bytes = msblk->block_cache[i].length - offset) >= length) {
458 + memcpy(buffer, msblk->block_cache[i].data +
460 + if (msblk->block_cache[i].length - offset == length) {
461 + *next_block = msblk->block_cache[i].next_index;
464 + *next_block = block;
465 + *next_offset = offset + length;
467 + up(&msblk->block_cache_mutex);
471 + memcpy(buffer, msblk->block_cache[i].data +
475 + block = msblk->block_cache[i].next_index;
476 + up(&msblk->block_cache_mutex);
483 + return return_length;
489 +static int get_fragment_location(struct super_block *s, unsigned int fragment,
490 + long long *fragment_start_block,
491 + unsigned int *fragment_size)
493 + struct squashfs_sb_info *msblk = s->s_fs_info;
494 + long long start_block =
495 + msblk->fragment_index[SQUASHFS_FRAGMENT_INDEX(fragment)];
496 + int offset = SQUASHFS_FRAGMENT_INDEX_OFFSET(fragment);
497 + struct squashfs_fragment_entry fragment_entry;
500 + struct squashfs_fragment_entry sfragment_entry;
502 + if (!squashfs_get_cached_block(s, (char *) &sfragment_entry,
503 + start_block, offset,
504 + sizeof(sfragment_entry), &start_block,
507 + SQUASHFS_SWAP_FRAGMENT_ENTRY(&fragment_entry, &sfragment_entry);
509 + if (!squashfs_get_cached_block(s, (char *) &fragment_entry,
510 + start_block, offset,
511 + sizeof(fragment_entry), &start_block,
515 + *fragment_start_block = fragment_entry.start_block;
516 + *fragment_size = fragment_entry.size;
525 +SQSH_EXTERN void release_cached_fragment(struct squashfs_sb_info *msblk, struct
526 + squashfs_fragment_cache *fragment)
528 + down(&msblk->fragment_mutex);
529 + fragment->locked --;
530 + wake_up(&msblk->fragment_wait_queue);
531 + up(&msblk->fragment_mutex);
535 +SQSH_EXTERN struct squashfs_fragment_cache *get_cached_fragment(struct super_block
536 + *s, long long start_block,
540 + struct squashfs_sb_info *msblk = s->s_fs_info;
543 + down(&msblk->fragment_mutex);
545 + for (i = 0; i < SQUASHFS_CACHED_FRAGMENTS &&
546 + msblk->fragment[i].block != start_block; i++);
548 + if (i == SQUASHFS_CACHED_FRAGMENTS) {
549 + for (i = msblk->next_fragment, n =
550 + SQUASHFS_CACHED_FRAGMENTS; n &&
551 + msblk->fragment[i].locked; n--, i = (i + 1) %
552 + SQUASHFS_CACHED_FRAGMENTS);
557 + init_waitqueue_entry(&wait, current);
558 + add_wait_queue(&msblk->fragment_wait_queue,
560 + set_current_state(TASK_UNINTERRUPTIBLE);
561 + up(&msblk->fragment_mutex);
563 + set_current_state(TASK_RUNNING);
564 + remove_wait_queue(&msblk->fragment_wait_queue,
568 + msblk->next_fragment = (msblk->next_fragment + 1) %
569 + SQUASHFS_CACHED_FRAGMENTS;
571 + if (msblk->fragment[i].data == NULL)
572 + if (!(msblk->fragment[i].data = SQUASHFS_ALLOC
573 + (SQUASHFS_FILE_MAX_SIZE))) {
574 + ERROR("Failed to allocate fragment "
576 + up(&msblk->fragment_mutex);
580 + msblk->fragment[i].block = SQUASHFS_INVALID_BLK;
581 + msblk->fragment[i].locked = 1;
582 + up(&msblk->fragment_mutex);
584 + if (!(msblk->fragment[i].length = squashfs_read_data(s,
585 + msblk->fragment[i].data,
586 + start_block, length, NULL))) {
587 + ERROR("Unable to read fragment cache block "
588 + "[%llx]\n", start_block);
589 + msblk->fragment[i].locked = 0;
593 + msblk->fragment[i].block = start_block;
594 + TRACE("New fragment %d, start block %lld, locked %d\n",
595 + i, msblk->fragment[i].block,
596 + msblk->fragment[i].locked);
600 + msblk->fragment[i].locked++;
601 + up(&msblk->fragment_mutex);
602 + TRACE("Got fragment %d, start block %lld, locked %d\n", i,
603 + msblk->fragment[i].block,
604 + msblk->fragment[i].locked);
608 + return &msblk->fragment[i];
615 +static struct inode *squashfs_new_inode(struct super_block *s,
616 + struct squashfs_base_inode_header *inodeb)
618 + struct squashfs_sb_info *msblk = s->s_fs_info;
619 + struct inode *i = new_inode(s);
622 + i->i_ino = inodeb->inode_number;
623 + i->i_mtime.tv_sec = inodeb->mtime;
624 + i->i_atime.tv_sec = inodeb->mtime;
625 + i->i_ctime.tv_sec = inodeb->mtime;
626 + i->i_uid = msblk->uid[inodeb->uid];
627 + i->i_mode = inodeb->mode;
629 + if (inodeb->guid == SQUASHFS_GUIDS)
630 + i->i_gid = i->i_uid;
632 + i->i_gid = msblk->guid[inodeb->guid];
639 +static struct inode *squashfs_iget(struct super_block *s, squashfs_inode_t inode)
642 + struct squashfs_sb_info *msblk = s->s_fs_info;
643 + struct squashfs_super_block *sblk = &msblk->sblk;
644 + long long block = SQUASHFS_INODE_BLK(inode) +
645 + sblk->inode_table_start;
646 + unsigned int offset = SQUASHFS_INODE_OFFSET(inode);
647 + long long next_block;
648 + unsigned int next_offset;
649 + union squashfs_inode_header id, sid;
650 + struct squashfs_base_inode_header *inodeb = &id.base,
651 + *sinodeb = &sid.base;
653 + TRACE("Entered squashfs_iget\n");
656 + if (!squashfs_get_cached_block(s, (char *) sinodeb, block,
657 + offset, sizeof(*sinodeb), &next_block,
660 + SQUASHFS_SWAP_BASE_INODE_HEADER(inodeb, sinodeb,
663 + if (!squashfs_get_cached_block(s, (char *) inodeb, block,
664 + offset, sizeof(*inodeb), &next_block,
668 + switch(inodeb->inode_type) {
669 + case SQUASHFS_FILE_TYPE: {
670 + unsigned int frag_size;
671 + long long frag_blk;
672 + struct squashfs_reg_inode_header *inodep = &id.reg;
673 + struct squashfs_reg_inode_header *sinodep = &sid.reg;
676 + if (!squashfs_get_cached_block(s, (char *)
677 + sinodep, block, offset,
678 + sizeof(*sinodep), &next_block,
681 + SQUASHFS_SWAP_REG_INODE_HEADER(inodep, sinodep);
683 + if (!squashfs_get_cached_block(s, (char *)
684 + inodep, block, offset,
685 + sizeof(*inodep), &next_block,
689 + frag_blk = SQUASHFS_INVALID_BLK;
690 + if (inodep->fragment != SQUASHFS_INVALID_FRAG &&
691 + !get_fragment_location(s,
692 + inodep->fragment, &frag_blk, &frag_size))
695 + if((i = squashfs_new_inode(s, inodeb)) == NULL)
699 + i->i_size = inodep->file_size;
700 + i->i_fop = &generic_ro_fops;
701 + i->i_mode |= S_IFREG;
702 + i->i_blocks = ((i->i_size - 1) >> 9) + 1;
703 + SQUASHFS_I(i)->u.s1.fragment_start_block = frag_blk;
704 + SQUASHFS_I(i)->u.s1.fragment_size = frag_size;
705 + SQUASHFS_I(i)->u.s1.fragment_offset = inodep->offset;
706 + SQUASHFS_I(i)->start_block = inodep->start_block;
707 + SQUASHFS_I(i)->u.s1.block_list_start = next_block;
708 + SQUASHFS_I(i)->offset = next_offset;
709 + if (sblk->block_size > 4096)
710 + i->i_data.a_ops = &squashfs_aops;
712 + i->i_data.a_ops = &squashfs_aops_4K;
714 + TRACE("File inode %x:%x, start_block %llx, "
715 + "block_list_start %llx, offset %x\n",
716 + SQUASHFS_INODE_BLK(inode), offset,
717 + inodep->start_block, next_block,
721 + case SQUASHFS_LREG_TYPE: {
722 + unsigned int frag_size;
723 + long long frag_blk;
724 + struct squashfs_lreg_inode_header *inodep = &id.lreg;
725 + struct squashfs_lreg_inode_header *sinodep = &sid.lreg;
728 + if (!squashfs_get_cached_block(s, (char *)
729 + sinodep, block, offset,
730 + sizeof(*sinodep), &next_block,
733 + SQUASHFS_SWAP_LREG_INODE_HEADER(inodep, sinodep);
735 + if (!squashfs_get_cached_block(s, (char *)
736 + inodep, block, offset,
737 + sizeof(*inodep), &next_block,
741 + frag_blk = SQUASHFS_INVALID_BLK;
742 + if (inodep->fragment != SQUASHFS_INVALID_FRAG &&
743 + !get_fragment_location(s,
744 + inodep->fragment, &frag_blk, &frag_size))
747 + if((i = squashfs_new_inode(s, inodeb)) == NULL)
750 + i->i_nlink = inodep->nlink;
751 + i->i_size = inodep->file_size;
752 + i->i_fop = &generic_ro_fops;
753 + i->i_mode |= S_IFREG;
754 + i->i_blocks = ((i->i_size - 1) >> 9) + 1;
755 + SQUASHFS_I(i)->u.s1.fragment_start_block = frag_blk;
756 + SQUASHFS_I(i)->u.s1.fragment_size = frag_size;
757 + SQUASHFS_I(i)->u.s1.fragment_offset = inodep->offset;
758 + SQUASHFS_I(i)->start_block = inodep->start_block;
759 + SQUASHFS_I(i)->u.s1.block_list_start = next_block;
760 + SQUASHFS_I(i)->offset = next_offset;
761 + if (sblk->block_size > 4096)
762 + i->i_data.a_ops = &squashfs_aops;
764 + i->i_data.a_ops = &squashfs_aops_4K;
766 + TRACE("File inode %x:%x, start_block %llx, "
767 + "block_list_start %llx, offset %x\n",
768 + SQUASHFS_INODE_BLK(inode), offset,
769 + inodep->start_block, next_block,
773 + case SQUASHFS_DIR_TYPE: {
774 + struct squashfs_dir_inode_header *inodep = &id.dir;
775 + struct squashfs_dir_inode_header *sinodep = &sid.dir;
778 + if (!squashfs_get_cached_block(s, (char *)
779 + sinodep, block, offset,
780 + sizeof(*sinodep), &next_block,
783 + SQUASHFS_SWAP_DIR_INODE_HEADER(inodep, sinodep);
785 + if (!squashfs_get_cached_block(s, (char *)
786 + inodep, block, offset,
787 + sizeof(*inodep), &next_block,
791 + if((i = squashfs_new_inode(s, inodeb)) == NULL)
794 + i->i_nlink = inodep->nlink;
795 + i->i_size = inodep->file_size;
796 + i->i_op = &squashfs_dir_inode_ops;
797 + i->i_fop = &squashfs_dir_ops;
798 + i->i_mode |= S_IFDIR;
799 + SQUASHFS_I(i)->start_block = inodep->start_block;
800 + SQUASHFS_I(i)->offset = inodep->offset;
801 + SQUASHFS_I(i)->u.s2.directory_index_count = 0;
802 + SQUASHFS_I(i)->u.s2.parent_inode = inodep->parent_inode;
804 + TRACE("Directory inode %x:%x, start_block %x, offset "
805 + "%x\n", SQUASHFS_INODE_BLK(inode),
806 + offset, inodep->start_block,
810 + case SQUASHFS_LDIR_TYPE: {
811 + struct squashfs_ldir_inode_header *inodep = &id.ldir;
812 + struct squashfs_ldir_inode_header *sinodep = &sid.ldir;
815 + if (!squashfs_get_cached_block(s, (char *)
816 + sinodep, block, offset,
817 + sizeof(*sinodep), &next_block,
820 + SQUASHFS_SWAP_LDIR_INODE_HEADER(inodep,
823 + if (!squashfs_get_cached_block(s, (char *)
824 + inodep, block, offset,
825 + sizeof(*inodep), &next_block,
829 + if((i = squashfs_new_inode(s, inodeb)) == NULL)
832 + i->i_nlink = inodep->nlink;
833 + i->i_size = inodep->file_size;
834 + i->i_op = &squashfs_dir_inode_ops;
835 + i->i_fop = &squashfs_dir_ops;
836 + i->i_mode |= S_IFDIR;
837 + SQUASHFS_I(i)->start_block = inodep->start_block;
838 + SQUASHFS_I(i)->offset = inodep->offset;
839 + SQUASHFS_I(i)->u.s2.directory_index_start = next_block;
840 + SQUASHFS_I(i)->u.s2.directory_index_offset =
842 + SQUASHFS_I(i)->u.s2.directory_index_count =
844 + SQUASHFS_I(i)->u.s2.parent_inode = inodep->parent_inode;
846 + TRACE("Long directory inode %x:%x, start_block %x, "
848 + SQUASHFS_INODE_BLK(inode), offset,
849 + inodep->start_block, inodep->offset);
852 + case SQUASHFS_SYMLINK_TYPE: {
853 + struct squashfs_symlink_inode_header *inodep =
855 + struct squashfs_symlink_inode_header *sinodep =
859 + if (!squashfs_get_cached_block(s, (char *)
860 + sinodep, block, offset,
861 + sizeof(*sinodep), &next_block,
864 + SQUASHFS_SWAP_SYMLINK_INODE_HEADER(inodep,
867 + if (!squashfs_get_cached_block(s, (char *)
868 + inodep, block, offset,
869 + sizeof(*inodep), &next_block,
873 + if((i = squashfs_new_inode(s, inodeb)) == NULL)
876 + i->i_nlink = inodep->nlink;
877 + i->i_size = inodep->symlink_size;
878 + i->i_op = &page_symlink_inode_operations;
879 + i->i_data.a_ops = &squashfs_symlink_aops;
880 + i->i_mode |= S_IFLNK;
881 + SQUASHFS_I(i)->start_block = next_block;
882 + SQUASHFS_I(i)->offset = next_offset;
884 + TRACE("Symbolic link inode %x:%x, start_block %llx, "
886 + SQUASHFS_INODE_BLK(inode), offset,
887 + next_block, next_offset);
890 + case SQUASHFS_BLKDEV_TYPE:
891 + case SQUASHFS_CHRDEV_TYPE: {
892 + struct squashfs_dev_inode_header *inodep = &id.dev;
893 + struct squashfs_dev_inode_header *sinodep = &sid.dev;
896 + if (!squashfs_get_cached_block(s, (char *)
897 + sinodep, block, offset,
898 + sizeof(*sinodep), &next_block,
901 + SQUASHFS_SWAP_DEV_INODE_HEADER(inodep, sinodep);
903 + if (!squashfs_get_cached_block(s, (char *)
904 + inodep, block, offset,
905 + sizeof(*inodep), &next_block,
909 + if ((i = squashfs_new_inode(s, inodeb)) == NULL)
912 + i->i_nlink = inodep->nlink;
913 + i->i_mode |= (inodeb->inode_type ==
914 + SQUASHFS_CHRDEV_TYPE) ? S_IFCHR :
916 + init_special_inode(i, i->i_mode,
917 + old_decode_dev(inodep->rdev));
919 + TRACE("Device inode %x:%x, rdev %x\n",
920 + SQUASHFS_INODE_BLK(inode), offset,
924 + case SQUASHFS_FIFO_TYPE:
925 + case SQUASHFS_SOCKET_TYPE: {
926 + struct squashfs_ipc_inode_header *inodep = &id.ipc;
927 + struct squashfs_ipc_inode_header *sinodep = &sid.ipc;
930 + if (!squashfs_get_cached_block(s, (char *)
931 + sinodep, block, offset,
932 + sizeof(*sinodep), &next_block,
935 + SQUASHFS_SWAP_IPC_INODE_HEADER(inodep, sinodep);
937 + if (!squashfs_get_cached_block(s, (char *)
938 + inodep, block, offset,
939 + sizeof(*inodep), &next_block,
943 + if ((i = squashfs_new_inode(s, inodeb)) == NULL)
946 + i->i_nlink = inodep->nlink;
947 + i->i_mode |= (inodeb->inode_type == SQUASHFS_FIFO_TYPE)
948 + ? S_IFIFO : S_IFSOCK;
949 + init_special_inode(i, i->i_mode, 0);
953 + ERROR("Unknown inode type %d in squashfs_iget!\n",
954 + inodeb->inode_type);
958 + insert_inode_hash(i);
962 + ERROR("Unable to read inode [%llx:%x]\n", block, offset);
969 +static int read_fragment_index_table(struct super_block *s)
971 + struct squashfs_sb_info *msblk = s->s_fs_info;
972 + struct squashfs_super_block *sblk = &msblk->sblk;
974 + /* Allocate fragment index table */
975 + if (!(msblk->fragment_index = kmalloc(SQUASHFS_FRAGMENT_INDEX_BYTES
976 + (sblk->fragments), GFP_KERNEL))) {
977 + ERROR("Failed to allocate uid/gid table\n");
981 + if (SQUASHFS_FRAGMENT_INDEX_BYTES(sblk->fragments) &&
982 + !squashfs_read_data(s, (char *)
983 + msblk->fragment_index,
984 + sblk->fragment_table_start,
985 + SQUASHFS_FRAGMENT_INDEX_BYTES
986 + (sblk->fragments) |
987 + SQUASHFS_COMPRESSED_BIT_BLOCK, NULL)) {
988 + ERROR("unable to read fragment index table\n");
994 + long long fragment;
996 + for (i = 0; i < SQUASHFS_FRAGMENT_INDEXES(sblk->fragments);
998 + SQUASHFS_SWAP_FRAGMENT_INDEXES((&fragment),
999 + &msblk->fragment_index[i], 1);
1000 + msblk->fragment_index[i] = fragment;
1008 +static int supported_squashfs_filesystem(struct squashfs_sb_info *msblk, int silent)
1010 + struct squashfs_super_block *sblk = &msblk->sblk;
1012 + msblk->iget = squashfs_iget;
1013 + msblk->read_blocklist = read_blocklist;
1014 + msblk->read_fragment_index_table = read_fragment_index_table;
1016 + if (sblk->s_major == 1) {
1017 + if (!squashfs_1_0_supported(msblk)) {
1018 + SERROR("Major/Minor mismatch, Squashfs 1.0 filesystems "
1019 + "are unsupported\n");
1020 + SERROR("Please recompile with "
1021 + "Squashfs 1.0 support enabled\n");
1024 + } else if (sblk->s_major == 2) {
1025 + if (!squashfs_2_0_supported(msblk)) {
1026 + SERROR("Major/Minor mismatch, Squashfs 2.0 filesystems "
1027 + "are unsupported\n");
1028 + SERROR("Please recompile with "
1029 + "Squashfs 2.0 support enabled\n");
1032 + } else if(sblk->s_major != SQUASHFS_MAJOR || sblk->s_minor >
1034 + SERROR("Major/Minor mismatch, trying to mount newer %d.%d "
1035 + "filesystem\n", sblk->s_major, sblk->s_minor);
1036 + SERROR("Please update your kernel\n");
1044 +static int squashfs_fill_super(struct super_block *s, void *data, int silent)
1046 + struct squashfs_sb_info *msblk;
1047 + struct squashfs_super_block *sblk;
1049 + char b[BDEVNAME_SIZE];
1050 + struct inode *root;
1052 + TRACE("Entered squashfs_read_superblock\n");
1054 + if (!(s->s_fs_info = kmalloc(sizeof(struct squashfs_sb_info),
1056 + ERROR("Failed to allocate superblock\n");
1059 + memset(s->s_fs_info, 0, sizeof(struct squashfs_sb_info));
1060 + msblk = s->s_fs_info;
1061 + sblk = &msblk->sblk;
1063 + msblk->devblksize = sb_min_blocksize(s, BLOCK_SIZE);
1064 + msblk->devblksize_log2 = ffz(~msblk->devblksize);
1066 + init_MUTEX(&msblk->read_data_mutex);
1067 + init_MUTEX(&msblk->read_page_mutex);
1068 + init_MUTEX(&msblk->block_cache_mutex);
1069 + init_MUTEX(&msblk->fragment_mutex);
1070 + init_MUTEX(&msblk->meta_index_mutex);
1072 + init_waitqueue_head(&msblk->waitq);
1073 + init_waitqueue_head(&msblk->fragment_wait_queue);
1075 + if (!squashfs_read_data(s, (char *) sblk, SQUASHFS_START,
1076 + sizeof(struct squashfs_super_block) |
1077 + SQUASHFS_COMPRESSED_BIT_BLOCK, NULL)) {
1078 + SERROR("unable to read superblock\n");
1079 + goto failed_mount;
1082 + /* Check it is a SQUASHFS superblock */
1084 + if ((s->s_magic = sblk->s_magic) != SQUASHFS_MAGIC) {
1085 + if (sblk->s_magic == SQUASHFS_MAGIC_SWAP) {
1086 + struct squashfs_super_block ssblk;
1088 + WARNING("Mounting a different endian SQUASHFS "
1089 + "filesystem on %s\n", bdevname(s->s_bdev, b));
1091 + SQUASHFS_SWAP_SUPER_BLOCK(&ssblk, sblk);
1092 + memcpy(sblk, &ssblk, sizeof(struct squashfs_super_block));
1095 + SERROR("Can't find a SQUASHFS superblock on %s\n",
1096 + bdevname(s->s_bdev, b));
1097 + goto failed_mount;
1101 + /* Check the MAJOR & MINOR versions */
1102 + if(!supported_squashfs_filesystem(msblk, silent))
1103 + goto failed_mount;
1105 + TRACE("Found valid superblock on %s\n", bdevname(s->s_bdev, b));
1106 + TRACE("Inodes are %scompressed\n",
1107 + SQUASHFS_UNCOMPRESSED_INODES
1108 + (sblk->flags) ? "un" : "");
1109 + TRACE("Data is %scompressed\n",
1110 + SQUASHFS_UNCOMPRESSED_DATA(sblk->flags)
1112 + TRACE("Check data is %s present in the filesystem\n",
1113 + SQUASHFS_CHECK_DATA(sblk->flags) ?
1115 + TRACE("Filesystem size %lld bytes\n", sblk->bytes_used);
1116 + TRACE("Block size %d\n", sblk->block_size);
1117 + TRACE("Number of inodes %d\n", sblk->inodes);
1118 + if (sblk->s_major > 1)
1119 + TRACE("Number of fragments %d\n", sblk->fragments);
1120 + TRACE("Number of uids %d\n", sblk->no_uids);
1121 + TRACE("Number of gids %d\n", sblk->no_guids);
1122 + TRACE("sblk->inode_table_start %llx\n", sblk->inode_table_start);
1123 + TRACE("sblk->directory_table_start %llx\n", sblk->directory_table_start);
1124 + if (sblk->s_major > 1)
1125 + TRACE("sblk->fragment_table_start %llx\n",
1126 + sblk->fragment_table_start);
1127 + TRACE("sblk->uid_start %llx\n", sblk->uid_start);
1129 + s->s_flags |= MS_RDONLY;
1130 + s->s_op = &squashfs_ops;
1132 + /* Init inode_table block pointer array */
1133 + if (!(msblk->block_cache = kmalloc(sizeof(struct squashfs_cache) *
1134 + SQUASHFS_CACHED_BLKS, GFP_KERNEL))) {
1135 + ERROR("Failed to allocate block cache\n");
1136 + goto failed_mount;
1139 + for (i = 0; i < SQUASHFS_CACHED_BLKS; i++)
1140 + msblk->block_cache[i].block = SQUASHFS_INVALID_BLK;
1142 + msblk->next_cache = 0;
1144 + /* Allocate read_data block */
1145 + msblk->read_size = (sblk->block_size < SQUASHFS_METADATA_SIZE) ?
1146 + SQUASHFS_METADATA_SIZE :
1149 + if (!(msblk->read_data = kmalloc(msblk->read_size, GFP_KERNEL))) {
1150 + ERROR("Failed to allocate read_data block\n");
1151 + goto failed_mount;
1154 + /* Allocate read_page block */
1155 + if (!(msblk->read_page = kmalloc(sblk->block_size, GFP_KERNEL))) {
1156 + ERROR("Failed to allocate read_page block\n");
1157 + goto failed_mount;
1160 + /* Allocate uid and gid tables */
1161 + if (!(msblk->uid = kmalloc((sblk->no_uids + sblk->no_guids) *
1162 + sizeof(unsigned int), GFP_KERNEL))) {
1163 + ERROR("Failed to allocate uid/gid table\n");
1164 + goto failed_mount;
1166 + msblk->guid = msblk->uid + sblk->no_uids;
1168 + if (msblk->swap) {
1169 + unsigned int suid[sblk->no_uids + sblk->no_guids];
1171 + if (!squashfs_read_data(s, (char *) &suid, sblk->uid_start,
1172 + ((sblk->no_uids + sblk->no_guids) *
1173 + sizeof(unsigned int)) |
1174 + SQUASHFS_COMPRESSED_BIT_BLOCK, NULL)) {
1175 + ERROR("unable to read uid/gid table\n");
1176 + goto failed_mount;
1179 + SQUASHFS_SWAP_DATA(msblk->uid, suid, (sblk->no_uids +
1180 + sblk->no_guids), (sizeof(unsigned int) * 8));
1182 + if (!squashfs_read_data(s, (char *) msblk->uid, sblk->uid_start,
1183 + ((sblk->no_uids + sblk->no_guids) *
1184 + sizeof(unsigned int)) |
1185 + SQUASHFS_COMPRESSED_BIT_BLOCK, NULL)) {
1186 + ERROR("unable to read uid/gid table\n");
1187 + goto failed_mount;
1191 + if (sblk->s_major == 1 && squashfs_1_0_supported(msblk))
1192 + goto allocate_root;
1194 + if (!(msblk->fragment = kmalloc(sizeof(struct squashfs_fragment_cache) *
1195 + SQUASHFS_CACHED_FRAGMENTS, GFP_KERNEL))) {
1196 + ERROR("Failed to allocate fragment block cache\n");
1197 + goto failed_mount;
1200 + for (i = 0; i < SQUASHFS_CACHED_FRAGMENTS; i++) {
1201 + msblk->fragment[i].locked = 0;
1202 + msblk->fragment[i].block = SQUASHFS_INVALID_BLK;
1203 + msblk->fragment[i].data = NULL;
1206 + msblk->next_fragment = 0;
1208 + /* Allocate fragment index table */
1209 + if (msblk->read_fragment_index_table(s) == 0)
1210 + goto failed_mount;
1213 + if ((root = (msblk->iget)(s, sblk->root_inode)) == NULL)
1214 + goto failed_mount;
1216 + if ((s->s_root = d_alloc_root(root)) == NULL) {
1217 + ERROR("Root inode create failed\n");
1219 + goto failed_mount;
1222 + TRACE("Leaving squashfs_read_super\n");
1226 + kfree(msblk->fragment_index);
1227 + kfree(msblk->fragment);
1228 + kfree(msblk->uid);
1229 + kfree(msblk->read_page);
1230 + kfree(msblk->read_data);
1231 + kfree(msblk->block_cache);
1232 + kfree(msblk->fragment_index_2);
1233 + kfree(s->s_fs_info);
1234 + s->s_fs_info = NULL;
1242 +static int squashfs_statfs(struct dentry *dentry, struct kstatfs *buf)
1244 + struct squashfs_sb_info *msblk = dentry->d_inode->i_sb->s_fs_info;
1245 + struct squashfs_super_block *sblk = &msblk->sblk;
1247 + TRACE("Entered squashfs_statfs\n");
1249 + buf->f_type = SQUASHFS_MAGIC;
1250 + buf->f_bsize = sblk->block_size;
1251 + buf->f_blocks = ((sblk->bytes_used - 1) >> sblk->block_log) + 1;
1252 + buf->f_bfree = buf->f_bavail = 0;
1253 + buf->f_files = sblk->inodes;
1255 + buf->f_namelen = SQUASHFS_NAME_LEN;
1261 +static int squashfs_symlink_readpage(struct file *file, struct page *page)
1263 + struct inode *inode = page->mapping->host;
1264 + int index = page->index << PAGE_CACHE_SHIFT, length, bytes;
1265 + long long block = SQUASHFS_I(inode)->start_block;
1266 + int offset = SQUASHFS_I(inode)->offset;
1267 + void *pageaddr = kmap(page);
1269 + TRACE("Entered squashfs_symlink_readpage, page index %ld, start block "
1270 + "%llx, offset %x\n", page->index,
1271 + SQUASHFS_I(inode)->start_block,
1272 + SQUASHFS_I(inode)->offset);
1274 + for (length = 0; length < index; length += bytes) {
1275 + if (!(bytes = squashfs_get_cached_block(inode->i_sb, NULL,
1276 + block, offset, PAGE_CACHE_SIZE, &block,
1278 + ERROR("Unable to read symbolic link [%llx:%x]\n", block,
1284 + if (length != index) {
1285 + ERROR("(squashfs_symlink_readpage) length != index\n");
1290 + bytes = (i_size_read(inode) - length) > PAGE_CACHE_SIZE ? PAGE_CACHE_SIZE :
1291 + i_size_read(inode) - length;
1293 + if (!(bytes = squashfs_get_cached_block(inode->i_sb, pageaddr, block,
1294 + offset, bytes, &block, &offset)))
1295 + ERROR("Unable to read symbolic link [%llx:%x]\n", block, offset);
1298 + memset(pageaddr + bytes, 0, PAGE_CACHE_SIZE - bytes);
1300 + SetPageUptodate(page);
1301 + unlock_page(page);
1307 +struct meta_index *locate_meta_index(struct inode *inode, int index, int offset)
1309 + struct meta_index *meta = NULL;
1310 + struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
1313 + down(&msblk->meta_index_mutex);
1315 + TRACE("locate_meta_index: index %d, offset %d\n", index, offset);
1317 + if(msblk->meta_index == NULL)
1318 + goto not_allocated;
1320 + for (i = 0; i < SQUASHFS_META_NUMBER; i ++)
1321 + if (msblk->meta_index[i].inode_number == inode->i_ino &&
1322 + msblk->meta_index[i].offset >= offset &&
1323 + msblk->meta_index[i].offset <= index &&
1324 + msblk->meta_index[i].locked == 0) {
1325 + TRACE("locate_meta_index: entry %d, offset %d\n", i,
1326 + msblk->meta_index[i].offset);
1327 + meta = &msblk->meta_index[i];
1328 + offset = meta->offset;
1335 + up(&msblk->meta_index_mutex);
1341 +struct meta_index *empty_meta_index(struct inode *inode, int offset, int skip)
1343 + struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
1344 + struct meta_index *meta = NULL;
1347 + down(&msblk->meta_index_mutex);
1349 + TRACE("empty_meta_index: offset %d, skip %d\n", offset, skip);
1351 + if(msblk->meta_index == NULL) {
1352 + if (!(msblk->meta_index = kmalloc(sizeof(struct meta_index) *
1353 + SQUASHFS_META_NUMBER, GFP_KERNEL))) {
1354 + ERROR("Failed to allocate meta_index\n");
1357 + for(i = 0; i < SQUASHFS_META_NUMBER; i++) {
1358 + msblk->meta_index[i].inode_number = 0;
1359 + msblk->meta_index[i].locked = 0;
1361 + msblk->next_meta_index = 0;
1364 + for(i = SQUASHFS_META_NUMBER; i &&
1365 + msblk->meta_index[msblk->next_meta_index].locked; i --)
1366 + msblk->next_meta_index = (msblk->next_meta_index + 1) %
1367 + SQUASHFS_META_NUMBER;
1370 + TRACE("empty_meta_index: failed!\n");
1374 + TRACE("empty_meta_index: returned meta entry %d, %p\n",
1375 + msblk->next_meta_index,
1376 + &msblk->meta_index[msblk->next_meta_index]);
1378 + meta = &msblk->meta_index[msblk->next_meta_index];
1379 + msblk->next_meta_index = (msblk->next_meta_index + 1) %
1380 + SQUASHFS_META_NUMBER;
1382 + meta->inode_number = inode->i_ino;
1383 + meta->offset = offset;
1384 + meta->skip = skip;
1385 + meta->entries = 0;
1389 + up(&msblk->meta_index_mutex);
1394 +void release_meta_index(struct inode *inode, struct meta_index *meta)
1400 +static int read_block_index(struct super_block *s, int blocks, char *block_list,
1401 + long long *start_block, int *offset)
1403 + struct squashfs_sb_info *msblk = s->s_fs_info;
1404 + unsigned int *block_listp;
1407 + if (msblk->swap) {
1408 + char sblock_list[blocks << 2];
1410 + if (!squashfs_get_cached_block(s, sblock_list, *start_block,
1411 + *offset, blocks << 2, start_block, offset)) {
1412 + ERROR("Unable to read block list [%llx:%x]\n",
1413 + *start_block, *offset);
1416 + SQUASHFS_SWAP_INTS(((unsigned int *)block_list),
1417 + ((unsigned int *)sblock_list), blocks);
1419 + if (!squashfs_get_cached_block(s, block_list, *start_block,
1420 + *offset, blocks << 2, start_block, offset)) {
1421 + ERROR("Unable to read block list [%llx:%x]\n",
1422 + *start_block, *offset);
1426 + for (block_listp = (unsigned int *) block_list; blocks;
1427 + block_listp++, blocks --)
1428 + block += SQUASHFS_COMPRESSED_SIZE_BLOCK(*block_listp);
1439 +static inline int calculate_skip(int blocks) {
1440 + int skip = (blocks - 1) / ((SQUASHFS_SLOTS * SQUASHFS_META_ENTRIES + 1) * SQUASHFS_META_INDEXES);
1441 + return skip >= 7 ? 7 : skip + 1;
1445 +static int get_meta_index(struct inode *inode, int index,
1446 + long long *index_block, int *index_offset,
1447 + long long *data_block, char *block_list)
1449 + struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
1450 + struct squashfs_super_block *sblk = &msblk->sblk;
1451 + int skip = calculate_skip(i_size_read(inode) >> sblk->block_log);
1453 + struct meta_index *meta;
1454 + struct meta_entry *meta_entry;
1455 + long long cur_index_block = SQUASHFS_I(inode)->u.s1.block_list_start;
1456 + int cur_offset = SQUASHFS_I(inode)->offset;
1457 + long long cur_data_block = SQUASHFS_I(inode)->start_block;
1460 + index /= SQUASHFS_META_INDEXES * skip;
1462 + while ( offset < index ) {
1463 + meta = locate_meta_index(inode, index, offset + 1);
1465 + if (meta == NULL) {
1466 + if ((meta = empty_meta_index(inode, offset + 1,
1470 + offset = index < meta->offset + meta->entries ? index :
1471 + meta->offset + meta->entries - 1;
1472 + meta_entry = &meta->meta_entry[offset - meta->offset];
1473 + cur_index_block = meta_entry->index_block + sblk->inode_table_start;
1474 + cur_offset = meta_entry->offset;
1475 + cur_data_block = meta_entry->data_block;
1476 + TRACE("get_meta_index: offset %d, meta->offset %d, "
1477 + "meta->entries %d\n", offset, meta->offset,
1479 + TRACE("get_meta_index: index_block 0x%llx, offset 0x%x"
1480 + " data_block 0x%llx\n", cur_index_block,
1481 + cur_offset, cur_data_block);
1484 + for (i = meta->offset + meta->entries; i <= index &&
1485 + i < meta->offset + SQUASHFS_META_ENTRIES; i++) {
1486 + int blocks = skip * SQUASHFS_META_INDEXES;
1489 + int block = blocks > (SIZE >> 2) ? (SIZE >> 2) :
1491 + int res = read_block_index(inode->i_sb, block,
1492 + block_list, &cur_index_block,
1498 + cur_data_block += res;
1502 + meta_entry = &meta->meta_entry[i - meta->offset];
1503 + meta_entry->index_block = cur_index_block - sblk->inode_table_start;
1504 + meta_entry->offset = cur_offset;
1505 + meta_entry->data_block = cur_data_block;
1510 + TRACE("get_meta_index: meta->offset %d, meta->entries %d\n",
1511 + meta->offset, meta->entries);
1513 + release_meta_index(inode, meta);
1517 + *index_block = cur_index_block;
1518 + *index_offset = cur_offset;
1519 + *data_block = cur_data_block;
1521 + return offset * SQUASHFS_META_INDEXES * skip;
1524 + release_meta_index(inode, meta);
1529 +static long long read_blocklist(struct inode *inode, int index,
1530 + int readahead_blks, char *block_list,
1531 + unsigned short **block_p, unsigned int *bsize)
1533 + long long block_ptr;
1536 + int res = get_meta_index(inode, index, &block_ptr, &offset, &block,
1539 + TRACE("read_blocklist: res %d, index %d, block_ptr 0x%llx, offset"
1540 + " 0x%x, block 0x%llx\n", res, index, block_ptr, offset,
1549 + int blocks = index > (SIZE >> 2) ? (SIZE >> 2) : index;
1550 + int res = read_block_index(inode->i_sb, blocks, block_list,
1551 + &block_ptr, &offset);
1558 + if (read_block_index(inode->i_sb, 1, block_list,
1559 + &block_ptr, &offset) == -1)
1561 + *bsize = *((unsigned int *) block_list);
1570 +static int squashfs_readpage(struct file *file, struct page *page)
1572 + struct inode *inode = page->mapping->host;
1573 + struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
1574 + struct squashfs_super_block *sblk = &msblk->sblk;
1575 + unsigned char block_list[SIZE];
1577 + unsigned int bsize, i = 0, bytes = 0, byte_offset = 0;
1578 + int index = page->index >> (sblk->block_log - PAGE_CACHE_SHIFT);
1580 + struct squashfs_fragment_cache *fragment = NULL;
1581 + char *data_ptr = msblk->read_page;
1583 + int mask = (1 << (sblk->block_log - PAGE_CACHE_SHIFT)) - 1;
1584 + int start_index = page->index & ~mask;
1585 + int end_index = start_index | mask;
1587 + TRACE("Entered squashfs_readpage, page index %lx, start block %llx\n",
1589 + SQUASHFS_I(inode)->start_block);
1591 + if (page->index >= ((i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1592 + PAGE_CACHE_SHIFT))
1595 + if (SQUASHFS_I(inode)->u.s1.fragment_start_block == SQUASHFS_INVALID_BLK
1596 + || index < (i_size_read(inode) >>
1597 + sblk->block_log)) {
1598 + if ((block = (msblk->read_blocklist)(inode, index, 1,
1599 + block_list, NULL, &bsize)) == 0)
1602 + down(&msblk->read_page_mutex);
1604 + if (!(bytes = squashfs_read_data(inode->i_sb, msblk->read_page,
1605 + block, bsize, NULL))) {
1606 + ERROR("Unable to read page, block %llx, size %x\n", block,
1608 + up(&msblk->read_page_mutex);
1612 + if ((fragment = get_cached_fragment(inode->i_sb,
1613 + SQUASHFS_I(inode)->
1614 + u.s1.fragment_start_block,
1615 + SQUASHFS_I(inode)->u.s1.fragment_size))
1617 + ERROR("Unable to read page, block %llx, size %x\n",
1618 + SQUASHFS_I(inode)->
1619 + u.s1.fragment_start_block,
1620 + (int) SQUASHFS_I(inode)->
1621 + u.s1.fragment_size);
1624 + bytes = SQUASHFS_I(inode)->u.s1.fragment_offset +
1625 + (i_size_read(inode) & (sblk->block_size
1627 + byte_offset = SQUASHFS_I(inode)->u.s1.fragment_offset;
1628 + data_ptr = fragment->data;
1631 + for (i = start_index; i <= end_index && byte_offset < bytes;
1632 + i++, byte_offset += PAGE_CACHE_SIZE) {
1633 + struct page *push_page;
1634 + int available_bytes = (bytes - byte_offset) > PAGE_CACHE_SIZE ?
1635 + PAGE_CACHE_SIZE : bytes - byte_offset;
1637 + TRACE("bytes %d, i %d, byte_offset %d, available_bytes %d\n",
1638 + bytes, i, byte_offset, available_bytes);
1640 + if (i == page->index) {
1641 + pageaddr = kmap_atomic(page, KM_USER0);
1642 + memcpy(pageaddr, data_ptr + byte_offset,
1644 + memset(pageaddr + available_bytes, 0,
1645 + PAGE_CACHE_SIZE - available_bytes);
1646 + kunmap_atomic(pageaddr, KM_USER0);
1647 + flush_dcache_page(page);
1648 + SetPageUptodate(page);
1649 + unlock_page(page);
1650 + } else if ((push_page =
1651 + grab_cache_page_nowait(page->mapping, i))) {
1652 + pageaddr = kmap_atomic(push_page, KM_USER0);
1654 + memcpy(pageaddr, data_ptr + byte_offset,
1656 + memset(pageaddr + available_bytes, 0,
1657 + PAGE_CACHE_SIZE - available_bytes);
1658 + kunmap_atomic(pageaddr, KM_USER0);
1659 + flush_dcache_page(push_page);
1660 + SetPageUptodate(push_page);
1661 + unlock_page(push_page);
1662 + page_cache_release(push_page);
1666 + if (SQUASHFS_I(inode)->u.s1.fragment_start_block == SQUASHFS_INVALID_BLK
1667 + || index < (i_size_read(inode) >>
1669 + up(&msblk->read_page_mutex);
1671 + release_cached_fragment(msblk, fragment);
1676 + pageaddr = kmap_atomic(page, KM_USER0);
1677 + memset(pageaddr + bytes, 0, PAGE_CACHE_SIZE - bytes);
1678 + kunmap_atomic(pageaddr, KM_USER0);
1679 + flush_dcache_page(page);
1680 + SetPageUptodate(page);
1681 + unlock_page(page);
1687 +static int squashfs_readpage4K(struct file *file, struct page *page)
1689 + struct inode *inode = page->mapping->host;
1690 + struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info;
1691 + struct squashfs_super_block *sblk = &msblk->sblk;
1692 + unsigned char block_list[SIZE];
1694 + unsigned int bsize, bytes = 0;
1697 + TRACE("Entered squashfs_readpage4K, page index %lx, start block %llx\n",
1699 + SQUASHFS_I(inode)->start_block);
1701 + if (page->index >= ((i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1702 + PAGE_CACHE_SHIFT)) {
1703 + pageaddr = kmap_atomic(page, KM_USER0);
1707 + if (SQUASHFS_I(inode)->u.s1.fragment_start_block == SQUASHFS_INVALID_BLK
1708 + || page->index < (i_size_read(inode) >>
1709 + sblk->block_log)) {
1710 + block = (msblk->read_blocklist)(inode, page->index, 1,
1711 + block_list, NULL, &bsize);
1713 + down(&msblk->read_page_mutex);
1714 + bytes = squashfs_read_data(inode->i_sb, msblk->read_page, block,
1716 + pageaddr = kmap_atomic(page, KM_USER0);
1718 + memcpy(pageaddr, msblk->read_page, bytes);
1720 + ERROR("Unable to read page, block %llx, size %x\n",
1722 + up(&msblk->read_page_mutex);
1724 + struct squashfs_fragment_cache *fragment =
1725 + get_cached_fragment(inode->i_sb,
1726 + SQUASHFS_I(inode)->
1727 + u.s1.fragment_start_block,
1728 + SQUASHFS_I(inode)-> u.s1.fragment_size);
1729 + pageaddr = kmap_atomic(page, KM_USER0);
1731 + bytes = i_size_read(inode) & (sblk->block_size - 1);
1732 + memcpy(pageaddr, fragment->data + SQUASHFS_I(inode)->
1733 + u.s1.fragment_offset, bytes);
1734 + release_cached_fragment(msblk, fragment);
1736 + ERROR("Unable to read page, block %llx, size %x\n",
1737 + SQUASHFS_I(inode)->
1738 + u.s1.fragment_start_block, (int)
1739 + SQUASHFS_I(inode)-> u.s1.fragment_size);
1743 + memset(pageaddr + bytes, 0, PAGE_CACHE_SIZE - bytes);
1744 + kunmap_atomic(pageaddr, KM_USER0);
1745 + flush_dcache_page(page);
1746 + SetPageUptodate(page);
1747 + unlock_page(page);
1753 +static int get_dir_index_using_offset(struct super_block *s, long long
1754 + *next_block, unsigned int *next_offset,
1755 + long long index_start,
1756 + unsigned int index_offset, int i_count,
1759 + struct squashfs_sb_info *msblk = s->s_fs_info;
1760 + struct squashfs_super_block *sblk = &msblk->sblk;
1761 + int i, length = 0;
1762 + struct squashfs_dir_index index;
1764 + TRACE("Entered get_dir_index_using_offset, i_count %d, f_pos %d\n",
1765 + i_count, (unsigned int) f_pos);
1771 + for (i = 0; i < i_count; i++) {
1772 + if (msblk->swap) {
1773 + struct squashfs_dir_index sindex;
1774 + squashfs_get_cached_block(s, (char *) &sindex,
1775 + index_start, index_offset,
1776 + sizeof(sindex), &index_start,
1778 + SQUASHFS_SWAP_DIR_INDEX(&index, &sindex);
1780 + squashfs_get_cached_block(s, (char *) &index,
1781 + index_start, index_offset,
1782 + sizeof(index), &index_start,
1785 + if (index.index > f_pos)
1788 + squashfs_get_cached_block(s, NULL, index_start, index_offset,
1789 + index.size + 1, &index_start,
1792 + length = index.index;
1793 + *next_block = index.start_block + sblk->directory_table_start;
1796 + *next_offset = (length + *next_offset) % SQUASHFS_METADATA_SIZE;
1799 + return length + 3;
1803 +static int get_dir_index_using_name(struct super_block *s, long long
1804 + *next_block, unsigned int *next_offset,
1805 + long long index_start,
1806 + unsigned int index_offset, int i_count,
1807 + const char *name, int size)
1809 + struct squashfs_sb_info *msblk = s->s_fs_info;
1810 + struct squashfs_super_block *sblk = &msblk->sblk;
1811 + int i, length = 0;
1812 + char buffer[sizeof(struct squashfs_dir_index) + SQUASHFS_NAME_LEN + 1];
1813 + struct squashfs_dir_index *index = (struct squashfs_dir_index *) buffer;
1814 + char str[SQUASHFS_NAME_LEN + 1];
1816 + TRACE("Entered get_dir_index_using_name, i_count %d\n", i_count);
1818 + strncpy(str, name, size);
1821 + for (i = 0; i < i_count; i++) {
1822 + if (msblk->swap) {
1823 + struct squashfs_dir_index sindex;
1824 + squashfs_get_cached_block(s, (char *) &sindex,
1825 + index_start, index_offset,
1826 + sizeof(sindex), &index_start,
1828 + SQUASHFS_SWAP_DIR_INDEX(index, &sindex);
1830 + squashfs_get_cached_block(s, (char *) index,
1831 + index_start, index_offset,
1832 + sizeof(struct squashfs_dir_index),
1833 + &index_start, &index_offset);
1835 + squashfs_get_cached_block(s, index->name, index_start,
1836 + index_offset, index->size + 1,
1837 + &index_start, &index_offset);
1839 + index->name[index->size + 1] = '\0';
1841 + if (strcmp(index->name, str) > 0)
1844 + length = index->index;
1845 + *next_block = index->start_block + sblk->directory_table_start;
1848 + *next_offset = (length + *next_offset) % SQUASHFS_METADATA_SIZE;
1849 + return length + 3;
1853 +static int squashfs_readdir(struct file *file, void *dirent, filldir_t filldir)
1855 + struct inode *i = file->f_dentry->d_inode;
1856 + struct squashfs_sb_info *msblk = i->i_sb->s_fs_info;
1857 + struct squashfs_super_block *sblk = &msblk->sblk;
1858 + long long next_block = SQUASHFS_I(i)->start_block +
1859 + sblk->directory_table_start;
1860 + int next_offset = SQUASHFS_I(i)->offset, length = 0, dirs_read = 0,
1862 + struct squashfs_dir_header dirh;
1863 + char buffer[sizeof(struct squashfs_dir_entry) + SQUASHFS_NAME_LEN + 1];
1864 + struct squashfs_dir_entry *dire = (struct squashfs_dir_entry *) buffer;
1866 + TRACE("Entered squashfs_readdir [%llx:%x]\n", next_block, next_offset);
1868 + while(file->f_pos < 3) {
1872 + if(file->f_pos == 0) {
1879 + i_ino = SQUASHFS_I(i)->u.s2.parent_inode;
1881 + TRACE("Calling filldir(%x, %s, %d, %d, %d, %d)\n",
1882 + (unsigned int) dirent, name, size, (int)
1883 + file->f_pos, i_ino,
1884 + squashfs_filetype_table[1]);
1886 + if (filldir(dirent, name, size,
1887 + file->f_pos, i_ino,
1888 + squashfs_filetype_table[1]) < 0) {
1889 + TRACE("Filldir returned less than 0\n");
1892 + file->f_pos += size;
1896 + length = get_dir_index_using_offset(i->i_sb, &next_block, &next_offset,
1897 + SQUASHFS_I(i)->u.s2.directory_index_start,
1898 + SQUASHFS_I(i)->u.s2.directory_index_offset,
1899 + SQUASHFS_I(i)->u.s2.directory_index_count,
1902 + while (length < i_size_read(i)) {
1903 + /* read directory header */
1904 + if (msblk->swap) {
1905 + struct squashfs_dir_header sdirh;
1907 + if (!squashfs_get_cached_block(i->i_sb, (char *) &sdirh,
1908 + next_block, next_offset, sizeof(sdirh),
1909 + &next_block, &next_offset))
1912 + length += sizeof(sdirh);
1913 + SQUASHFS_SWAP_DIR_HEADER(&dirh, &sdirh);
1915 + if (!squashfs_get_cached_block(i->i_sb, (char *) &dirh,
1916 + next_block, next_offset, sizeof(dirh),
1917 + &next_block, &next_offset))
1920 + length += sizeof(dirh);
1923 + dir_count = dirh.count + 1;
1924 + while (dir_count--) {
1925 + if (msblk->swap) {
1926 + struct squashfs_dir_entry sdire;
1927 + if (!squashfs_get_cached_block(i->i_sb, (char *)
1928 + &sdire, next_block, next_offset,
1929 + sizeof(sdire), &next_block,
1933 + length += sizeof(sdire);
1934 + SQUASHFS_SWAP_DIR_ENTRY(dire, &sdire);
1936 + if (!squashfs_get_cached_block(i->i_sb, (char *)
1937 + dire, next_block, next_offset,
1938 + sizeof(*dire), &next_block,
1942 + length += sizeof(*dire);
1945 + if (!squashfs_get_cached_block(i->i_sb, dire->name,
1946 + next_block, next_offset,
1947 + dire->size + 1, &next_block,
1951 + length += dire->size + 1;
1953 + if (file->f_pos >= length)
1956 + dire->name[dire->size + 1] = '\0';
1958 + TRACE("Calling filldir(%x, %s, %d, %d, %x:%x, %d, %d)\n",
1959 + (unsigned int) dirent, dire->name,
1960 + dire->size + 1, (int) file->f_pos,
1961 + dirh.start_block, dire->offset,
1962 + dirh.inode_number + dire->inode_number,
1963 + squashfs_filetype_table[dire->type]);
1965 + if (filldir(dirent, dire->name, dire->size + 1,
1967 + dirh.inode_number + dire->inode_number,
1968 + squashfs_filetype_table[dire->type])
1970 + TRACE("Filldir returned less than 0\n");
1973 + file->f_pos = length;
1982 + ERROR("Unable to read directory block [%llx:%x]\n", next_block,
1988 +static struct dentry *squashfs_lookup(struct inode *i, struct dentry *dentry,
1989 + struct nameidata *nd)
1991 + const unsigned char *name = dentry->d_name.name;
1992 + int len = dentry->d_name.len;
1993 + struct inode *inode = NULL;
1994 + struct squashfs_sb_info *msblk = i->i_sb->s_fs_info;
1995 + struct squashfs_super_block *sblk = &msblk->sblk;
1996 + long long next_block = SQUASHFS_I(i)->start_block +
1997 + sblk->directory_table_start;
1998 + int next_offset = SQUASHFS_I(i)->offset, length = 0,
2000 + struct squashfs_dir_header dirh;
2001 + char buffer[sizeof(struct squashfs_dir_entry) + SQUASHFS_NAME_LEN];
2002 + struct squashfs_dir_entry *dire = (struct squashfs_dir_entry *) buffer;
2004 + TRACE("Entered squashfs_lookup [%llx:%x]\n", next_block, next_offset);
2006 + if (len > SQUASHFS_NAME_LEN)
2009 + length = get_dir_index_using_name(i->i_sb, &next_block, &next_offset,
2010 + SQUASHFS_I(i)->u.s2.directory_index_start,
2011 + SQUASHFS_I(i)->u.s2.directory_index_offset,
2012 + SQUASHFS_I(i)->u.s2.directory_index_count, name,
2015 + while (length < i_size_read(i)) {
2016 + /* read directory header */
2017 + if (msblk->swap) {
2018 + struct squashfs_dir_header sdirh;
2019 + if (!squashfs_get_cached_block(i->i_sb, (char *) &sdirh,
2020 + next_block, next_offset, sizeof(sdirh),
2021 + &next_block, &next_offset))
2024 + length += sizeof(sdirh);
2025 + SQUASHFS_SWAP_DIR_HEADER(&dirh, &sdirh);
2027 + if (!squashfs_get_cached_block(i->i_sb, (char *) &dirh,
2028 + next_block, next_offset, sizeof(dirh),
2029 + &next_block, &next_offset))
2032 + length += sizeof(dirh);
2035 + dir_count = dirh.count + 1;
2036 + while (dir_count--) {
2037 + if (msblk->swap) {
2038 + struct squashfs_dir_entry sdire;
2039 + if (!squashfs_get_cached_block(i->i_sb, (char *)
2040 + &sdire, next_block,next_offset,
2041 + sizeof(sdire), &next_block,
2045 + length += sizeof(sdire);
2046 + SQUASHFS_SWAP_DIR_ENTRY(dire, &sdire);
2048 + if (!squashfs_get_cached_block(i->i_sb, (char *)
2049 + dire, next_block,next_offset,
2050 + sizeof(*dire), &next_block,
2054 + length += sizeof(*dire);
2057 + if (!squashfs_get_cached_block(i->i_sb, dire->name,
2058 + next_block, next_offset, dire->size + 1,
2059 + &next_block, &next_offset))
2062 + length += dire->size + 1;
2064 + if (name[0] < dire->name[0])
2067 + if ((len == dire->size + 1) && !strncmp(name,
2068 + dire->name, len)) {
2069 + squashfs_inode_t ino =
2070 + SQUASHFS_MKINODE(dirh.start_block,
2073 + TRACE("calling squashfs_iget for directory "
2074 + "entry %s, inode %x:%x, %d\n", name,
2075 + dirh.start_block, dire->offset,
2076 + dirh.inode_number + dire->inode_number);
2078 + inode = (msblk->iget)(i->i_sb, ino);
2086 + d_add(dentry, inode);
2087 + return ERR_PTR(0);
2090 + ERROR("Unable to read directory block [%llx:%x]\n", next_block,
2096 +static void squashfs_put_super(struct super_block *s)
2100 + if (s->s_fs_info) {
2101 + struct squashfs_sb_info *sbi = s->s_fs_info;
2102 + if (sbi->block_cache)
2103 + for (i = 0; i < SQUASHFS_CACHED_BLKS; i++)
2104 + if (sbi->block_cache[i].block !=
2105 + SQUASHFS_INVALID_BLK)
2106 + kfree(sbi->block_cache[i].data);
2107 + if (sbi->fragment)
2108 + for (i = 0; i < SQUASHFS_CACHED_FRAGMENTS; i++)
2109 + SQUASHFS_FREE(sbi->fragment[i].data);
2110 + kfree(sbi->fragment);
2111 + kfree(sbi->block_cache);
2112 + kfree(sbi->read_data);
2113 + kfree(sbi->read_page);
2115 + kfree(sbi->fragment_index);
2116 + kfree(sbi->fragment_index_2);
2117 + kfree(sbi->meta_index);
2118 + kfree(s->s_fs_info);
2119 + s->s_fs_info = NULL;
2124 +static int squashfs_get_sb(struct file_system_type *fs_type,
2125 + int flags, const char *dev_name, void *data,
2126 + struct vfsmount *mnt)
2128 + return get_sb_bdev(fs_type, flags, dev_name, data, squashfs_fill_super, mnt);
2132 +static int __init init_squashfs_fs(void)
2134 + int err = init_inodecache();
2138 + printk(KERN_INFO "squashfs: version 3.0 (2006/03/15) "
2139 + "Phillip Lougher\n");
2141 + if (!(stream.workspace = vmalloc(zlib_inflate_workspacesize()))) {
2142 + ERROR("Failed to allocate zlib workspace\n");
2143 + destroy_inodecache();
2148 + if ((err = register_filesystem(&squashfs_fs_type))) {
2149 + vfree(stream.workspace);
2150 + destroy_inodecache();
2158 +static void __exit exit_squashfs_fs(void)
2160 + vfree(stream.workspace);
2161 + unregister_filesystem(&squashfs_fs_type);
2162 + destroy_inodecache();
2166 +static struct kmem_cache * squashfs_inode_cachep;
2169 +static struct inode *squashfs_alloc_inode(struct super_block *sb)
2171 + struct squashfs_inode_info *ei;
2172 + ei = kmem_cache_alloc(squashfs_inode_cachep, GFP_KERNEL);
2175 + return &ei->vfs_inode;
2179 +static void squashfs_destroy_inode(struct inode *inode)
2181 + kmem_cache_free(squashfs_inode_cachep, SQUASHFS_I(inode));
2185 +static void init_once(void * foo, struct kmem_cache * cachep, unsigned long flags)
2187 + struct squashfs_inode_info *ei = foo;
2189 + inode_init_once(&ei->vfs_inode);
2193 +static int __init init_inodecache(void)
2195 + squashfs_inode_cachep = kmem_cache_create("squashfs_inode_cache",
2196 + sizeof(struct squashfs_inode_info),
2197 + 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
2199 + if (squashfs_inode_cachep == NULL)
2205 +static void destroy_inodecache(void)
2207 + kmem_cache_destroy(squashfs_inode_cachep);
2211 +module_init(init_squashfs_fs);
2212 +module_exit(exit_squashfs_fs);
2213 +MODULE_DESCRIPTION("squashfs, a compressed read-only filesystem");
2214 +MODULE_AUTHOR("Phillip Lougher <phillip@lougher.org.uk>");
2215 +MODULE_LICENSE("GPL");
2216 Index: linux-2.6.23/fs/squashfs/Makefile
2217 ===================================================================
2218 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
2219 +++ linux-2.6.23/fs/squashfs/Makefile 2007-10-10 13:52:14.000000000 +0800
2222 +# Makefile for the linux squashfs routines.
2225 +obj-$(CONFIG_SQUASHFS) += squashfs.o
2226 +squashfs-y += inode.o
2227 +squashfs-y += squashfs2_0.o
2228 Index: linux-2.6.23/fs/squashfs/squashfs2_0.c
2229 ===================================================================
2230 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
2231 +++ linux-2.6.23/fs/squashfs/squashfs2_0.c 2007-10-10 13:52:14.000000000 +0800
2234 + * Squashfs - a compressed read only filesystem for Linux
2236 + * Copyright (c) 2002, 2003, 2004, 2005, 2006
2237 + * Phillip Lougher <phillip@lougher.org.uk>
2239 + * This program is free software; you can redistribute it and/or
2240 + * modify it under the terms of the GNU General Public License
2241 + * as published by the Free Software Foundation; either version 2,
2242 + * or (at your option) any later version.
2244 + * This program is distributed in the hope that it will be useful,
2245 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
2246 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2247 + * GNU General Public License for more details.
2249 + * You should have received a copy of the GNU General Public License
2250 + * along with this program; if not, write to the Free Software
2251 + * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2256 +#include <linux/types.h>
2257 +#include <linux/squashfs_fs.h>
2258 +#include <linux/module.h>
2259 +#include <linux/errno.h>
2260 +#include <linux/slab.h>
2261 +#include <linux/fs.h>
2262 +#include <linux/smp_lock.h>
2263 +#include <linux/slab.h>
2264 +#include <linux/squashfs_fs_sb.h>
2265 +#include <linux/squashfs_fs_i.h>
2266 +#include <linux/buffer_head.h>
2267 +#include <linux/vfs.h>
2268 +#include <linux/init.h>
2269 +#include <linux/dcache.h>
2270 +#include <linux/wait.h>
2271 +#include <linux/zlib.h>
2272 +#include <linux/blkdev.h>
2273 +#include <linux/vmalloc.h>
2274 +#include <asm/uaccess.h>
2275 +#include <asm/semaphore.h>
2277 +#include "squashfs.h"
2278 +static int squashfs_readdir_2(struct file *file, void *dirent, filldir_t filldir);
2279 +static struct dentry *squashfs_lookup_2(struct inode *, struct dentry *,
2280 + struct nameidata *);
2282 +static struct file_operations squashfs_dir_ops_2 = {
2283 + .read = generic_read_dir,
2284 + .readdir = squashfs_readdir_2
2287 +static struct inode_operations squashfs_dir_inode_ops_2 = {
2288 + .lookup = squashfs_lookup_2
2291 +static unsigned char squashfs_filetype_table[] = {
2292 + DT_UNKNOWN, DT_DIR, DT_REG, DT_LNK, DT_BLK, DT_CHR, DT_FIFO, DT_SOCK
2295 +static int read_fragment_index_table_2(struct super_block *s)
2297 + struct squashfs_sb_info *msblk = s->s_fs_info;
2298 + struct squashfs_super_block *sblk = &msblk->sblk;
2300 + if (!(msblk->fragment_index_2 = kmalloc(SQUASHFS_FRAGMENT_INDEX_BYTES_2
2301 + (sblk->fragments), GFP_KERNEL))) {
2302 + ERROR("Failed to allocate uid/gid table\n");
2306 + if (SQUASHFS_FRAGMENT_INDEX_BYTES_2(sblk->fragments) &&
2307 + !squashfs_read_data(s, (char *)
2308 + msblk->fragment_index_2,
2309 + sblk->fragment_table_start,
2310 + SQUASHFS_FRAGMENT_INDEX_BYTES_2
2311 + (sblk->fragments) |
2312 + SQUASHFS_COMPRESSED_BIT_BLOCK, NULL)) {
2313 + ERROR("unable to read fragment index table\n");
2317 + if (msblk->swap) {
2319 + unsigned int fragment;
2321 + for (i = 0; i < SQUASHFS_FRAGMENT_INDEXES_2(sblk->fragments);
2323 + SQUASHFS_SWAP_FRAGMENT_INDEXES_2((&fragment),
2324 + &msblk->fragment_index_2[i], 1);
2325 + msblk->fragment_index_2[i] = fragment;
2333 +static int get_fragment_location_2(struct super_block *s, unsigned int fragment,
2334 + long long *fragment_start_block,
2335 + unsigned int *fragment_size)
2337 + struct squashfs_sb_info *msblk = s->s_fs_info;
2338 + long long start_block =
2339 + msblk->fragment_index_2[SQUASHFS_FRAGMENT_INDEX_2(fragment)];
2340 + int offset = SQUASHFS_FRAGMENT_INDEX_OFFSET_2(fragment);
2341 + struct squashfs_fragment_entry_2 fragment_entry;
2343 + if (msblk->swap) {
2344 + struct squashfs_fragment_entry_2 sfragment_entry;
2346 + if (!squashfs_get_cached_block(s, (char *) &sfragment_entry,
2347 + start_block, offset,
2348 + sizeof(sfragment_entry), &start_block,
2351 + SQUASHFS_SWAP_FRAGMENT_ENTRY_2(&fragment_entry, &sfragment_entry);
2353 + if (!squashfs_get_cached_block(s, (char *) &fragment_entry,
2354 + start_block, offset,
2355 + sizeof(fragment_entry), &start_block,
2359 + *fragment_start_block = fragment_entry.start_block;
2360 + *fragment_size = fragment_entry.size;
2369 +static struct inode *squashfs_new_inode(struct super_block *s,
2370 + struct squashfs_base_inode_header_2 *inodeb, unsigned int ino)
2372 + struct squashfs_sb_info *msblk = s->s_fs_info;
2373 + struct squashfs_super_block *sblk = &msblk->sblk;
2374 + struct inode *i = new_inode(s);
2378 + i->i_mtime.tv_sec = sblk->mkfs_time;
2379 + i->i_atime.tv_sec = sblk->mkfs_time;
2380 + i->i_ctime.tv_sec = sblk->mkfs_time;
2381 + i->i_uid = msblk->uid[inodeb->uid];
2382 + i->i_mode = inodeb->mode;
2385 + if (inodeb->guid == SQUASHFS_GUIDS)
2386 + i->i_gid = i->i_uid;
2388 + i->i_gid = msblk->guid[inodeb->guid];
2395 +static struct inode *squashfs_iget_2(struct super_block *s, squashfs_inode_t inode)
2398 + struct squashfs_sb_info *msblk = s->s_fs_info;
2399 + struct squashfs_super_block *sblk = &msblk->sblk;
2400 + unsigned int block = SQUASHFS_INODE_BLK(inode) +
2401 + sblk->inode_table_start;
2402 + unsigned int offset = SQUASHFS_INODE_OFFSET(inode);
2403 + unsigned int ino = SQUASHFS_MK_VFS_INODE(block
2404 + - sblk->inode_table_start, offset);
2405 + long long next_block;
2406 + unsigned int next_offset;
2407 + union squashfs_inode_header_2 id, sid;
2408 + struct squashfs_base_inode_header_2 *inodeb = &id.base,
2409 + *sinodeb = &sid.base;
2411 + TRACE("Entered squashfs_iget\n");
2413 + if (msblk->swap) {
2414 + if (!squashfs_get_cached_block(s, (char *) sinodeb, block,
2415 + offset, sizeof(*sinodeb), &next_block,
2418 + SQUASHFS_SWAP_BASE_INODE_HEADER_2(inodeb, sinodeb,
2419 + sizeof(*sinodeb));
2421 + if (!squashfs_get_cached_block(s, (char *) inodeb, block,
2422 + offset, sizeof(*inodeb), &next_block,
2426 + switch(inodeb->inode_type) {
2427 + case SQUASHFS_FILE_TYPE: {
2428 + struct squashfs_reg_inode_header_2 *inodep = &id.reg;
2429 + struct squashfs_reg_inode_header_2 *sinodep = &sid.reg;
2430 + long long frag_blk;
2431 + unsigned int frag_size;
2433 + if (msblk->swap) {
2434 + if (!squashfs_get_cached_block(s, (char *)
2435 + sinodep, block, offset,
2436 + sizeof(*sinodep), &next_block,
2439 + SQUASHFS_SWAP_REG_INODE_HEADER_2(inodep, sinodep);
2441 + if (!squashfs_get_cached_block(s, (char *)
2442 + inodep, block, offset,
2443 + sizeof(*inodep), &next_block,
2447 + frag_blk = SQUASHFS_INVALID_BLK;
2448 + if (inodep->fragment != SQUASHFS_INVALID_FRAG &&
2449 + !get_fragment_location_2(s,
2450 + inodep->fragment, &frag_blk, &frag_size))
2453 + if((i = squashfs_new_inode(s, inodeb, ino)) == NULL)
2454 + goto failed_read1;
2456 + i->i_size = inodep->file_size;
2457 + i->i_fop = &generic_ro_fops;
2458 + i->i_mode |= S_IFREG;
2459 + i->i_mtime.tv_sec = inodep->mtime;
2460 + i->i_atime.tv_sec = inodep->mtime;
2461 + i->i_ctime.tv_sec = inodep->mtime;
2462 + i->i_blocks = ((i->i_size - 1) >> 9) + 1;
2463 + i->i_blksize = PAGE_CACHE_SIZE;
2464 + SQUASHFS_I(i)->u.s1.fragment_start_block = frag_blk;
2465 + SQUASHFS_I(i)->u.s1.fragment_size = frag_size;
2466 + SQUASHFS_I(i)->u.s1.fragment_offset = inodep->offset;
2467 + SQUASHFS_I(i)->start_block = inodep->start_block;
2468 + SQUASHFS_I(i)->u.s1.block_list_start = next_block;
2469 + SQUASHFS_I(i)->offset = next_offset;
2470 + if (sblk->block_size > 4096)
2471 + i->i_data.a_ops = &squashfs_aops;
2473 + i->i_data.a_ops = &squashfs_aops_4K;
2475 + TRACE("File inode %x:%x, start_block %x, "
2476 + "block_list_start %llx, offset %x\n",
2477 + SQUASHFS_INODE_BLK(inode), offset,
2478 + inodep->start_block, next_block,
2482 + case SQUASHFS_DIR_TYPE: {
2483 + struct squashfs_dir_inode_header_2 *inodep = &id.dir;
2484 + struct squashfs_dir_inode_header_2 *sinodep = &sid.dir;
2486 + if (msblk->swap) {
2487 + if (!squashfs_get_cached_block(s, (char *)
2488 + sinodep, block, offset,
2489 + sizeof(*sinodep), &next_block,
2492 + SQUASHFS_SWAP_DIR_INODE_HEADER_2(inodep, sinodep);
2494 + if (!squashfs_get_cached_block(s, (char *)
2495 + inodep, block, offset,
2496 + sizeof(*inodep), &next_block,
2500 + if((i = squashfs_new_inode(s, inodeb, ino)) == NULL)
2501 + goto failed_read1;
2503 + i->i_size = inodep->file_size;
2504 + i->i_op = &squashfs_dir_inode_ops_2;
2505 + i->i_fop = &squashfs_dir_ops_2;
2506 + i->i_mode |= S_IFDIR;
2507 + i->i_mtime.tv_sec = inodep->mtime;
2508 + i->i_atime.tv_sec = inodep->mtime;
2509 + i->i_ctime.tv_sec = inodep->mtime;
2510 + SQUASHFS_I(i)->start_block = inodep->start_block;
2511 + SQUASHFS_I(i)->offset = inodep->offset;
2512 + SQUASHFS_I(i)->u.s2.directory_index_count = 0;
2513 + SQUASHFS_I(i)->u.s2.parent_inode = 0;
2515 + TRACE("Directory inode %x:%x, start_block %x, offset "
2516 + "%x\n", SQUASHFS_INODE_BLK(inode),
2517 + offset, inodep->start_block,
2521 + case SQUASHFS_LDIR_TYPE: {
2522 + struct squashfs_ldir_inode_header_2 *inodep = &id.ldir;
2523 + struct squashfs_ldir_inode_header_2 *sinodep = &sid.ldir;
2525 + if (msblk->swap) {
2526 + if (!squashfs_get_cached_block(s, (char *)
2527 + sinodep, block, offset,
2528 + sizeof(*sinodep), &next_block,
2531 + SQUASHFS_SWAP_LDIR_INODE_HEADER_2(inodep,
2534 + if (!squashfs_get_cached_block(s, (char *)
2535 + inodep, block, offset,
2536 + sizeof(*inodep), &next_block,
2540 + if((i = squashfs_new_inode(s, inodeb, ino)) == NULL)
2541 + goto failed_read1;
2543 + i->i_size = inodep->file_size;
2544 + i->i_op = &squashfs_dir_inode_ops_2;
2545 + i->i_fop = &squashfs_dir_ops_2;
2546 + i->i_mode |= S_IFDIR;
2547 + i->i_mtime.tv_sec = inodep->mtime;
2548 + i->i_atime.tv_sec = inodep->mtime;
2549 + i->i_ctime.tv_sec = inodep->mtime;
2550 + SQUASHFS_I(i)->start_block = inodep->start_block;
2551 + SQUASHFS_I(i)->offset = inodep->offset;
2552 + SQUASHFS_I(i)->u.s2.directory_index_start = next_block;
2553 + SQUASHFS_I(i)->u.s2.directory_index_offset =
2555 + SQUASHFS_I(i)->u.s2.directory_index_count =
2557 + SQUASHFS_I(i)->u.s2.parent_inode = 0;
2559 + TRACE("Long directory inode %x:%x, start_block %x, "
2561 + SQUASHFS_INODE_BLK(inode), offset,
2562 + inodep->start_block, inodep->offset);
2565 + case SQUASHFS_SYMLINK_TYPE: {
2566 + struct squashfs_symlink_inode_header_2 *inodep =
2568 + struct squashfs_symlink_inode_header_2 *sinodep =
2571 + if (msblk->swap) {
2572 + if (!squashfs_get_cached_block(s, (char *)
2573 + sinodep, block, offset,
2574 + sizeof(*sinodep), &next_block,
2577 + SQUASHFS_SWAP_SYMLINK_INODE_HEADER_2(inodep,
2580 + if (!squashfs_get_cached_block(s, (char *)
2581 + inodep, block, offset,
2582 + sizeof(*inodep), &next_block,
2586 + if((i = squashfs_new_inode(s, inodeb, ino)) == NULL)
2587 + goto failed_read1;
2589 + i->i_size = inodep->symlink_size;
2590 + i->i_op = &page_symlink_inode_operations;
2591 + i->i_data.a_ops = &squashfs_symlink_aops;
2592 + i->i_mode |= S_IFLNK;
2593 + SQUASHFS_I(i)->start_block = next_block;
2594 + SQUASHFS_I(i)->offset = next_offset;
2596 + TRACE("Symbolic link inode %x:%x, start_block %llx, "
2598 + SQUASHFS_INODE_BLK(inode), offset,
2599 + next_block, next_offset);
2602 + case SQUASHFS_BLKDEV_TYPE:
2603 + case SQUASHFS_CHRDEV_TYPE: {
2604 + struct squashfs_dev_inode_header_2 *inodep = &id.dev;
2605 + struct squashfs_dev_inode_header_2 *sinodep = &sid.dev;
2607 + if (msblk->swap) {
2608 + if (!squashfs_get_cached_block(s, (char *)
2609 + sinodep, block, offset,
2610 + sizeof(*sinodep), &next_block,
2613 + SQUASHFS_SWAP_DEV_INODE_HEADER_2(inodep, sinodep);
2615 + if (!squashfs_get_cached_block(s, (char *)
2616 + inodep, block, offset,
2617 + sizeof(*inodep), &next_block,
2621 + if ((i = squashfs_new_inode(s, inodeb, ino)) == NULL)
2622 + goto failed_read1;
2624 + i->i_mode |= (inodeb->inode_type ==
2625 + SQUASHFS_CHRDEV_TYPE) ? S_IFCHR :
2627 + init_special_inode(i, i->i_mode,
2628 + old_decode_dev(inodep->rdev));
2630 + TRACE("Device inode %x:%x, rdev %x\n",
2631 + SQUASHFS_INODE_BLK(inode), offset,
2635 + case SQUASHFS_FIFO_TYPE:
2636 + case SQUASHFS_SOCKET_TYPE: {
2637 + if ((i = squashfs_new_inode(s, inodeb, ino)) == NULL)
2638 + goto failed_read1;
2640 + i->i_mode |= (inodeb->inode_type == SQUASHFS_FIFO_TYPE)
2641 + ? S_IFIFO : S_IFSOCK;
2642 + init_special_inode(i, i->i_mode, 0);
2646 + ERROR("Unknown inode type %d in squashfs_iget!\n",
2647 + inodeb->inode_type);
2648 + goto failed_read1;
2651 + insert_inode_hash(i);
2655 + ERROR("Unable to read inode [%x:%x]\n", block, offset);
2662 +static int get_dir_index_using_offset(struct super_block *s, long long
2663 + *next_block, unsigned int *next_offset,
2664 + long long index_start,
2665 + unsigned int index_offset, int i_count,
2668 + struct squashfs_sb_info *msblk = s->s_fs_info;
2669 + struct squashfs_super_block *sblk = &msblk->sblk;
2670 + int i, length = 0;
2671 + struct squashfs_dir_index_2 index;
2673 + TRACE("Entered get_dir_index_using_offset, i_count %d, f_pos %d\n",
2674 + i_count, (unsigned int) f_pos);
2679 + for (i = 0; i < i_count; i++) {
2680 + if (msblk->swap) {
2681 + struct squashfs_dir_index_2 sindex;
2682 + squashfs_get_cached_block(s, (char *) &sindex,
2683 + index_start, index_offset,
2684 + sizeof(sindex), &index_start,
2686 + SQUASHFS_SWAP_DIR_INDEX_2(&index, &sindex);
2688 + squashfs_get_cached_block(s, (char *) &index,
2689 + index_start, index_offset,
2690 + sizeof(index), &index_start,
2693 + if (index.index > f_pos)
2696 + squashfs_get_cached_block(s, NULL, index_start, index_offset,
2697 + index.size + 1, &index_start,
2700 + length = index.index;
2701 + *next_block = index.start_block + sblk->directory_table_start;
2704 + *next_offset = (length + *next_offset) % SQUASHFS_METADATA_SIZE;
2711 +static int get_dir_index_using_name(struct super_block *s, long long
2712 + *next_block, unsigned int *next_offset,
2713 + long long index_start,
2714 + unsigned int index_offset, int i_count,
2715 + const char *name, int size)
2717 + struct squashfs_sb_info *msblk = s->s_fs_info;
2718 + struct squashfs_super_block *sblk = &msblk->sblk;
2719 + int i, length = 0;
2720 + char buffer[sizeof(struct squashfs_dir_index_2) + SQUASHFS_NAME_LEN + 1];
2721 + struct squashfs_dir_index_2 *index = (struct squashfs_dir_index_2 *) buffer;
2722 + char str[SQUASHFS_NAME_LEN + 1];
2724 + TRACE("Entered get_dir_index_using_name, i_count %d\n", i_count);
2726 + strncpy(str, name, size);
2729 + for (i = 0; i < i_count; i++) {
2730 + if (msblk->swap) {
2731 + struct squashfs_dir_index_2 sindex;
2732 + squashfs_get_cached_block(s, (char *) &sindex,
2733 + index_start, index_offset,
2734 + sizeof(sindex), &index_start,
2736 + SQUASHFS_SWAP_DIR_INDEX_2(index, &sindex);
2738 + squashfs_get_cached_block(s, (char *) index,
2739 + index_start, index_offset,
2740 + sizeof(struct squashfs_dir_index_2),
2741 + &index_start, &index_offset);
2743 + squashfs_get_cached_block(s, index->name, index_start,
2744 + index_offset, index->size + 1,
2745 + &index_start, &index_offset);
2747 + index->name[index->size + 1] = '\0';
2749 + if (strcmp(index->name, str) > 0)
2752 + length = index->index;
2753 + *next_block = index->start_block + sblk->directory_table_start;
2756 + *next_offset = (length + *next_offset) % SQUASHFS_METADATA_SIZE;
2761 +static int squashfs_readdir_2(struct file *file, void *dirent, filldir_t filldir)
2763 + struct inode *i = file->f_dentry->d_inode;
2764 + struct squashfs_sb_info *msblk = i->i_sb->s_fs_info;
2765 + struct squashfs_super_block *sblk = &msblk->sblk;
2766 + long long next_block = SQUASHFS_I(i)->start_block +
2767 + sblk->directory_table_start;
2768 + int next_offset = SQUASHFS_I(i)->offset, length = 0, dirs_read = 0,
2770 + struct squashfs_dir_header_2 dirh;
2771 + char buffer[sizeof(struct squashfs_dir_entry_2) + SQUASHFS_NAME_LEN + 1];
2772 + struct squashfs_dir_entry_2 *dire = (struct squashfs_dir_entry_2 *) buffer;
2774 + TRACE("Entered squashfs_readdir_2 [%llx:%x]\n", next_block, next_offset);
2776 + length = get_dir_index_using_offset(i->i_sb, &next_block, &next_offset,
2777 + SQUASHFS_I(i)->u.s2.directory_index_start,
2778 + SQUASHFS_I(i)->u.s2.directory_index_offset,
2779 + SQUASHFS_I(i)->u.s2.directory_index_count,
2782 + while (length < i_size_read(i)) {
2783 + /* read directory header */
2784 + if (msblk->swap) {
2785 + struct squashfs_dir_header_2 sdirh;
2787 + if (!squashfs_get_cached_block(i->i_sb, (char *) &sdirh,
2788 + next_block, next_offset, sizeof(sdirh),
2789 + &next_block, &next_offset))
2792 + length += sizeof(sdirh);
2793 + SQUASHFS_SWAP_DIR_HEADER_2(&dirh, &sdirh);
2795 + if (!squashfs_get_cached_block(i->i_sb, (char *) &dirh,
2796 + next_block, next_offset, sizeof(dirh),
2797 + &next_block, &next_offset))
2800 + length += sizeof(dirh);
2803 + dir_count = dirh.count + 1;
2804 + while (dir_count--) {
2805 + if (msblk->swap) {
2806 + struct squashfs_dir_entry_2 sdire;
2807 + if (!squashfs_get_cached_block(i->i_sb, (char *)
2808 + &sdire, next_block, next_offset,
2809 + sizeof(sdire), &next_block,
2813 + length += sizeof(sdire);
2814 + SQUASHFS_SWAP_DIR_ENTRY_2(dire, &sdire);
2816 + if (!squashfs_get_cached_block(i->i_sb, (char *)
2817 + dire, next_block, next_offset,
2818 + sizeof(*dire), &next_block,
2822 + length += sizeof(*dire);
2825 + if (!squashfs_get_cached_block(i->i_sb, dire->name,
2826 + next_block, next_offset,
2827 + dire->size + 1, &next_block,
2831 + length += dire->size + 1;
2833 + if (file->f_pos >= length)
2836 + dire->name[dire->size + 1] = '\0';
2838 + TRACE("Calling filldir(%x, %s, %d, %d, %x:%x, %d)\n",
2839 + (unsigned int) dirent, dire->name,
2840 + dire->size + 1, (int) file->f_pos,
2841 + dirh.start_block, dire->offset,
2842 + squashfs_filetype_table[dire->type]);
2844 + if (filldir(dirent, dire->name, dire->size + 1,
2845 + file->f_pos, SQUASHFS_MK_VFS_INODE(
2846 + dirh.start_block, dire->offset),
2847 + squashfs_filetype_table[dire->type])
2849 + TRACE("Filldir returned less than 0\n");
2852 + file->f_pos = length;
2861 + ERROR("Unable to read directory block [%llx:%x]\n", next_block,
2867 +static struct dentry *squashfs_lookup_2(struct inode *i, struct dentry *dentry,
2868 + struct nameidata *nd)
2870 + const unsigned char *name = dentry->d_name.name;
2871 + int len = dentry->d_name.len;
2872 + struct inode *inode = NULL;
2873 + struct squashfs_sb_info *msblk = i->i_sb->s_fs_info;
2874 + struct squashfs_super_block *sblk = &msblk->sblk;
2875 + long long next_block = SQUASHFS_I(i)->start_block +
2876 + sblk->directory_table_start;
2877 + int next_offset = SQUASHFS_I(i)->offset, length = 0,
2879 + struct squashfs_dir_header_2 dirh;
2880 + char buffer[sizeof(struct squashfs_dir_entry_2) + SQUASHFS_NAME_LEN];
2881 + struct squashfs_dir_entry_2 *dire = (struct squashfs_dir_entry_2 *) buffer;
2882 + int sorted = sblk->s_major == 2 && sblk->s_minor >= 1;
2884 + TRACE("Entered squashfs_lookup [%llx:%x]\n", next_block, next_offset);
2886 + if (len > SQUASHFS_NAME_LEN)
2889 + length = get_dir_index_using_name(i->i_sb, &next_block, &next_offset,
2890 + SQUASHFS_I(i)->u.s2.directory_index_start,
2891 + SQUASHFS_I(i)->u.s2.directory_index_offset,
2892 + SQUASHFS_I(i)->u.s2.directory_index_count, name,
2895 + while (length < i_size_read(i)) {
2896 + /* read directory header */
2897 + if (msblk->swap) {
2898 + struct squashfs_dir_header_2 sdirh;
2899 + if (!squashfs_get_cached_block(i->i_sb, (char *) &sdirh,
2900 + next_block, next_offset, sizeof(sdirh),
2901 + &next_block, &next_offset))
2904 + length += sizeof(sdirh);
2905 + SQUASHFS_SWAP_DIR_HEADER_2(&dirh, &sdirh);
2907 + if (!squashfs_get_cached_block(i->i_sb, (char *) &dirh,
2908 + next_block, next_offset, sizeof(dirh),
2909 + &next_block, &next_offset))
2912 + length += sizeof(dirh);
2915 + dir_count = dirh.count + 1;
2916 + while (dir_count--) {
2917 + if (msblk->swap) {
2918 + struct squashfs_dir_entry_2 sdire;
2919 + if (!squashfs_get_cached_block(i->i_sb, (char *)
2920 + &sdire, next_block,next_offset,
2921 + sizeof(sdire), &next_block,
2925 + length += sizeof(sdire);
2926 + SQUASHFS_SWAP_DIR_ENTRY_2(dire, &sdire);
2928 + if (!squashfs_get_cached_block(i->i_sb, (char *)
2929 + dire, next_block,next_offset,
2930 + sizeof(*dire), &next_block,
2934 + length += sizeof(*dire);
2937 + if (!squashfs_get_cached_block(i->i_sb, dire->name,
2938 + next_block, next_offset, dire->size + 1,
2939 + &next_block, &next_offset))
2942 + length += dire->size + 1;
2944 + if (sorted && name[0] < dire->name[0])
2947 + if ((len == dire->size + 1) && !strncmp(name,
2948 + dire->name, len)) {
2949 + squashfs_inode_t ino =
2950 + SQUASHFS_MKINODE(dirh.start_block,
2953 + TRACE("calling squashfs_iget for directory "
2954 + "entry %s, inode %x:%x, %lld\n", name,
2955 + dirh.start_block, dire->offset, ino);
2957 + inode = (msblk->iget)(i->i_sb, ino);
2965 + d_add(dentry, inode);
2966 + return ERR_PTR(0);
2969 + ERROR("Unable to read directory block [%llx:%x]\n", next_block,
2975 +int squashfs_2_0_supported(struct squashfs_sb_info *msblk)
2977 + struct squashfs_super_block *sblk = &msblk->sblk;
2979 + msblk->iget = squashfs_iget_2;
2980 + msblk->read_fragment_index_table = read_fragment_index_table_2;
2982 + sblk->bytes_used = sblk->bytes_used_2;
2983 + sblk->uid_start = sblk->uid_start_2;
2984 + sblk->guid_start = sblk->guid_start_2;
2985 + sblk->inode_table_start = sblk->inode_table_start_2;
2986 + sblk->directory_table_start = sblk->directory_table_start_2;
2987 + sblk->fragment_table_start = sblk->fragment_table_start_2;
2991 Index: linux-2.6.23/fs/squashfs/squashfs.h
2992 ===================================================================
2993 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
2994 +++ linux-2.6.23/fs/squashfs/squashfs.h 2007-10-10 13:52:14.000000000 +0800
2997 + * Squashfs - a compressed read only filesystem for Linux
2999 + * Copyright (c) 2002, 2003, 2004, 2005, 2006
3000 + * Phillip Lougher <phillip@lougher.org.uk>
3002 + * This program is free software; you can redistribute it and/or
3003 + * modify it under the terms of the GNU General Public License
3004 + * as published by the Free Software Foundation; either version 2,
3005 + * or (at your option) any later version.
3007 + * This program is distributed in the hope that it will be useful,
3008 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
3009 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3010 + * GNU General Public License for more details.
3012 + * You should have received a copy of the GNU General Public License
3013 + * along with this program; if not, write to the Free Software
3014 + * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
3019 +#ifdef CONFIG_SQUASHFS_1_0_COMPATIBILITY
3020 +#undef CONFIG_SQUASHFS_1_0_COMPATIBILITY
3023 +#ifdef SQUASHFS_TRACE
3024 +#define TRACE(s, args...) printk(KERN_NOTICE "SQUASHFS: "s, ## args)
3026 +#define TRACE(s, args...) {}
3029 +#define ERROR(s, args...) printk(KERN_ERR "SQUASHFS error: "s, ## args)
3031 +#define SERROR(s, args...) do { \
3033 + printk(KERN_ERR "SQUASHFS error: "s, ## args);\
3036 +#define WARNING(s, args...) printk(KERN_WARNING "SQUASHFS: "s, ## args)
3038 +static inline struct squashfs_inode_info *SQUASHFS_I(struct inode *inode)
3040 + return list_entry(inode, struct squashfs_inode_info, vfs_inode);
3043 +#if defined(CONFIG_SQUASHFS_1_0_COMPATIBILITY ) || defined(CONFIG_SQUASHFS_2_0_COMPATIBILITY)
3044 +#define SQSH_EXTERN
3045 +extern unsigned int squashfs_read_data(struct super_block *s, char *buffer,
3046 + long long index, unsigned int length,
3047 + long long *next_index);
3048 +extern int squashfs_get_cached_block(struct super_block *s, char *buffer,
3049 + long long block, unsigned int offset,
3050 + int length, long long *next_block,
3051 + unsigned int *next_offset);
3052 +extern void release_cached_fragment(struct squashfs_sb_info *msblk, struct
3053 + squashfs_fragment_cache *fragment);
3054 +extern struct squashfs_fragment_cache *get_cached_fragment(struct super_block
3055 + *s, long long start_block,
3057 +extern struct address_space_operations squashfs_symlink_aops;
3058 +extern struct address_space_operations squashfs_aops;
3059 +extern struct address_space_operations squashfs_aops_4K;
3060 +extern struct inode_operations squashfs_dir_inode_ops;
3062 +#define SQSH_EXTERN static
3065 +#ifdef CONFIG_SQUASHFS_1_0_COMPATIBILITY
3066 +extern int squashfs_1_0_supported(struct squashfs_sb_info *msblk);
3068 +static inline int squashfs_1_0_supported(struct squashfs_sb_info *msblk)
3074 +#ifdef CONFIG_SQUASHFS_2_0_COMPATIBILITY
3075 +extern int squashfs_2_0_supported(struct squashfs_sb_info *msblk);
3077 +static inline int squashfs_2_0_supported(struct squashfs_sb_info *msblk)
3082 Index: linux-2.6.23/include/linux/magic.h
3083 ===================================================================
3084 --- linux-2.6.23.orig/include/linux/magic.h 2007-10-10 13:52:12.000000000 +0800
3085 +++ linux-2.6.23/include/linux/magic.h 2007-10-10 13:52:14.000000000 +0800
3087 #define REISER2FS_SUPER_MAGIC_STRING "ReIsEr2Fs"
3088 #define REISER2FS_JR_SUPER_MAGIC_STRING "ReIsEr3Fs"
3090 +#define SQUASHFS_MAGIC 0x73717368
3091 +#define SQUASHFS_MAGIC_SWAP 0x68737173
3093 #define SMB_SUPER_MAGIC 0x517B
3094 #define USBDEVICE_SUPER_MAGIC 0x9fa2
3096 Index: linux-2.6.23/include/linux/squashfs_fs.h
3097 ===================================================================
3098 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
3099 +++ linux-2.6.23/include/linux/squashfs_fs.h 2007-10-10 13:52:14.000000000 +0800
3101 +#ifndef SQUASHFS_FS
3102 +#define SQUASHFS_FS
3107 + * Copyright (c) 2002, 2003, 2004, 2005, 2006
3108 + * Phillip Lougher <phillip@lougher.org.uk>
3110 + * This program is free software; you can redistribute it and/or
3111 + * modify it under the terms of the GNU General Public License
3112 + * as published by the Free Software Foundation; either version 2,
3113 + * or (at your option) any later version.
3115 + * This program is distributed in the hope that it will be useful,
3116 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
3117 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3118 + * GNU General Public License for more details.
3120 + * You should have received a copy of the GNU General Public License
3121 + * along with this program; if not, write to the Free Software
3122 + * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
3127 +#ifndef CONFIG_SQUASHFS_2_0_COMPATIBILITY
3128 +#define CONFIG_SQUASHFS_2_0_COMPATIBILITY
3131 +#ifdef CONFIG_SQUASHFS_VMALLOC
3132 +#define SQUASHFS_ALLOC(a) vmalloc(a)
3133 +#define SQUASHFS_FREE(a) vfree(a)
3135 +#define SQUASHFS_ALLOC(a) kmalloc(a, GFP_KERNEL)
3136 +#define SQUASHFS_FREE(a) kfree(a)
3138 +#define SQUASHFS_CACHED_FRAGMENTS CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE
3139 +#define SQUASHFS_MAJOR 3
3140 +#define SQUASHFS_MINOR 0
3141 +#define SQUASHFS_START 0
3143 +/* size of metadata (inode and directory) blocks */
3144 +#define SQUASHFS_METADATA_SIZE 8192
3145 +#define SQUASHFS_METADATA_LOG 13
3147 +/* default size of data blocks */
3148 +#define SQUASHFS_FILE_SIZE 65536
3149 +#define SQUASHFS_FILE_LOG 16
3151 +#define SQUASHFS_FILE_MAX_SIZE 65536
3153 +/* Max number of uids and gids */
3154 +#define SQUASHFS_UIDS 256
3155 +#define SQUASHFS_GUIDS 255
3157 +/* Max length of filename (not 255) */
3158 +#define SQUASHFS_NAME_LEN 256
3160 +#define SQUASHFS_INVALID ((long long) 0xffffffffffff)
3161 +#define SQUASHFS_INVALID_FRAG ((unsigned int) 0xffffffff)
3162 +#define SQUASHFS_INVALID_BLK ((long long) -1)
3163 +#define SQUASHFS_USED_BLK ((long long) -2)
3165 +/* Filesystem flags */
3166 +#define SQUASHFS_NOI 0
3167 +#define SQUASHFS_NOD 1
3168 +#define SQUASHFS_CHECK 2
3169 +#define SQUASHFS_NOF 3
3170 +#define SQUASHFS_NO_FRAG 4
3171 +#define SQUASHFS_ALWAYS_FRAG 5
3172 +#define SQUASHFS_DUPLICATE 6
3174 +#define SQUASHFS_BIT(flag, bit) ((flag >> bit) & 1)
3176 +#define SQUASHFS_UNCOMPRESSED_INODES(flags) SQUASHFS_BIT(flags, \
3179 +#define SQUASHFS_UNCOMPRESSED_DATA(flags) SQUASHFS_BIT(flags, \
3182 +#define SQUASHFS_UNCOMPRESSED_FRAGMENTS(flags) SQUASHFS_BIT(flags, \
3185 +#define SQUASHFS_NO_FRAGMENTS(flags) SQUASHFS_BIT(flags, \
3188 +#define SQUASHFS_ALWAYS_FRAGMENTS(flags) SQUASHFS_BIT(flags, \
3189 + SQUASHFS_ALWAYS_FRAG)
3191 +#define SQUASHFS_DUPLICATES(flags) SQUASHFS_BIT(flags, \
3192 + SQUASHFS_DUPLICATE)
3194 +#define SQUASHFS_CHECK_DATA(flags) SQUASHFS_BIT(flags, \
3197 +#define SQUASHFS_MKFLAGS(noi, nod, check_data, nof, no_frag, always_frag, \
3198 + duplicate_checking) (noi | (nod << 1) | (check_data << 2) \
3199 + | (nof << 3) | (no_frag << 4) | (always_frag << 5) | \
3200 + (duplicate_checking << 6))
3202 +/* Max number of types and file types */
3203 +#define SQUASHFS_DIR_TYPE 1
3204 +#define SQUASHFS_FILE_TYPE 2
3205 +#define SQUASHFS_SYMLINK_TYPE 3
3206 +#define SQUASHFS_BLKDEV_TYPE 4
3207 +#define SQUASHFS_CHRDEV_TYPE 5
3208 +#define SQUASHFS_FIFO_TYPE 6
3209 +#define SQUASHFS_SOCKET_TYPE 7
3210 +#define SQUASHFS_LDIR_TYPE 8
3211 +#define SQUASHFS_LREG_TYPE 9
3213 +/* 1.0 filesystem type definitions */
3214 +#define SQUASHFS_TYPES 5
3215 +#define SQUASHFS_IPC_TYPE 0
3217 +/* Flag whether block is compressed or uncompressed, bit is set if block is
3219 +#define SQUASHFS_COMPRESSED_BIT (1 << 15)
3221 +#define SQUASHFS_COMPRESSED_SIZE(B) (((B) & ~SQUASHFS_COMPRESSED_BIT) ? \
3222 + (B) & ~SQUASHFS_COMPRESSED_BIT : SQUASHFS_COMPRESSED_BIT)
3224 +#define SQUASHFS_COMPRESSED(B) (!((B) & SQUASHFS_COMPRESSED_BIT))
3226 +#define SQUASHFS_COMPRESSED_BIT_BLOCK (1 << 24)
3228 +#define SQUASHFS_COMPRESSED_SIZE_BLOCK(B) (((B) & \
3229 + ~SQUASHFS_COMPRESSED_BIT_BLOCK) ? (B) & \
3230 + ~SQUASHFS_COMPRESSED_BIT_BLOCK : SQUASHFS_COMPRESSED_BIT_BLOCK)
3232 +#define SQUASHFS_COMPRESSED_BLOCK(B) (!((B) & SQUASHFS_COMPRESSED_BIT_BLOCK))
3235 + * Inode number ops. Inodes consist of a compressed block number, and an
3236 + * uncompressed offset within that block
3238 +#define SQUASHFS_INODE_BLK(a) ((unsigned int) ((a) >> 16))
3240 +#define SQUASHFS_INODE_OFFSET(a) ((unsigned int) ((a) & 0xffff))
3242 +#define SQUASHFS_MKINODE(A, B) ((squashfs_inode_t)(((squashfs_inode_t) (A)\
3245 +/* Compute 32 bit VFS inode number from squashfs inode number */
3246 +#define SQUASHFS_MK_VFS_INODE(a, b) ((unsigned int) (((a) << 8) + \
3250 +/* Translate between VFS mode and squashfs mode */
3251 +#define SQUASHFS_MODE(a) ((a) & 0xfff)
3253 +/* fragment and fragment table defines */
3254 +#define SQUASHFS_FRAGMENT_BYTES(A) (A * sizeof(struct squashfs_fragment_entry))
3256 +#define SQUASHFS_FRAGMENT_INDEX(A) (SQUASHFS_FRAGMENT_BYTES(A) / \
3257 + SQUASHFS_METADATA_SIZE)
3259 +#define SQUASHFS_FRAGMENT_INDEX_OFFSET(A) (SQUASHFS_FRAGMENT_BYTES(A) % \
3260 + SQUASHFS_METADATA_SIZE)
3262 +#define SQUASHFS_FRAGMENT_INDEXES(A) ((SQUASHFS_FRAGMENT_BYTES(A) + \
3263 + SQUASHFS_METADATA_SIZE - 1) / \
3264 + SQUASHFS_METADATA_SIZE)
3266 +#define SQUASHFS_FRAGMENT_INDEX_BYTES(A) (SQUASHFS_FRAGMENT_INDEXES(A) *\
3267 + sizeof(long long))
3269 +/* cached data constants for filesystem */
3270 +#define SQUASHFS_CACHED_BLKS 8
3272 +#define SQUASHFS_MAX_FILE_SIZE_LOG 64
3274 +#define SQUASHFS_MAX_FILE_SIZE ((long long) 1 << \
3275 + (SQUASHFS_MAX_FILE_SIZE_LOG - 2))
3277 +#define SQUASHFS_MARKER_BYTE 0xff
3279 +/* meta index cache */
3280 +#define SQUASHFS_META_INDEXES (SQUASHFS_METADATA_SIZE / sizeof(unsigned int))
3281 +#define SQUASHFS_META_ENTRIES 31
3282 +#define SQUASHFS_META_NUMBER 8
3283 +#define SQUASHFS_SLOTS 4
3285 +#include <linux/magic.h>
3287 +struct meta_entry {
3288 + long long data_block;
3289 + unsigned int index_block;
3290 + unsigned short offset;
3291 + unsigned short pad;
3294 +struct meta_index {
3295 + unsigned int inode_number;
3296 + unsigned int offset;
3297 + unsigned short entries;
3298 + unsigned short skip;
3299 + unsigned short locked;
3300 + unsigned short pad;
3301 + struct meta_entry meta_entry[SQUASHFS_META_ENTRIES];
3306 + * definitions for structures on disk
3309 +typedef long long squashfs_block_t;
3310 +typedef long long squashfs_inode_t;
3312 +struct squashfs_super_block {
3313 + unsigned int s_magic;
3314 + unsigned int inodes;
3315 + unsigned int bytes_used_2;
3316 + unsigned int uid_start_2;
3317 + unsigned int guid_start_2;
3318 + unsigned int inode_table_start_2;
3319 + unsigned int directory_table_start_2;
3320 + unsigned int s_major:16;
3321 + unsigned int s_minor:16;
3322 + unsigned int block_size_1:16;
3323 + unsigned int block_log:16;
3324 + unsigned int flags:8;
3325 + unsigned int no_uids:8;
3326 + unsigned int no_guids:8;
3327 + unsigned int mkfs_time /* time of filesystem creation */;
3328 + squashfs_inode_t root_inode;
3329 + unsigned int block_size;
3330 + unsigned int fragments;
3331 + unsigned int fragment_table_start_2;
3332 + long long bytes_used;
3333 + long long uid_start;
3334 + long long guid_start;
3335 + long long inode_table_start;
3336 + long long directory_table_start;
3337 + long long fragment_table_start;
3339 +} __attribute__ ((packed));
3341 +struct squashfs_dir_index {
3342 + unsigned int index;
3343 + unsigned int start_block;
3344 + unsigned char size;
3345 + unsigned char name[0];
3346 +} __attribute__ ((packed));
3348 +#define SQUASHFS_BASE_INODE_HEADER \
3349 + unsigned int inode_type:4; \
3350 + unsigned int mode:12; \
3351 + unsigned int uid:8; \
3352 + unsigned int guid:8; \
3353 + unsigned int mtime; \
3354 + unsigned int inode_number;
3356 +struct squashfs_base_inode_header {
3357 + SQUASHFS_BASE_INODE_HEADER;
3358 +} __attribute__ ((packed));
3360 +struct squashfs_ipc_inode_header {
3361 + SQUASHFS_BASE_INODE_HEADER;
3362 + unsigned int nlink;
3363 +} __attribute__ ((packed));
3365 +struct squashfs_dev_inode_header {
3366 + SQUASHFS_BASE_INODE_HEADER;
3367 + unsigned int nlink;
3368 + unsigned short rdev;
3369 +} __attribute__ ((packed));
3371 +struct squashfs_symlink_inode_header {
3372 + SQUASHFS_BASE_INODE_HEADER;
3373 + unsigned int nlink;
3374 + unsigned short symlink_size;
3376 +} __attribute__ ((packed));
3378 +struct squashfs_reg_inode_header {
3379 + SQUASHFS_BASE_INODE_HEADER;
3380 + squashfs_block_t start_block;
3381 + unsigned int fragment;
3382 + unsigned int offset;
3383 + unsigned int file_size;
3384 + unsigned short block_list[0];
3385 +} __attribute__ ((packed));
3387 +struct squashfs_lreg_inode_header {
3388 + SQUASHFS_BASE_INODE_HEADER;
3389 + unsigned int nlink;
3390 + squashfs_block_t start_block;
3391 + unsigned int fragment;
3392 + unsigned int offset;
3393 + long long file_size;
3394 + unsigned short block_list[0];
3395 +} __attribute__ ((packed));
3397 +struct squashfs_dir_inode_header {
3398 + SQUASHFS_BASE_INODE_HEADER;
3399 + unsigned int nlink;
3400 + unsigned int file_size:19;
3401 + unsigned int offset:13;
3402 + unsigned int start_block;
3403 + unsigned int parent_inode;
3404 +} __attribute__ ((packed));
3406 +struct squashfs_ldir_inode_header {
3407 + SQUASHFS_BASE_INODE_HEADER;
3408 + unsigned int nlink;
3409 + unsigned int file_size:27;
3410 + unsigned int offset:13;
3411 + unsigned int start_block;
3412 + unsigned int i_count:16;
3413 + unsigned int parent_inode;
3414 + struct squashfs_dir_index index[0];
3415 +} __attribute__ ((packed));
3417 +union squashfs_inode_header {
3418 + struct squashfs_base_inode_header base;
3419 + struct squashfs_dev_inode_header dev;
3420 + struct squashfs_symlink_inode_header symlink;
3421 + struct squashfs_reg_inode_header reg;
3422 + struct squashfs_lreg_inode_header lreg;
3423 + struct squashfs_dir_inode_header dir;
3424 + struct squashfs_ldir_inode_header ldir;
3425 + struct squashfs_ipc_inode_header ipc;
3428 +struct squashfs_dir_entry {
3429 + unsigned int offset:13;
3430 + unsigned int type:3;
3431 + unsigned int size:8;
3432 + int inode_number:16;
3434 +} __attribute__ ((packed));
3436 +struct squashfs_dir_header {
3437 + unsigned int count:8;
3438 + unsigned int start_block;
3439 + unsigned int inode_number;
3440 +} __attribute__ ((packed));
3442 +struct squashfs_fragment_entry {
3443 + long long start_block;
3444 + unsigned int size;
3445 + unsigned int unused;
3446 +} __attribute__ ((packed));
3448 +extern int squashfs_uncompress_block(void *d, int dstlen, void *s, int srclen);
3449 +extern int squashfs_uncompress_init(void);
3450 +extern int squashfs_uncompress_exit(void);
3453 + * macros to convert each packed bitfield structure from little endian to big
3454 + * endian and vice versa. These are needed when creating or using a filesystem
3455 + * on a machine with different byte ordering to the target architecture.
3459 +#define SQUASHFS_SWAP_START \
3462 + unsigned long long val;\
3463 + unsigned char *s;\
3466 +#define SQUASHFS_SWAP_SUPER_BLOCK(s, d) {\
3467 + SQUASHFS_SWAP_START\
3468 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_super_block));\
3469 + SQUASHFS_SWAP((s)->s_magic, d, 0, 32);\
3470 + SQUASHFS_SWAP((s)->inodes, d, 32, 32);\
3471 + SQUASHFS_SWAP((s)->bytes_used_2, d, 64, 32);\
3472 + SQUASHFS_SWAP((s)->uid_start_2, d, 96, 32);\
3473 + SQUASHFS_SWAP((s)->guid_start_2, d, 128, 32);\
3474 + SQUASHFS_SWAP((s)->inode_table_start_2, d, 160, 32);\
3475 + SQUASHFS_SWAP((s)->directory_table_start_2, d, 192, 32);\
3476 + SQUASHFS_SWAP((s)->s_major, d, 224, 16);\
3477 + SQUASHFS_SWAP((s)->s_minor, d, 240, 16);\
3478 + SQUASHFS_SWAP((s)->block_size_1, d, 256, 16);\
3479 + SQUASHFS_SWAP((s)->block_log, d, 272, 16);\
3480 + SQUASHFS_SWAP((s)->flags, d, 288, 8);\
3481 + SQUASHFS_SWAP((s)->no_uids, d, 296, 8);\
3482 + SQUASHFS_SWAP((s)->no_guids, d, 304, 8);\
3483 + SQUASHFS_SWAP((s)->mkfs_time, d, 312, 32);\
3484 + SQUASHFS_SWAP((s)->root_inode, d, 344, 64);\
3485 + SQUASHFS_SWAP((s)->block_size, d, 408, 32);\
3486 + SQUASHFS_SWAP((s)->fragments, d, 440, 32);\
3487 + SQUASHFS_SWAP((s)->fragment_table_start_2, d, 472, 32);\
3488 + SQUASHFS_SWAP((s)->bytes_used, d, 504, 64);\
3489 + SQUASHFS_SWAP((s)->uid_start, d, 568, 64);\
3490 + SQUASHFS_SWAP((s)->guid_start, d, 632, 64);\
3491 + SQUASHFS_SWAP((s)->inode_table_start, d, 696, 64);\
3492 + SQUASHFS_SWAP((s)->directory_table_start, d, 760, 64);\
3493 + SQUASHFS_SWAP((s)->fragment_table_start, d, 824, 64);\
3494 + SQUASHFS_SWAP((s)->unused, d, 888, 64);\
3497 +#define SQUASHFS_SWAP_BASE_INODE_CORE(s, d, n)\
3498 + SQUASHFS_MEMSET(s, d, n);\
3499 + SQUASHFS_SWAP((s)->inode_type, d, 0, 4);\
3500 + SQUASHFS_SWAP((s)->mode, d, 4, 12);\
3501 + SQUASHFS_SWAP((s)->uid, d, 16, 8);\
3502 + SQUASHFS_SWAP((s)->guid, d, 24, 8);\
3503 + SQUASHFS_SWAP((s)->mtime, d, 32, 32);\
3504 + SQUASHFS_SWAP((s)->inode_number, d, 64, 32);
3506 +#define SQUASHFS_SWAP_BASE_INODE_HEADER(s, d, n) {\
3507 + SQUASHFS_SWAP_START\
3508 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, n)\
3511 +#define SQUASHFS_SWAP_IPC_INODE_HEADER(s, d) {\
3512 + SQUASHFS_SWAP_START\
3513 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3514 + sizeof(struct squashfs_ipc_inode_header))\
3515 + SQUASHFS_SWAP((s)->nlink, d, 96, 32);\
3518 +#define SQUASHFS_SWAP_DEV_INODE_HEADER(s, d) {\
3519 + SQUASHFS_SWAP_START\
3520 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3521 + sizeof(struct squashfs_dev_inode_header)); \
3522 + SQUASHFS_SWAP((s)->nlink, d, 96, 32);\
3523 + SQUASHFS_SWAP((s)->rdev, d, 128, 16);\
3526 +#define SQUASHFS_SWAP_SYMLINK_INODE_HEADER(s, d) {\
3527 + SQUASHFS_SWAP_START\
3528 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3529 + sizeof(struct squashfs_symlink_inode_header));\
3530 + SQUASHFS_SWAP((s)->nlink, d, 96, 32);\
3531 + SQUASHFS_SWAP((s)->symlink_size, d, 128, 16);\
3534 +#define SQUASHFS_SWAP_REG_INODE_HEADER(s, d) {\
3535 + SQUASHFS_SWAP_START\
3536 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3537 + sizeof(struct squashfs_reg_inode_header));\
3538 + SQUASHFS_SWAP((s)->start_block, d, 96, 64);\
3539 + SQUASHFS_SWAP((s)->fragment, d, 160, 32);\
3540 + SQUASHFS_SWAP((s)->offset, d, 192, 32);\
3541 + SQUASHFS_SWAP((s)->file_size, d, 224, 32);\
3544 +#define SQUASHFS_SWAP_LREG_INODE_HEADER(s, d) {\
3545 + SQUASHFS_SWAP_START\
3546 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3547 + sizeof(struct squashfs_lreg_inode_header));\
3548 + SQUASHFS_SWAP((s)->nlink, d, 96, 32);\
3549 + SQUASHFS_SWAP((s)->start_block, d, 128, 64);\
3550 + SQUASHFS_SWAP((s)->fragment, d, 192, 32);\
3551 + SQUASHFS_SWAP((s)->offset, d, 224, 32);\
3552 + SQUASHFS_SWAP((s)->file_size, d, 256, 64);\
3555 +#define SQUASHFS_SWAP_DIR_INODE_HEADER(s, d) {\
3556 + SQUASHFS_SWAP_START\
3557 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3558 + sizeof(struct squashfs_dir_inode_header));\
3559 + SQUASHFS_SWAP((s)->nlink, d, 96, 32);\
3560 + SQUASHFS_SWAP((s)->file_size, d, 128, 19);\
3561 + SQUASHFS_SWAP((s)->offset, d, 147, 13);\
3562 + SQUASHFS_SWAP((s)->start_block, d, 160, 32);\
3563 + SQUASHFS_SWAP((s)->parent_inode, d, 192, 32);\
3566 +#define SQUASHFS_SWAP_LDIR_INODE_HEADER(s, d) {\
3567 + SQUASHFS_SWAP_START\
3568 + SQUASHFS_SWAP_BASE_INODE_CORE(s, d, \
3569 + sizeof(struct squashfs_ldir_inode_header));\
3570 + SQUASHFS_SWAP((s)->nlink, d, 96, 32);\
3571 + SQUASHFS_SWAP((s)->file_size, d, 128, 27);\
3572 + SQUASHFS_SWAP((s)->offset, d, 155, 13);\
3573 + SQUASHFS_SWAP((s)->start_block, d, 168, 32);\
3574 + SQUASHFS_SWAP((s)->i_count, d, 200, 16);\
3575 + SQUASHFS_SWAP((s)->parent_inode, d, 216, 32);\
3578 +#define SQUASHFS_SWAP_DIR_INDEX(s, d) {\
3579 + SQUASHFS_SWAP_START\
3580 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_dir_index));\
3581 + SQUASHFS_SWAP((s)->index, d, 0, 32);\
3582 + SQUASHFS_SWAP((s)->start_block, d, 32, 32);\
3583 + SQUASHFS_SWAP((s)->size, d, 64, 8);\
3586 +#define SQUASHFS_SWAP_DIR_HEADER(s, d) {\
3587 + SQUASHFS_SWAP_START\
3588 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_dir_header));\
3589 + SQUASHFS_SWAP((s)->count, d, 0, 8);\
3590 + SQUASHFS_SWAP((s)->start_block, d, 8, 32);\
3591 + SQUASHFS_SWAP((s)->inode_number, d, 40, 32);\
3594 +#define SQUASHFS_SWAP_DIR_ENTRY(s, d) {\
3595 + SQUASHFS_SWAP_START\
3596 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_dir_entry));\
3597 + SQUASHFS_SWAP((s)->offset, d, 0, 13);\
3598 + SQUASHFS_SWAP((s)->type, d, 13, 3);\
3599 + SQUASHFS_SWAP((s)->size, d, 16, 8);\
3600 + SQUASHFS_SWAP((s)->inode_number, d, 24, 16);\
3603 +#define SQUASHFS_SWAP_FRAGMENT_ENTRY(s, d) {\
3604 + SQUASHFS_SWAP_START\
3605 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_fragment_entry));\
3606 + SQUASHFS_SWAP((s)->start_block, d, 0, 64);\
3607 + SQUASHFS_SWAP((s)->size, d, 64, 32);\
3610 +#define SQUASHFS_SWAP_SHORTS(s, d, n) {\
3612 + int bit_position;\
3613 + SQUASHFS_SWAP_START\
3614 + SQUASHFS_MEMSET(s, d, n * 2);\
3615 + for(entry = 0, bit_position = 0; entry < n; entry++, bit_position += \
3617 + SQUASHFS_SWAP(s[entry], d, bit_position, 16);\
3620 +#define SQUASHFS_SWAP_INTS(s, d, n) {\
3622 + int bit_position;\
3623 + SQUASHFS_SWAP_START\
3624 + SQUASHFS_MEMSET(s, d, n * 4);\
3625 + for(entry = 0, bit_position = 0; entry < n; entry++, bit_position += \
3627 + SQUASHFS_SWAP(s[entry], d, bit_position, 32);\
3630 +#define SQUASHFS_SWAP_LONG_LONGS(s, d, n) {\
3632 + int bit_position;\
3633 + SQUASHFS_SWAP_START\
3634 + SQUASHFS_MEMSET(s, d, n * 8);\
3635 + for(entry = 0, bit_position = 0; entry < n; entry++, bit_position += \
3637 + SQUASHFS_SWAP(s[entry], d, bit_position, 64);\
3640 +#define SQUASHFS_SWAP_DATA(s, d, n, bits) {\
3642 + int bit_position;\
3643 + SQUASHFS_SWAP_START\
3644 + SQUASHFS_MEMSET(s, d, n * bits / 8);\
3645 + for(entry = 0, bit_position = 0; entry < n; entry++, bit_position += \
3647 + SQUASHFS_SWAP(s[entry], d, bit_position, bits);\
3650 +#define SQUASHFS_SWAP_FRAGMENT_INDEXES(s, d, n) SQUASHFS_SWAP_LONG_LONGS(s, d, n)
3652 +#ifdef CONFIG_SQUASHFS_1_0_COMPATIBILITY
3654 +struct squashfs_base_inode_header_1 {
3655 + unsigned int inode_type:4;
3656 + unsigned int mode:12; /* protection */
3657 + unsigned int uid:4; /* index into uid table */
3658 + unsigned int guid:4; /* index into guid table */
3659 +} __attribute__ ((packed));
3661 +struct squashfs_ipc_inode_header_1 {
3662 + unsigned int inode_type:4;
3663 + unsigned int mode:12; /* protection */
3664 + unsigned int uid:4; /* index into uid table */
3665 + unsigned int guid:4; /* index into guid table */
3666 + unsigned int type:4;
3667 + unsigned int offset:4;
3668 +} __attribute__ ((packed));
3670 +struct squashfs_dev_inode_header_1 {
3671 + unsigned int inode_type:4;
3672 + unsigned int mode:12; /* protection */
3673 + unsigned int uid:4; /* index into uid table */
3674 + unsigned int guid:4; /* index into guid table */
3675 + unsigned short rdev;
3676 +} __attribute__ ((packed));
3678 +struct squashfs_symlink_inode_header_1 {
3679 + unsigned int inode_type:4;
3680 + unsigned int mode:12; /* protection */
3681 + unsigned int uid:4; /* index into uid table */
3682 + unsigned int guid:4; /* index into guid table */
3683 + unsigned short symlink_size;
3685 +} __attribute__ ((packed));
3687 +struct squashfs_reg_inode_header_1 {
3688 + unsigned int inode_type:4;
3689 + unsigned int mode:12; /* protection */
3690 + unsigned int uid:4; /* index into uid table */
3691 + unsigned int guid:4; /* index into guid table */
3692 + unsigned int mtime;
3693 + unsigned int start_block;
3694 + unsigned int file_size:32;
3695 + unsigned short block_list[0];
3696 +} __attribute__ ((packed));
3698 +struct squashfs_dir_inode_header_1 {
3699 + unsigned int inode_type:4;
3700 + unsigned int mode:12; /* protection */
3701 + unsigned int uid:4; /* index into uid table */
3702 + unsigned int guid:4; /* index into guid table */
3703 + unsigned int file_size:19;
3704 + unsigned int offset:13;
3705 + unsigned int mtime;
3706 + unsigned int start_block:24;
3707 +} __attribute__ ((packed));
3709 +#define SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, n) \
3710 + SQUASHFS_MEMSET(s, d, n);\
3711 + SQUASHFS_SWAP((s)->inode_type, d, 0, 4);\
3712 + SQUASHFS_SWAP((s)->mode, d, 4, 12);\
3713 + SQUASHFS_SWAP((s)->uid, d, 16, 4);\
3714 + SQUASHFS_SWAP((s)->guid, d, 20, 4);
3716 +#define SQUASHFS_SWAP_BASE_INODE_HEADER_1(s, d, n) {\
3717 + SQUASHFS_SWAP_START\
3718 + SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, n)\
3721 +#define SQUASHFS_SWAP_IPC_INODE_HEADER_1(s, d) {\
3722 + SQUASHFS_SWAP_START\
3723 + SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, \
3724 + sizeof(struct squashfs_ipc_inode_header_1));\
3725 + SQUASHFS_SWAP((s)->type, d, 24, 4);\
3726 + SQUASHFS_SWAP((s)->offset, d, 28, 4);\
3729 +#define SQUASHFS_SWAP_DEV_INODE_HEADER_1(s, d) {\
3730 + SQUASHFS_SWAP_START\
3731 + SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, \
3732 + sizeof(struct squashfs_dev_inode_header_1));\
3733 + SQUASHFS_SWAP((s)->rdev, d, 24, 16);\
3736 +#define SQUASHFS_SWAP_SYMLINK_INODE_HEADER_1(s, d) {\
3737 + SQUASHFS_SWAP_START\
3738 + SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, \
3739 + sizeof(struct squashfs_symlink_inode_header_1));\
3740 + SQUASHFS_SWAP((s)->symlink_size, d, 24, 16);\
3743 +#define SQUASHFS_SWAP_REG_INODE_HEADER_1(s, d) {\
3744 + SQUASHFS_SWAP_START\
3745 + SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, \
3746 + sizeof(struct squashfs_reg_inode_header_1));\
3747 + SQUASHFS_SWAP((s)->mtime, d, 24, 32);\
3748 + SQUASHFS_SWAP((s)->start_block, d, 56, 32);\
3749 + SQUASHFS_SWAP((s)->file_size, d, 88, 32);\
3752 +#define SQUASHFS_SWAP_DIR_INODE_HEADER_1(s, d) {\
3753 + SQUASHFS_SWAP_START\
3754 + SQUASHFS_SWAP_BASE_INODE_CORE_1(s, d, \
3755 + sizeof(struct squashfs_dir_inode_header_1));\
3756 + SQUASHFS_SWAP((s)->file_size, d, 24, 19);\
3757 + SQUASHFS_SWAP((s)->offset, d, 43, 13);\
3758 + SQUASHFS_SWAP((s)->mtime, d, 56, 32);\
3759 + SQUASHFS_SWAP((s)->start_block, d, 88, 24);\
3764 +#ifdef CONFIG_SQUASHFS_2_0_COMPATIBILITY
3766 +struct squashfs_dir_index_2 {
3767 + unsigned int index:27;
3768 + unsigned int start_block:29;
3769 + unsigned char size;
3770 + unsigned char name[0];
3771 +} __attribute__ ((packed));
3773 +struct squashfs_base_inode_header_2 {
3774 + unsigned int inode_type:4;
3775 + unsigned int mode:12; /* protection */
3776 + unsigned int uid:8; /* index into uid table */
3777 + unsigned int guid:8; /* index into guid table */
3778 +} __attribute__ ((packed));
3780 +struct squashfs_ipc_inode_header_2 {
3781 + unsigned int inode_type:4;
3782 + unsigned int mode:12; /* protection */
3783 + unsigned int uid:8; /* index into uid table */
3784 + unsigned int guid:8; /* index into guid table */
3785 +} __attribute__ ((packed));
3787 +struct squashfs_dev_inode_header_2 {
3788 + unsigned int inode_type:4;
3789 + unsigned int mode:12; /* protection */
3790 + unsigned int uid:8; /* index into uid table */
3791 + unsigned int guid:8; /* index into guid table */
3792 + unsigned short rdev;
3793 +} __attribute__ ((packed));
3795 +struct squashfs_symlink_inode_header_2 {
3796 + unsigned int inode_type:4;
3797 + unsigned int mode:12; /* protection */
3798 + unsigned int uid:8; /* index into uid table */
3799 + unsigned int guid:8; /* index into guid table */
3800 + unsigned short symlink_size;
3802 +} __attribute__ ((packed));
3804 +struct squashfs_reg_inode_header_2 {
3805 + unsigned int inode_type:4;
3806 + unsigned int mode:12; /* protection */
3807 + unsigned int uid:8; /* index into uid table */
3808 + unsigned int guid:8; /* index into guid table */
3809 + unsigned int mtime;
3810 + unsigned int start_block;
3811 + unsigned int fragment;
3812 + unsigned int offset;
3813 + unsigned int file_size:32;
3814 + unsigned short block_list[0];
3815 +} __attribute__ ((packed));
3817 +struct squashfs_dir_inode_header_2 {
3818 + unsigned int inode_type:4;
3819 + unsigned int mode:12; /* protection */
3820 + unsigned int uid:8; /* index into uid table */
3821 + unsigned int guid:8; /* index into guid table */
3822 + unsigned int file_size:19;
3823 + unsigned int offset:13;
3824 + unsigned int mtime;
3825 + unsigned int start_block:24;
3826 +} __attribute__ ((packed));
3828 +struct squashfs_ldir_inode_header_2 {
3829 + unsigned int inode_type:4;
3830 + unsigned int mode:12; /* protection */
3831 + unsigned int uid:8; /* index into uid table */
3832 + unsigned int guid:8; /* index into guid table */
3833 + unsigned int file_size:27;
3834 + unsigned int offset:13;
3835 + unsigned int mtime;
3836 + unsigned int start_block:24;
3837 + unsigned int i_count:16;
3838 + struct squashfs_dir_index_2 index[0];
3839 +} __attribute__ ((packed));
3841 +union squashfs_inode_header_2 {
3842 + struct squashfs_base_inode_header_2 base;
3843 + struct squashfs_dev_inode_header_2 dev;
3844 + struct squashfs_symlink_inode_header_2 symlink;
3845 + struct squashfs_reg_inode_header_2 reg;
3846 + struct squashfs_dir_inode_header_2 dir;
3847 + struct squashfs_ldir_inode_header_2 ldir;
3848 + struct squashfs_ipc_inode_header_2 ipc;
3851 +struct squashfs_dir_header_2 {
3852 + unsigned int count:8;
3853 + unsigned int start_block:24;
3854 +} __attribute__ ((packed));
3856 +struct squashfs_dir_entry_2 {
3857 + unsigned int offset:13;
3858 + unsigned int type:3;
3859 + unsigned int size:8;
3861 +} __attribute__ ((packed));
3863 +struct squashfs_fragment_entry_2 {
3864 + unsigned int start_block;
3865 + unsigned int size;
3866 +} __attribute__ ((packed));
3868 +#define SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, n)\
3869 + SQUASHFS_MEMSET(s, d, n);\
3870 + SQUASHFS_SWAP((s)->inode_type, d, 0, 4);\
3871 + SQUASHFS_SWAP((s)->mode, d, 4, 12);\
3872 + SQUASHFS_SWAP((s)->uid, d, 16, 8);\
3873 + SQUASHFS_SWAP((s)->guid, d, 24, 8);\
3875 +#define SQUASHFS_SWAP_BASE_INODE_HEADER_2(s, d, n) {\
3876 + SQUASHFS_SWAP_START\
3877 + SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, n)\
3880 +#define SQUASHFS_SWAP_IPC_INODE_HEADER_2(s, d) \
3881 + SQUASHFS_SWAP_BASE_INODE_HEADER_2(s, d, sizeof(struct squashfs_ipc_inode_header_2))
3883 +#define SQUASHFS_SWAP_DEV_INODE_HEADER_2(s, d) {\
3884 + SQUASHFS_SWAP_START\
3885 + SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, \
3886 + sizeof(struct squashfs_dev_inode_header_2)); \
3887 + SQUASHFS_SWAP((s)->rdev, d, 32, 16);\
3890 +#define SQUASHFS_SWAP_SYMLINK_INODE_HEADER_2(s, d) {\
3891 + SQUASHFS_SWAP_START\
3892 + SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, \
3893 + sizeof(struct squashfs_symlink_inode_header_2));\
3894 + SQUASHFS_SWAP((s)->symlink_size, d, 32, 16);\
3897 +#define SQUASHFS_SWAP_REG_INODE_HEADER_2(s, d) {\
3898 + SQUASHFS_SWAP_START\
3899 + SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, \
3900 + sizeof(struct squashfs_reg_inode_header_2));\
3901 + SQUASHFS_SWAP((s)->mtime, d, 32, 32);\
3902 + SQUASHFS_SWAP((s)->start_block, d, 64, 32);\
3903 + SQUASHFS_SWAP((s)->fragment, d, 96, 32);\
3904 + SQUASHFS_SWAP((s)->offset, d, 128, 32);\
3905 + SQUASHFS_SWAP((s)->file_size, d, 160, 32);\
3908 +#define SQUASHFS_SWAP_DIR_INODE_HEADER_2(s, d) {\
3909 + SQUASHFS_SWAP_START\
3910 + SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, \
3911 + sizeof(struct squashfs_dir_inode_header_2));\
3912 + SQUASHFS_SWAP((s)->file_size, d, 32, 19);\
3913 + SQUASHFS_SWAP((s)->offset, d, 51, 13);\
3914 + SQUASHFS_SWAP((s)->mtime, d, 64, 32);\
3915 + SQUASHFS_SWAP((s)->start_block, d, 96, 24);\
3918 +#define SQUASHFS_SWAP_LDIR_INODE_HEADER_2(s, d) {\
3919 + SQUASHFS_SWAP_START\
3920 + SQUASHFS_SWAP_BASE_INODE_CORE_2(s, d, \
3921 + sizeof(struct squashfs_ldir_inode_header_2));\
3922 + SQUASHFS_SWAP((s)->file_size, d, 32, 27);\
3923 + SQUASHFS_SWAP((s)->offset, d, 59, 13);\
3924 + SQUASHFS_SWAP((s)->mtime, d, 72, 32);\
3925 + SQUASHFS_SWAP((s)->start_block, d, 104, 24);\
3926 + SQUASHFS_SWAP((s)->i_count, d, 128, 16);\
3929 +#define SQUASHFS_SWAP_DIR_INDEX_2(s, d) {\
3930 + SQUASHFS_SWAP_START\
3931 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_dir_index_2));\
3932 + SQUASHFS_SWAP((s)->index, d, 0, 27);\
3933 + SQUASHFS_SWAP((s)->start_block, d, 27, 29);\
3934 + SQUASHFS_SWAP((s)->size, d, 56, 8);\
3936 +#define SQUASHFS_SWAP_DIR_HEADER_2(s, d) {\
3937 + SQUASHFS_SWAP_START\
3938 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_dir_header_2));\
3939 + SQUASHFS_SWAP((s)->count, d, 0, 8);\
3940 + SQUASHFS_SWAP((s)->start_block, d, 8, 24);\
3943 +#define SQUASHFS_SWAP_DIR_ENTRY_2(s, d) {\
3944 + SQUASHFS_SWAP_START\
3945 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_dir_entry_2));\
3946 + SQUASHFS_SWAP((s)->offset, d, 0, 13);\
3947 + SQUASHFS_SWAP((s)->type, d, 13, 3);\
3948 + SQUASHFS_SWAP((s)->size, d, 16, 8);\
3951 +#define SQUASHFS_SWAP_FRAGMENT_ENTRY_2(s, d) {\
3952 + SQUASHFS_SWAP_START\
3953 + SQUASHFS_MEMSET(s, d, sizeof(struct squashfs_fragment_entry_2));\
3954 + SQUASHFS_SWAP((s)->start_block, d, 0, 32);\
3955 + SQUASHFS_SWAP((s)->size, d, 32, 32);\
3958 +#define SQUASHFS_SWAP_FRAGMENT_INDEXES_2(s, d, n) SQUASHFS_SWAP_INTS(s, d, n)
3960 +/* fragment and fragment table defines */
3961 +#define SQUASHFS_FRAGMENT_BYTES_2(A) (A * sizeof(struct squashfs_fragment_entry_2))
3963 +#define SQUASHFS_FRAGMENT_INDEX_2(A) (SQUASHFS_FRAGMENT_BYTES_2(A) / \
3964 + SQUASHFS_METADATA_SIZE)
3966 +#define SQUASHFS_FRAGMENT_INDEX_OFFSET_2(A) (SQUASHFS_FRAGMENT_BYTES_2(A) % \
3967 + SQUASHFS_METADATA_SIZE)
3969 +#define SQUASHFS_FRAGMENT_INDEXES_2(A) ((SQUASHFS_FRAGMENT_BYTES_2(A) + \
3970 + SQUASHFS_METADATA_SIZE - 1) / \
3971 + SQUASHFS_METADATA_SIZE)
3973 +#define SQUASHFS_FRAGMENT_INDEX_BYTES_2(A) (SQUASHFS_FRAGMENT_INDEXES_2(A) *\
3981 + * macros used to swap each structure entry, taking into account
3982 + * bitfields and different bitfield placing conventions on differing
3986 +#include <asm/byteorder.h>
3988 +#ifdef __BIG_ENDIAN
3989 + /* convert from little endian to big endian */
3990 +#define SQUASHFS_SWAP(value, p, pos, tbits) _SQUASHFS_SWAP(value, p, pos, \
3993 + /* convert from big endian to little endian */
3994 +#define SQUASHFS_SWAP(value, p, pos, tbits) _SQUASHFS_SWAP(value, p, pos, \
3995 + tbits, 64 - tbits - b_pos)
3998 +#define _SQUASHFS_SWAP(value, p, pos, tbits, SHIFT) {\
4001 + s = (unsigned char *)p + (pos / 8);\
4002 + d = ((unsigned char *) &val) + 7;\
4003 + for(bits = 0; bits < (tbits + b_pos); bits += 8) \
4005 + value = (val >> (SHIFT))/* & ((1 << tbits) - 1)*/;\
4008 +#define SQUASHFS_MEMSET(s, d, n) memset(s, 0, n);
4012 Index: linux-2.6.23/include/linux/squashfs_fs_i.h
4013 ===================================================================
4014 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
4015 +++ linux-2.6.23/include/linux/squashfs_fs_i.h 2007-10-10 13:52:14.000000000 +0800
4017 +#ifndef SQUASHFS_FS_I
4018 +#define SQUASHFS_FS_I
4022 + * Copyright (c) 2002, 2003, 2004, 2005, 2006
4023 + * Phillip Lougher <phillip@lougher.org.uk>
4025 + * This program is free software; you can redistribute it and/or
4026 + * modify it under the terms of the GNU General Public License
4027 + * as published by the Free Software Foundation; either version 2,
4028 + * or (at your option) any later version.
4030 + * This program is distributed in the hope that it will be useful,
4031 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
4032 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4033 + * GNU General Public License for more details.
4035 + * You should have received a copy of the GNU General Public License
4036 + * along with this program; if not, write to the Free Software
4037 + * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
4042 +struct squashfs_inode_info {
4043 + long long start_block;
4044 + unsigned int offset;
4047 + long long fragment_start_block;
4048 + unsigned int fragment_size;
4049 + unsigned int fragment_offset;
4050 + long long block_list_start;
4053 + long long directory_index_start;
4054 + unsigned int directory_index_offset;
4055 + unsigned int directory_index_count;
4056 + unsigned int parent_inode;
4059 + struct inode vfs_inode;
4062 Index: linux-2.6.23/include/linux/squashfs_fs_sb.h
4063 ===================================================================
4064 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
4065 +++ linux-2.6.23/include/linux/squashfs_fs_sb.h 2007-10-10 13:52:14.000000000 +0800
4067 +#ifndef SQUASHFS_FS_SB
4068 +#define SQUASHFS_FS_SB
4072 + * Copyright (c) 2002, 2003, 2004, 2005, 2006
4073 + * Phillip Lougher <phillip@lougher.org.uk>
4075 + * This program is free software; you can redistribute it and/or
4076 + * modify it under the terms of the GNU General Public License
4077 + * as published by the Free Software Foundation; either version 2,
4078 + * or (at your option) any later version.
4080 + * This program is distributed in the hope that it will be useful,
4081 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
4082 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4083 + * GNU General Public License for more details.
4085 + * You should have received a copy of the GNU General Public License
4086 + * along with this program; if not, write to the Free Software
4087 + * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
4089 + * squashfs_fs_sb.h
4092 +#include <linux/squashfs_fs.h>
4094 +struct squashfs_cache {
4097 + long long next_index;
4101 +struct squashfs_fragment_cache {
4104 + unsigned int locked;
4108 +struct squashfs_sb_info {
4109 + struct squashfs_super_block sblk;
4111 + int devblksize_log2;
4113 + struct squashfs_cache *block_cache;
4114 + struct squashfs_fragment_cache *fragment;
4116 + int next_fragment;
4117 + int next_meta_index;
4118 + unsigned int *uid;
4119 + unsigned int *guid;
4120 + long long *fragment_index;
4121 + unsigned int *fragment_index_2;
4122 + unsigned int read_size;
4125 + struct semaphore read_data_mutex;
4126 + struct semaphore read_page_mutex;
4127 + struct semaphore block_cache_mutex;
4128 + struct semaphore fragment_mutex;
4129 + struct semaphore meta_index_mutex;
4130 + wait_queue_head_t waitq;
4131 + wait_queue_head_t fragment_wait_queue;
4132 + struct meta_index *meta_index;
4133 + struct inode *(*iget)(struct super_block *s, squashfs_inode_t \
4135 + long long (*read_blocklist)(struct inode *inode, int \
4136 + index, int readahead_blks, char *block_list, \
4137 + unsigned short **block_p, unsigned int *bsize);
4138 + int (*read_fragment_index_table)(struct super_block *s);
4141 Index: linux-2.6.23/init/do_mounts_rd.c
4142 ===================================================================
4143 --- linux-2.6.23.orig/init/do_mounts_rd.c 2007-10-10 13:52:12.000000000 +0800
4144 +++ linux-2.6.23/init/do_mounts_rd.c 2007-10-10 13:52:14.000000000 +0800
4146 #include <linux/ext2_fs.h>
4147 #include <linux/romfs_fs.h>
4148 #include <linux/cramfs_fs.h>
4149 +#include <linux/squashfs_fs.h>
4150 #include <linux/initrd.h>
4151 #include <linux/string.h>
4154 * numbers could not be found.
4156 * We currently check for the following magic numbers:
4162 struct ext2_super_block *ext2sb;
4163 struct romfs_super_block *romfsb;
4164 struct cramfs_super *cramfsb;
4165 + struct squashfs_super_block *squashfsb;
4170 ext2sb = (struct ext2_super_block *) buf;
4171 romfsb = (struct romfs_super_block *) buf;
4172 cramfsb = (struct cramfs_super *) buf;
4173 + squashfsb = (struct squashfs_super_block *) buf;
4174 memset(buf, 0xe5, size);
4177 @@ -101,6 +105,15 @@
4181 + /* squashfs is at block zero too */
4182 + if (squashfsb->s_magic == SQUASHFS_MAGIC) {
4183 + printk(KERN_NOTICE
4184 + "RAMDISK: squashfs filesystem found at block %d\n",
4186 + nblocks = (squashfsb->bytes_used+BLOCK_SIZE-1)>>BLOCK_SIZE_BITS;
4191 * Read block 1 to test for minix and ext2 superblock