1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* -*- linux-c -*- ------------------------------------------------------- *
4 * Copyright 2001 H. Peter Anvin - All Rights Reserved
6 * ----------------------------------------------------------------------- */
9 * linux/fs/isofs/compress.c
11 * Transparent decompression of files on an iso9660 filesystem
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/bio.h>
18 #include <linux/slab.h>
19 #include <linux/vmalloc.h>
20 #include <linux/zlib.h>
25 /* This should probably be global. */
26 static char zisofs_sink_page
[PAGE_SIZE
];
29 * This contains the zlib memory allocation and the mutex for the
30 * allocation; this avoids failures at block-decompression time.
32 static void *zisofs_zlib_workspace
;
33 static DEFINE_MUTEX(zisofs_zlib_lock
);
36 * Read data of @inode from @block_start to @block_end and uncompress
37 * to one zisofs block. Store the data in the @pages array with @pcount
38 * entries. Start storing at offset @poffset of the first page.
40 static loff_t
zisofs_uncompress_block(struct inode
*inode
, loff_t block_start
,
41 loff_t block_end
, int pcount
,
42 struct page
**pages
, unsigned poffset
,
45 unsigned int zisofs_block_shift
= ISOFS_I(inode
)->i_format_parm
[1];
46 unsigned int bufsize
= ISOFS_BUFFER_SIZE(inode
);
47 unsigned int bufshift
= ISOFS_BUFFER_BITS(inode
);
48 unsigned int bufmask
= bufsize
- 1;
49 int i
, block_size
= block_end
- block_start
;
50 z_stream stream
= { .total_out
= 0,
54 int needblocks
= (block_size
+ (block_start
& bufmask
) + bufmask
)
58 struct buffer_head
**bhs
;
61 if (block_size
> deflateBound(1UL << zisofs_block_shift
)) {
66 if (block_size
== 0) {
67 for ( i
= 0 ; i
< pcount
; i
++ ) {
70 memset(page_address(pages
[i
]), 0, PAGE_SIZE
);
71 flush_dcache_page(pages
[i
]);
72 SetPageUptodate(pages
[i
]);
74 return ((loff_t
)pcount
) << PAGE_SHIFT
;
77 /* Because zlib is not thread-safe, do all the I/O at the top. */
78 blocknum
= block_start
>> bufshift
;
79 bhs
= kcalloc(needblocks
+ 1, sizeof(*bhs
), GFP_KERNEL
);
84 haveblocks
= isofs_get_blocks(inode
, blocknum
, bhs
, needblocks
);
85 ll_rw_block(REQ_OP_READ
, 0, haveblocks
, bhs
);
90 * First block is special since it may be fractional. We also wait for
91 * it before grabbing the zlib mutex; odds are that the subsequent
92 * blocks are going to come in in short order so we don't hold the zlib
93 * mutex longer than necessary.
99 wait_on_buffer(bhs
[0]);
100 if (!buffer_uptodate(bhs
[0])) {
105 stream
.workspace
= zisofs_zlib_workspace
;
106 mutex_lock(&zisofs_zlib_lock
);
108 zerr
= zlib_inflateInit(&stream
);
110 if (zerr
== Z_MEM_ERROR
)
114 printk(KERN_DEBUG
"zisofs: zisofs_inflateInit returned %d\n",
119 while (curpage
< pcount
&& curbh
< haveblocks
&&
120 zerr
!= Z_STREAM_END
) {
121 if (!stream
.avail_out
) {
122 if (pages
[curpage
]) {
123 stream
.next_out
= page_address(pages
[curpage
])
125 stream
.avail_out
= PAGE_SIZE
- poffset
;
128 stream
.next_out
= (void *)&zisofs_sink_page
;
129 stream
.avail_out
= PAGE_SIZE
;
132 if (!stream
.avail_in
) {
133 wait_on_buffer(bhs
[curbh
]);
134 if (!buffer_uptodate(bhs
[curbh
])) {
138 stream
.next_in
= bhs
[curbh
]->b_data
+
139 (block_start
& bufmask
);
140 stream
.avail_in
= min_t(unsigned, bufsize
-
141 (block_start
& bufmask
),
143 block_size
-= stream
.avail_in
;
147 while (stream
.avail_out
&& stream
.avail_in
) {
148 zerr
= zlib_inflate(&stream
, Z_SYNC_FLUSH
);
149 if (zerr
== Z_BUF_ERROR
&& stream
.avail_in
== 0)
151 if (zerr
== Z_STREAM_END
)
154 /* EOF, error, or trying to read beyond end of input */
155 if (zerr
== Z_MEM_ERROR
)
159 "zisofs: zisofs_inflate returned"
161 " page idx = %d, bh idx = %d,"
163 " avail_out = %ld\n",
164 zerr
, inode
->i_ino
, curpage
,
165 curbh
, stream
.avail_in
,
173 if (!stream
.avail_out
) {
174 /* This page completed */
175 if (pages
[curpage
]) {
176 flush_dcache_page(pages
[curpage
]);
177 SetPageUptodate(pages
[curpage
]);
181 if (!stream
.avail_in
)
185 zlib_inflateEnd(&stream
);
188 mutex_unlock(&zisofs_zlib_lock
);
191 for (i
= 0; i
< haveblocks
; i
++)
194 return stream
.total_out
;
198 * Uncompress data so that pages[full_page] is fully uptodate and possibly
199 * fills in other pages if we have data for them.
201 static int zisofs_fill_pages(struct inode
*inode
, int full_page
, int pcount
,
204 loff_t start_off
, end_off
;
205 loff_t block_start
, block_end
;
206 unsigned int header_size
= ISOFS_I(inode
)->i_format_parm
[0];
207 unsigned int zisofs_block_shift
= ISOFS_I(inode
)->i_format_parm
[1];
208 unsigned int blockptr
;
210 blkcnt_t cstart_block
, cend_block
;
211 struct buffer_head
*bh
;
212 unsigned int blkbits
= ISOFS_BUFFER_BITS(inode
);
213 unsigned int blksize
= 1 << blkbits
;
217 BUG_ON(!pages
[full_page
]);
220 * We want to read at least 'full_page' page. Because we have to
221 * uncompress the whole compression block anyway, fill the surrounding
222 * pages with the data we have anyway...
224 start_off
= page_offset(pages
[full_page
]);
225 end_off
= min_t(loff_t
, start_off
+ PAGE_SIZE
, inode
->i_size
);
227 cstart_block
= start_off
>> zisofs_block_shift
;
228 cend_block
= (end_off
+ (1 << zisofs_block_shift
) - 1)
229 >> zisofs_block_shift
;
231 WARN_ON(start_off
- (full_page
<< PAGE_SHIFT
) !=
232 ((cstart_block
<< zisofs_block_shift
) & PAGE_MASK
));
234 /* Find the pointer to this specific chunk */
235 /* Note: we're not using isonum_731() here because the data is known aligned */
236 /* Note: header_size is in 32-bit words (4 bytes) */
237 blockptr
= (header_size
+ cstart_block
) << 2;
238 bh
= isofs_bread(inode
, blockptr
>> blkbits
);
241 block_start
= le32_to_cpu(*(__le32
*)
242 (bh
->b_data
+ (blockptr
& (blksize
- 1))));
244 while (cstart_block
< cend_block
&& pcount
> 0) {
245 /* Load end of the compressed block in the file */
247 /* Traversed to next block? */
248 if (!(blockptr
& (blksize
- 1))) {
251 bh
= isofs_bread(inode
, blockptr
>> blkbits
);
255 block_end
= le32_to_cpu(*(__le32
*)
256 (bh
->b_data
+ (blockptr
& (blksize
- 1))));
257 if (block_start
> block_end
) {
262 ret
= zisofs_uncompress_block(inode
, block_start
, block_end
,
263 pcount
, pages
, poffset
, &err
);
265 pages
+= poffset
>> PAGE_SHIFT
;
266 pcount
-= poffset
>> PAGE_SHIFT
;
267 full_page
-= poffset
>> PAGE_SHIFT
;
268 poffset
&= ~PAGE_MASK
;
273 * Did we finish reading the page we really wanted
281 block_start
= block_end
;
285 if (poffset
&& *pages
) {
286 memset(page_address(*pages
) + poffset
, 0,
287 PAGE_SIZE
- poffset
);
288 flush_dcache_page(*pages
);
289 SetPageUptodate(*pages
);
295 * When decompressing, we typically obtain more than one page
296 * per reference. We inject the additional pages into the page
297 * cache as a form of readahead.
299 static int zisofs_readpage(struct file
*file
, struct page
*page
)
301 struct inode
*inode
= file_inode(file
);
302 struct address_space
*mapping
= inode
->i_mapping
;
304 int i
, pcount
, full_page
;
305 unsigned int zisofs_block_shift
= ISOFS_I(inode
)->i_format_parm
[1];
306 unsigned int zisofs_pages_per_cblock
=
307 PAGE_SHIFT
<= zisofs_block_shift
?
308 (1 << (zisofs_block_shift
- PAGE_SHIFT
)) : 0;
310 pgoff_t index
= page
->index
, end_index
;
312 end_index
= (inode
->i_size
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
314 * If this page is wholly outside i_size we just return zero;
315 * do_generic_file_read() will handle this for us
317 if (index
>= end_index
) {
318 SetPageUptodate(page
);
323 if (PAGE_SHIFT
<= zisofs_block_shift
) {
324 /* We have already been given one page, this is the one
326 full_page
= index
& (zisofs_pages_per_cblock
- 1);
327 pcount
= min_t(int, zisofs_pages_per_cblock
,
328 end_index
- (index
& ~(zisofs_pages_per_cblock
- 1)));
334 pages
= kcalloc(max_t(unsigned int, zisofs_pages_per_cblock
, 1),
335 sizeof(*pages
), GFP_KERNEL
);
340 pages
[full_page
] = page
;
342 for (i
= 0; i
< pcount
; i
++, index
++) {
344 pages
[i
] = grab_cache_page_nowait(mapping
, index
);
346 ClearPageError(pages
[i
]);
351 err
= zisofs_fill_pages(inode
, full_page
, pcount
, pages
);
353 /* Release any residual pages, do not SetPageUptodate */
354 for (i
= 0; i
< pcount
; i
++) {
356 flush_dcache_page(pages
[i
]);
357 if (i
== full_page
&& err
)
358 SetPageError(pages
[i
]);
360 unlock_page(pages
[i
]);
366 /* At this point, err contains 0 or -EIO depending on the "critical" page */
371 const struct address_space_operations zisofs_aops
= {
372 .readpage
= zisofs_readpage
,
373 /* No bmap operation supported */
376 int __init
zisofs_init(void)
378 zisofs_zlib_workspace
= vmalloc(zlib_inflate_workspacesize());
379 if ( !zisofs_zlib_workspace
)
385 void zisofs_cleanup(void)
387 vfree(zisofs_zlib_workspace
);