1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright 2001 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
8 * USA; either version 2 of the License, or (at your option) any later
9 * version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
14 * linux/fs/isofs/compress.c
16 * Transparent decompression of files on an iso9660 filesystem
19 #include <linux/module.h>
20 #include <linux/init.h>
22 #include <linux/vmalloc.h>
23 #include <linux/zlib.h>
28 /* This should probably be global. */
29 static char zisofs_sink_page
[PAGE_CACHE_SIZE
];
32 * This contains the zlib memory allocation and the mutex for the
33 * allocation; this avoids failures at block-decompression time.
35 static void *zisofs_zlib_workspace
;
36 static DEFINE_MUTEX(zisofs_zlib_lock
);
39 * When decompressing, we typically obtain more than one page
40 * per reference. We inject the additional pages into the page
41 * cache as a form of readahead.
43 static int zisofs_readpage(struct file
*file
, struct page
*page
)
45 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
46 struct address_space
*mapping
= inode
->i_mapping
;
47 unsigned int maxpage
, xpage
, fpage
, blockindex
;
49 unsigned long blockptr
, blockendptr
, cstart
, cend
, csize
;
50 struct buffer_head
*bh
, *ptrbh
[2];
51 unsigned long bufsize
= ISOFS_BUFFER_SIZE(inode
);
52 unsigned int bufshift
= ISOFS_BUFFER_BITS(inode
);
53 unsigned long bufmask
= bufsize
- 1;
56 unsigned int header_size
= ISOFS_I(inode
)->i_format_parm
[0];
57 unsigned int zisofs_block_shift
= ISOFS_I(inode
)->i_format_parm
[1];
58 /* unsigned long zisofs_block_size = 1UL << zisofs_block_shift; */
59 unsigned int zisofs_block_page_shift
= zisofs_block_shift
-PAGE_CACHE_SHIFT
;
60 unsigned long zisofs_block_pages
= 1UL << zisofs_block_page_shift
;
61 unsigned long zisofs_block_page_mask
= zisofs_block_pages
-1;
62 struct page
*pages
[zisofs_block_pages
];
63 unsigned long index
= page
->index
;
66 /* We have already been given one page, this is the one
68 xpage
= index
& zisofs_block_page_mask
;
71 /* The remaining pages need to be allocated and inserted */
72 offset
= index
& ~zisofs_block_page_mask
;
73 blockindex
= offset
>> zisofs_block_page_shift
;
74 maxpage
= (inode
->i_size
+ PAGE_CACHE_SIZE
- 1) >> PAGE_CACHE_SHIFT
;
75 maxpage
= min(zisofs_block_pages
, maxpage
-offset
);
77 for ( i
= 0 ; i
< maxpage
; i
++, offset
++ ) {
79 pages
[i
] = grab_cache_page_nowait(mapping
, offset
);
88 /* This is the last page filled, plus one; used in case of abort. */
91 /* Find the pointer to this specific chunk */
92 /* Note: we're not using isonum_731() here because the data is known aligned */
93 /* Note: header_size is in 32-bit words (4 bytes) */
94 blockptr
= (header_size
+ blockindex
) << 2;
95 blockendptr
= blockptr
+ 4;
97 indexblocks
= ((blockptr
^blockendptr
) >> bufshift
) ? 2 : 1;
98 ptrbh
[0] = ptrbh
[1] = NULL
;
100 if ( isofs_get_blocks(inode
, blockptr
>> bufshift
, ptrbh
, indexblocks
) != indexblocks
) {
101 if ( ptrbh
[0] ) brelse(ptrbh
[0]);
102 printk(KERN_DEBUG
"zisofs: Null buffer on reading block table, inode = %lu, block = %lu\n",
103 inode
->i_ino
, blockptr
>> bufshift
);
106 ll_rw_block(READ
, indexblocks
, ptrbh
);
109 if ( !bh
|| (wait_on_buffer(bh
), !buffer_uptodate(bh
)) ) {
110 printk(KERN_DEBUG
"zisofs: Failed to read block table, inode = %lu, block = %lu\n",
111 inode
->i_ino
, blockptr
>> bufshift
);
116 cstart
= le32_to_cpu(*(__le32
*)(bh
->b_data
+ (blockptr
& bufmask
)));
118 if ( indexblocks
== 2 ) {
119 /* We just crossed a block boundary. Switch to the next block */
122 if ( !bh
|| (wait_on_buffer(bh
), !buffer_uptodate(bh
)) ) {
123 printk(KERN_DEBUG
"zisofs: Failed to read block table, inode = %lu, block = %lu\n",
124 inode
->i_ino
, blockendptr
>> bufshift
);
128 cend
= le32_to_cpu(*(__le32
*)(bh
->b_data
+ (blockendptr
& bufmask
)));
136 if (csize
> deflateBound(1UL << zisofs_block_shift
))
139 /* Now page[] contains an array of pages, any of which can be NULL,
140 and the locks on which we hold. We should now read the data and
141 release the pages. If the pages are NULL the decompressed data
142 for that particular page should be discarded. */
145 /* This data block is empty. */
147 for ( fpage
= 0 ; fpage
< maxpage
; fpage
++ ) {
148 if ( (page
= pages
[fpage
]) != NULL
) {
149 memset(page_address(page
), 0, PAGE_CACHE_SIZE
);
151 flush_dcache_page(page
);
152 SetPageUptodate(page
);
155 if ( fpage
== xpage
)
156 err
= 0; /* The critical page */
158 page_cache_release(page
);
162 /* This data block is compressed. */
164 int bail
= 0, left_out
= -1;
166 int needblocks
= (csize
+ (cstart
& bufmask
) + bufmask
) >> bufshift
;
168 struct buffer_head
*bhs
[needblocks
+1];
169 struct buffer_head
**bhptr
;
171 /* Because zlib is not thread-safe, do all the I/O at the top. */
173 blockptr
= cstart
>> bufshift
;
174 memset(bhs
, 0, (needblocks
+1)*sizeof(struct buffer_head
*));
175 haveblocks
= isofs_get_blocks(inode
, blockptr
, bhs
, needblocks
);
176 ll_rw_block(READ
, haveblocks
, bhs
);
181 /* First block is special since it may be fractional.
182 We also wait for it before grabbing the zlib
183 mutex; odds are that the subsequent blocks are
184 going to come in in short order so we don't hold
185 the zlib mutex longer than necessary. */
187 if ( !bh
|| (wait_on_buffer(bh
), !buffer_uptodate(bh
)) ) {
188 printk(KERN_DEBUG
"zisofs: Hit null buffer, fpage = %d, xpage = %d, csize = %ld\n",
189 fpage
, xpage
, csize
);
192 stream
.next_in
= bh
->b_data
+ (cstart
& bufmask
);
193 stream
.avail_in
= min(bufsize
-(cstart
& bufmask
), csize
);
194 csize
-= stream
.avail_in
;
196 stream
.workspace
= zisofs_zlib_workspace
;
197 mutex_lock(&zisofs_zlib_lock
);
199 zerr
= zlib_inflateInit(&stream
);
200 if ( zerr
!= Z_OK
) {
201 if ( err
&& zerr
== Z_MEM_ERROR
)
203 printk(KERN_DEBUG
"zisofs: zisofs_inflateInit returned %d\n",
208 while ( !bail
&& fpage
< maxpage
) {
211 stream
.next_out
= page_address(page
);
213 stream
.next_out
= (void *)&zisofs_sink_page
;
214 stream
.avail_out
= PAGE_CACHE_SIZE
;
216 while ( stream
.avail_out
) {
218 if ( stream
.avail_in
== 0 && left_out
) {
220 printk(KERN_WARNING
"zisofs: ZF read beyond end of input\n");
226 (wait_on_buffer(bh
), !buffer_uptodate(bh
)) ) {
228 printk(KERN_DEBUG
"zisofs: Hit null buffer, fpage = %d, xpage = %d, csize = %ld\n",
229 fpage
, xpage
, csize
);
234 stream
.next_in
= bh
->b_data
;
235 stream
.avail_in
= min(csize
,bufsize
);
236 csize
-= stream
.avail_in
;
239 ao
= stream
.avail_out
; ai
= stream
.avail_in
;
240 zerr
= zlib_inflate(&stream
, Z_SYNC_FLUSH
);
241 left_out
= stream
.avail_out
;
242 if ( zerr
== Z_BUF_ERROR
&& stream
.avail_in
== 0 )
244 if ( zerr
!= Z_OK
) {
245 /* EOF, error, or trying to read beyond end of input */
246 if ( err
&& zerr
== Z_MEM_ERROR
)
248 if ( zerr
!= Z_STREAM_END
)
249 printk(KERN_DEBUG
"zisofs: zisofs_inflate returned %d, inode = %lu, index = %lu, fpage = %d, xpage = %d, avail_in = %d, avail_out = %d, ai = %d, ao = %d\n",
250 zerr
, inode
->i_ino
, index
,
252 stream
.avail_in
, stream
.avail_out
,
259 if ( stream
.avail_out
&& zerr
== Z_STREAM_END
) {
260 /* Fractional page written before EOF. This may
261 be the last page in the file. */
262 memset(stream
.next_out
, 0, stream
.avail_out
);
263 stream
.avail_out
= 0;
266 if ( !stream
.avail_out
) {
267 /* This page completed */
269 flush_dcache_page(page
);
270 SetPageUptodate(page
);
273 if ( fpage
== xpage
)
274 err
= 0; /* The critical page */
276 page_cache_release(page
);
281 zlib_inflateEnd(&stream
);
284 mutex_unlock(&zisofs_zlib_lock
);
287 for ( i
= 0 ; i
< haveblocks
; i
++ ) {
295 /* Release any residual pages, do not SetPageUptodate */
296 while ( fpage
< maxpage
) {
299 flush_dcache_page(page
);
300 if ( fpage
== xpage
)
304 if ( fpage
!= xpage
)
305 page_cache_release(page
);
310 /* At this point, err contains 0 or -EIO depending on the "critical" page */
314 const struct address_space_operations zisofs_aops
= {
315 .readpage
= zisofs_readpage
,
316 /* No sync_page operation supported? */
317 /* No bmap operation supported */
320 int __init
zisofs_init(void)
322 zisofs_zlib_workspace
= vmalloc(zlib_inflate_workspacesize());
323 if ( !zisofs_zlib_workspace
)
329 void zisofs_cleanup(void)
331 vfree(zisofs_zlib_workspace
);