2 * Squashfs - a compressed read only filesystem for Linux
4 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 * Phillip Lougher <phillip@lougher.demon.co.uk>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2,
10 * or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #include <linux/mutex.h>
26 #include <linux/buffer_head.h>
27 #include <linux/slab.h>
28 #include <linux/zlib.h>
30 #include "squashfs_fs.h"
31 #include "squashfs_fs_sb.h"
32 #include "squashfs_fs_i.h"
34 #include "decompressor.h"
36 static void *zlib_init(struct squashfs_sb_info *dummy)
38 z_stream *stream = kmalloc(sizeof(z_stream), GFP_KERNEL);
41 stream->workspace = kmalloc(zlib_inflate_workspacesize(),
43 if (stream->workspace == NULL)
49 ERROR("Failed to allocate zlib workspace\n");
55 static void zlib_free(void *strm)
57 z_stream *stream = strm;
60 kfree(stream->workspace);
65 static int zlib_uncompress(struct squashfs_sb_info *msblk, void **buffer,
66 struct buffer_head **bh, int b, int offset, int length, int srclength,
69 int zlib_err = 0, zlib_init = 0;
70 int avail, bytes, k = 0, page = 0;
71 z_stream *stream = msblk->stream;
73 mutex_lock(&msblk->read_data_mutex);
75 stream->avail_out = 0;
80 if (stream->avail_in == 0 && k < b) {
81 avail = min(bytes, msblk->devblksize - offset);
83 wait_on_buffer(bh[k]);
84 if (!buffer_uptodate(bh[k]))
93 stream->next_in = bh[k]->b_data + offset;
94 stream->avail_in = avail;
98 if (stream->avail_out == 0 && page < pages) {
99 stream->next_out = buffer[page++];
100 stream->avail_out = PAGE_CACHE_SIZE;
104 zlib_err = zlib_inflateInit(stream);
105 if (zlib_err != Z_OK) {
106 ERROR("zlib_inflateInit returned unexpected "
107 "result 0x%x, srclength %d\n",
108 zlib_err, srclength);
114 zlib_err = zlib_inflate(stream, Z_SYNC_FLUSH);
116 if (stream->avail_in == 0 && k < b)
118 } while (zlib_err == Z_OK);
120 if (zlib_err != Z_STREAM_END) {
121 ERROR("zlib_inflate error, data probably corrupt\n");
125 zlib_err = zlib_inflateEnd(stream);
126 if (zlib_err != Z_OK) {
127 ERROR("zlib_inflate error, data probably corrupt\n");
131 length = stream->total_out;
132 mutex_unlock(&msblk->read_data_mutex);
136 mutex_unlock(&msblk->read_data_mutex);
144 const struct squashfs_decompressor squashfs_zlib_comp_ops = {
147 .decompress = zlib_uncompress,
148 .id = ZLIB_COMPRESSION,