Loading...
1/* -*- linux-c -*- ------------------------------------------------------- *
2 *
3 * Copyright 2001 H. Peter Anvin - All Rights Reserved
4 *
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.
10 *
11 * ----------------------------------------------------------------------- */
12
13/*
14 * linux/fs/isofs/compress.c
15 *
16 * Transparent decompression of files on an iso9660 filesystem
17 */
18
19#include <linux/module.h>
20#include <linux/init.h>
21
22#include <linux/vmalloc.h>
23#include <linux/zlib.h>
24
25#include "isofs.h"
26#include "zisofs.h"
27
28/* This should probably be global. */
29static char zisofs_sink_page[PAGE_CACHE_SIZE];
30
31/*
32 * This contains the zlib memory allocation and the mutex for the
33 * allocation; this avoids failures at block-decompression time.
34 */
35static void *zisofs_zlib_workspace;
36static DEFINE_MUTEX(zisofs_zlib_lock);
37
38/*
39 * Read data of @inode from @block_start to @block_end and uncompress
40 * to one zisofs block. Store the data in the @pages array with @pcount
41 * entries. Start storing at offset @poffset of the first page.
42 */
43static loff_t zisofs_uncompress_block(struct inode *inode, loff_t block_start,
44 loff_t block_end, int pcount,
45 struct page **pages, unsigned poffset,
46 int *errp)
47{
48 unsigned int zisofs_block_shift = ISOFS_I(inode)->i_format_parm[1];
49 unsigned int bufsize = ISOFS_BUFFER_SIZE(inode);
50 unsigned int bufshift = ISOFS_BUFFER_BITS(inode);
51 unsigned int bufmask = bufsize - 1;
52 int i, block_size = block_end - block_start;
53 z_stream stream = { .total_out = 0,
54 .avail_in = 0,
55 .avail_out = 0, };
56 int zerr;
57 int needblocks = (block_size + (block_start & bufmask) + bufmask)
58 >> bufshift;
59 int haveblocks;
60 blkcnt_t blocknum;
61 struct buffer_head *bhs[needblocks + 1];
62 int curbh, curpage;
63
64 if (block_size > deflateBound(1UL << zisofs_block_shift)) {
65 *errp = -EIO;
66 return 0;
67 }
68 /* Empty block? */
69 if (block_size == 0) {
70 for ( i = 0 ; i < pcount ; i++ ) {
71 if (!pages[i])
72 continue;
73 memset(page_address(pages[i]), 0, PAGE_CACHE_SIZE);
74 flush_dcache_page(pages[i]);
75 SetPageUptodate(pages[i]);
76 }
77 return ((loff_t)pcount) << PAGE_CACHE_SHIFT;
78 }
79
80 /* Because zlib is not thread-safe, do all the I/O at the top. */
81 blocknum = block_start >> bufshift;
82 memset(bhs, 0, (needblocks + 1) * sizeof(struct buffer_head *));
83 haveblocks = isofs_get_blocks(inode, blocknum, bhs, needblocks);
84 ll_rw_block(READ, haveblocks, bhs);
85
86 curbh = 0;
87 curpage = 0;
88 /*
89 * First block is special since it may be fractional. We also wait for
90 * it before grabbing the zlib mutex; odds are that the subsequent
91 * blocks are going to come in in short order so we don't hold the zlib
92 * mutex longer than necessary.
93 */
94
95 if (!bhs[0])
96 goto b_eio;
97
98 wait_on_buffer(bhs[0]);
99 if (!buffer_uptodate(bhs[0])) {
100 *errp = -EIO;
101 goto b_eio;
102 }
103
104 stream.workspace = zisofs_zlib_workspace;
105 mutex_lock(&zisofs_zlib_lock);
106
107 zerr = zlib_inflateInit(&stream);
108 if (zerr != Z_OK) {
109 if (zerr == Z_MEM_ERROR)
110 *errp = -ENOMEM;
111 else
112 *errp = -EIO;
113 printk(KERN_DEBUG "zisofs: zisofs_inflateInit returned %d\n",
114 zerr);
115 goto z_eio;
116 }
117
118 while (curpage < pcount && curbh < haveblocks &&
119 zerr != Z_STREAM_END) {
120 if (!stream.avail_out) {
121 if (pages[curpage]) {
122 stream.next_out = page_address(pages[curpage])
123 + poffset;
124 stream.avail_out = PAGE_CACHE_SIZE - poffset;
125 poffset = 0;
126 } else {
127 stream.next_out = (void *)&zisofs_sink_page;
128 stream.avail_out = PAGE_CACHE_SIZE;
129 }
130 }
131 if (!stream.avail_in) {
132 wait_on_buffer(bhs[curbh]);
133 if (!buffer_uptodate(bhs[curbh])) {
134 *errp = -EIO;
135 break;
136 }
137 stream.next_in = bhs[curbh]->b_data +
138 (block_start & bufmask);
139 stream.avail_in = min_t(unsigned, bufsize -
140 (block_start & bufmask),
141 block_size);
142 block_size -= stream.avail_in;
143 block_start = 0;
144 }
145
146 while (stream.avail_out && stream.avail_in) {
147 zerr = zlib_inflate(&stream, Z_SYNC_FLUSH);
148 if (zerr == Z_BUF_ERROR && stream.avail_in == 0)
149 break;
150 if (zerr == Z_STREAM_END)
151 break;
152 if (zerr != Z_OK) {
153 /* EOF, error, or trying to read beyond end of input */
154 if (zerr == Z_MEM_ERROR)
155 *errp = -ENOMEM;
156 else {
157 printk(KERN_DEBUG
158 "zisofs: zisofs_inflate returned"
159 " %d, inode = %lu,"
160 " page idx = %d, bh idx = %d,"
161 " avail_in = %d,"
162 " avail_out = %d\n",
163 zerr, inode->i_ino, curpage,
164 curbh, stream.avail_in,
165 stream.avail_out);
166 *errp = -EIO;
167 }
168 goto inflate_out;
169 }
170 }
171
172 if (!stream.avail_out) {
173 /* This page completed */
174 if (pages[curpage]) {
175 flush_dcache_page(pages[curpage]);
176 SetPageUptodate(pages[curpage]);
177 }
178 curpage++;
179 }
180 if (!stream.avail_in)
181 curbh++;
182 }
183inflate_out:
184 zlib_inflateEnd(&stream);
185
186z_eio:
187 mutex_unlock(&zisofs_zlib_lock);
188
189b_eio:
190 for (i = 0; i < haveblocks; i++)
191 brelse(bhs[i]);
192 return stream.total_out;
193}
194
195/*
196 * Uncompress data so that pages[full_page] is fully uptodate and possibly
197 * fills in other pages if we have data for them.
198 */
199static int zisofs_fill_pages(struct inode *inode, int full_page, int pcount,
200 struct page **pages)
201{
202 loff_t start_off, end_off;
203 loff_t block_start, block_end;
204 unsigned int header_size = ISOFS_I(inode)->i_format_parm[0];
205 unsigned int zisofs_block_shift = ISOFS_I(inode)->i_format_parm[1];
206 unsigned int blockptr;
207 loff_t poffset = 0;
208 blkcnt_t cstart_block, cend_block;
209 struct buffer_head *bh;
210 unsigned int blkbits = ISOFS_BUFFER_BITS(inode);
211 unsigned int blksize = 1 << blkbits;
212 int err;
213 loff_t ret;
214
215 BUG_ON(!pages[full_page]);
216
217 /*
218 * We want to read at least 'full_page' page. Because we have to
219 * uncompress the whole compression block anyway, fill the surrounding
220 * pages with the data we have anyway...
221 */
222 start_off = page_offset(pages[full_page]);
223 end_off = min_t(loff_t, start_off + PAGE_CACHE_SIZE, inode->i_size);
224
225 cstart_block = start_off >> zisofs_block_shift;
226 cend_block = (end_off + (1 << zisofs_block_shift) - 1)
227 >> zisofs_block_shift;
228
229 WARN_ON(start_off - (full_page << PAGE_CACHE_SHIFT) !=
230 ((cstart_block << zisofs_block_shift) & PAGE_CACHE_MASK));
231
232 /* Find the pointer to this specific chunk */
233 /* Note: we're not using isonum_731() here because the data is known aligned */
234 /* Note: header_size is in 32-bit words (4 bytes) */
235 blockptr = (header_size + cstart_block) << 2;
236 bh = isofs_bread(inode, blockptr >> blkbits);
237 if (!bh)
238 return -EIO;
239 block_start = le32_to_cpu(*(__le32 *)
240 (bh->b_data + (blockptr & (blksize - 1))));
241
242 while (cstart_block < cend_block && pcount > 0) {
243 /* Load end of the compressed block in the file */
244 blockptr += 4;
245 /* Traversed to next block? */
246 if (!(blockptr & (blksize - 1))) {
247 brelse(bh);
248
249 bh = isofs_bread(inode, blockptr >> blkbits);
250 if (!bh)
251 return -EIO;
252 }
253 block_end = le32_to_cpu(*(__le32 *)
254 (bh->b_data + (blockptr & (blksize - 1))));
255 if (block_start > block_end) {
256 brelse(bh);
257 return -EIO;
258 }
259 err = 0;
260 ret = zisofs_uncompress_block(inode, block_start, block_end,
261 pcount, pages, poffset, &err);
262 poffset += ret;
263 pages += poffset >> PAGE_CACHE_SHIFT;
264 pcount -= poffset >> PAGE_CACHE_SHIFT;
265 full_page -= poffset >> PAGE_CACHE_SHIFT;
266 poffset &= ~PAGE_CACHE_MASK;
267
268 if (err) {
269 brelse(bh);
270 /*
271 * Did we finish reading the page we really wanted
272 * to read?
273 */
274 if (full_page < 0)
275 return 0;
276 return err;
277 }
278
279 block_start = block_end;
280 cstart_block++;
281 }
282
283 if (poffset && *pages) {
284 memset(page_address(*pages) + poffset, 0,
285 PAGE_CACHE_SIZE - poffset);
286 flush_dcache_page(*pages);
287 SetPageUptodate(*pages);
288 }
289 return 0;
290}
291
292/*
293 * When decompressing, we typically obtain more than one page
294 * per reference. We inject the additional pages into the page
295 * cache as a form of readahead.
296 */
297static int zisofs_readpage(struct file *file, struct page *page)
298{
299 struct inode *inode = file->f_path.dentry->d_inode;
300 struct address_space *mapping = inode->i_mapping;
301 int err;
302 int i, pcount, full_page;
303 unsigned int zisofs_block_shift = ISOFS_I(inode)->i_format_parm[1];
304 unsigned int zisofs_pages_per_cblock =
305 PAGE_CACHE_SHIFT <= zisofs_block_shift ?
306 (1 << (zisofs_block_shift - PAGE_CACHE_SHIFT)) : 0;
307 struct page *pages[max_t(unsigned, zisofs_pages_per_cblock, 1)];
308 pgoff_t index = page->index, end_index;
309
310 end_index = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
311 /*
312 * If this page is wholly outside i_size we just return zero;
313 * do_generic_file_read() will handle this for us
314 */
315 if (index >= end_index) {
316 SetPageUptodate(page);
317 unlock_page(page);
318 return 0;
319 }
320
321 if (PAGE_CACHE_SHIFT <= zisofs_block_shift) {
322 /* We have already been given one page, this is the one
323 we must do. */
324 full_page = index & (zisofs_pages_per_cblock - 1);
325 pcount = min_t(int, zisofs_pages_per_cblock,
326 end_index - (index & ~(zisofs_pages_per_cblock - 1)));
327 index -= full_page;
328 } else {
329 full_page = 0;
330 pcount = 1;
331 }
332 pages[full_page] = page;
333
334 for (i = 0; i < pcount; i++, index++) {
335 if (i != full_page)
336 pages[i] = grab_cache_page_nowait(mapping, index);
337 if (pages[i]) {
338 ClearPageError(pages[i]);
339 kmap(pages[i]);
340 }
341 }
342
343 err = zisofs_fill_pages(inode, full_page, pcount, pages);
344
345 /* Release any residual pages, do not SetPageUptodate */
346 for (i = 0; i < pcount; i++) {
347 if (pages[i]) {
348 flush_dcache_page(pages[i]);
349 if (i == full_page && err)
350 SetPageError(pages[i]);
351 kunmap(pages[i]);
352 unlock_page(pages[i]);
353 if (i != full_page)
354 page_cache_release(pages[i]);
355 }
356 }
357
358 /* At this point, err contains 0 or -EIO depending on the "critical" page */
359 return err;
360}
361
362const struct address_space_operations zisofs_aops = {
363 .readpage = zisofs_readpage,
364 /* No sync_page operation supported? */
365 /* No bmap operation supported */
366};
367
368int __init zisofs_init(void)
369{
370 zisofs_zlib_workspace = vmalloc(zlib_inflate_workspacesize());
371 if ( !zisofs_zlib_workspace )
372 return -ENOMEM;
373
374 return 0;
375}
376
377void zisofs_cleanup(void)
378{
379 vfree(zisofs_zlib_workspace);
380}
1/* -*- linux-c -*- ------------------------------------------------------- *
2 *
3 * Copyright 2001 H. Peter Anvin - All Rights Reserved
4 *
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.
10 *
11 * ----------------------------------------------------------------------- */
12
13/*
14 * linux/fs/isofs/compress.c
15 *
16 * Transparent decompression of files on an iso9660 filesystem
17 */
18
19#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/bio.h>
22
23#include <linux/slab.h>
24#include <linux/vmalloc.h>
25#include <linux/zlib.h>
26
27#include "isofs.h"
28#include "zisofs.h"
29
30/* This should probably be global. */
31static char zisofs_sink_page[PAGE_SIZE];
32
33/*
34 * This contains the zlib memory allocation and the mutex for the
35 * allocation; this avoids failures at block-decompression time.
36 */
37static void *zisofs_zlib_workspace;
38static DEFINE_MUTEX(zisofs_zlib_lock);
39
40/*
41 * Read data of @inode from @block_start to @block_end and uncompress
42 * to one zisofs block. Store the data in the @pages array with @pcount
43 * entries. Start storing at offset @poffset of the first page.
44 */
45static loff_t zisofs_uncompress_block(struct inode *inode, loff_t block_start,
46 loff_t block_end, int pcount,
47 struct page **pages, unsigned poffset,
48 int *errp)
49{
50 unsigned int zisofs_block_shift = ISOFS_I(inode)->i_format_parm[1];
51 unsigned int bufsize = ISOFS_BUFFER_SIZE(inode);
52 unsigned int bufshift = ISOFS_BUFFER_BITS(inode);
53 unsigned int bufmask = bufsize - 1;
54 int i, block_size = block_end - block_start;
55 z_stream stream = { .total_out = 0,
56 .avail_in = 0,
57 .avail_out = 0, };
58 int zerr;
59 int needblocks = (block_size + (block_start & bufmask) + bufmask)
60 >> bufshift;
61 int haveblocks;
62 blkcnt_t blocknum;
63 struct buffer_head **bhs;
64 int curbh, curpage;
65
66 if (block_size > deflateBound(1UL << zisofs_block_shift)) {
67 *errp = -EIO;
68 return 0;
69 }
70 /* Empty block? */
71 if (block_size == 0) {
72 for ( i = 0 ; i < pcount ; i++ ) {
73 if (!pages[i])
74 continue;
75 memset(page_address(pages[i]), 0, PAGE_SIZE);
76 flush_dcache_page(pages[i]);
77 SetPageUptodate(pages[i]);
78 }
79 return ((loff_t)pcount) << PAGE_SHIFT;
80 }
81
82 /* Because zlib is not thread-safe, do all the I/O at the top. */
83 blocknum = block_start >> bufshift;
84 bhs = kcalloc(needblocks + 1, sizeof(*bhs), GFP_KERNEL);
85 if (!bhs) {
86 *errp = -ENOMEM;
87 return 0;
88 }
89 haveblocks = isofs_get_blocks(inode, blocknum, bhs, needblocks);
90 ll_rw_block(REQ_OP_READ, 0, haveblocks, bhs);
91
92 curbh = 0;
93 curpage = 0;
94 /*
95 * First block is special since it may be fractional. We also wait for
96 * it before grabbing the zlib mutex; odds are that the subsequent
97 * blocks are going to come in in short order so we don't hold the zlib
98 * mutex longer than necessary.
99 */
100
101 if (!bhs[0])
102 goto b_eio;
103
104 wait_on_buffer(bhs[0]);
105 if (!buffer_uptodate(bhs[0])) {
106 *errp = -EIO;
107 goto b_eio;
108 }
109
110 stream.workspace = zisofs_zlib_workspace;
111 mutex_lock(&zisofs_zlib_lock);
112
113 zerr = zlib_inflateInit(&stream);
114 if (zerr != Z_OK) {
115 if (zerr == Z_MEM_ERROR)
116 *errp = -ENOMEM;
117 else
118 *errp = -EIO;
119 printk(KERN_DEBUG "zisofs: zisofs_inflateInit returned %d\n",
120 zerr);
121 goto z_eio;
122 }
123
124 while (curpage < pcount && curbh < haveblocks &&
125 zerr != Z_STREAM_END) {
126 if (!stream.avail_out) {
127 if (pages[curpage]) {
128 stream.next_out = page_address(pages[curpage])
129 + poffset;
130 stream.avail_out = PAGE_SIZE - poffset;
131 poffset = 0;
132 } else {
133 stream.next_out = (void *)&zisofs_sink_page;
134 stream.avail_out = PAGE_SIZE;
135 }
136 }
137 if (!stream.avail_in) {
138 wait_on_buffer(bhs[curbh]);
139 if (!buffer_uptodate(bhs[curbh])) {
140 *errp = -EIO;
141 break;
142 }
143 stream.next_in = bhs[curbh]->b_data +
144 (block_start & bufmask);
145 stream.avail_in = min_t(unsigned, bufsize -
146 (block_start & bufmask),
147 block_size);
148 block_size -= stream.avail_in;
149 block_start = 0;
150 }
151
152 while (stream.avail_out && stream.avail_in) {
153 zerr = zlib_inflate(&stream, Z_SYNC_FLUSH);
154 if (zerr == Z_BUF_ERROR && stream.avail_in == 0)
155 break;
156 if (zerr == Z_STREAM_END)
157 break;
158 if (zerr != Z_OK) {
159 /* EOF, error, or trying to read beyond end of input */
160 if (zerr == Z_MEM_ERROR)
161 *errp = -ENOMEM;
162 else {
163 printk(KERN_DEBUG
164 "zisofs: zisofs_inflate returned"
165 " %d, inode = %lu,"
166 " page idx = %d, bh idx = %d,"
167 " avail_in = %ld,"
168 " avail_out = %ld\n",
169 zerr, inode->i_ino, curpage,
170 curbh, stream.avail_in,
171 stream.avail_out);
172 *errp = -EIO;
173 }
174 goto inflate_out;
175 }
176 }
177
178 if (!stream.avail_out) {
179 /* This page completed */
180 if (pages[curpage]) {
181 flush_dcache_page(pages[curpage]);
182 SetPageUptodate(pages[curpage]);
183 }
184 curpage++;
185 }
186 if (!stream.avail_in)
187 curbh++;
188 }
189inflate_out:
190 zlib_inflateEnd(&stream);
191
192z_eio:
193 mutex_unlock(&zisofs_zlib_lock);
194
195b_eio:
196 for (i = 0; i < haveblocks; i++)
197 brelse(bhs[i]);
198 kfree(bhs);
199 return stream.total_out;
200}
201
202/*
203 * Uncompress data so that pages[full_page] is fully uptodate and possibly
204 * fills in other pages if we have data for them.
205 */
206static int zisofs_fill_pages(struct inode *inode, int full_page, int pcount,
207 struct page **pages)
208{
209 loff_t start_off, end_off;
210 loff_t block_start, block_end;
211 unsigned int header_size = ISOFS_I(inode)->i_format_parm[0];
212 unsigned int zisofs_block_shift = ISOFS_I(inode)->i_format_parm[1];
213 unsigned int blockptr;
214 loff_t poffset = 0;
215 blkcnt_t cstart_block, cend_block;
216 struct buffer_head *bh;
217 unsigned int blkbits = ISOFS_BUFFER_BITS(inode);
218 unsigned int blksize = 1 << blkbits;
219 int err;
220 loff_t ret;
221
222 BUG_ON(!pages[full_page]);
223
224 /*
225 * We want to read at least 'full_page' page. Because we have to
226 * uncompress the whole compression block anyway, fill the surrounding
227 * pages with the data we have anyway...
228 */
229 start_off = page_offset(pages[full_page]);
230 end_off = min_t(loff_t, start_off + PAGE_SIZE, inode->i_size);
231
232 cstart_block = start_off >> zisofs_block_shift;
233 cend_block = (end_off + (1 << zisofs_block_shift) - 1)
234 >> zisofs_block_shift;
235
236 WARN_ON(start_off - (full_page << PAGE_SHIFT) !=
237 ((cstart_block << zisofs_block_shift) & PAGE_MASK));
238
239 /* Find the pointer to this specific chunk */
240 /* Note: we're not using isonum_731() here because the data is known aligned */
241 /* Note: header_size is in 32-bit words (4 bytes) */
242 blockptr = (header_size + cstart_block) << 2;
243 bh = isofs_bread(inode, blockptr >> blkbits);
244 if (!bh)
245 return -EIO;
246 block_start = le32_to_cpu(*(__le32 *)
247 (bh->b_data + (blockptr & (blksize - 1))));
248
249 while (cstart_block < cend_block && pcount > 0) {
250 /* Load end of the compressed block in the file */
251 blockptr += 4;
252 /* Traversed to next block? */
253 if (!(blockptr & (blksize - 1))) {
254 brelse(bh);
255
256 bh = isofs_bread(inode, blockptr >> blkbits);
257 if (!bh)
258 return -EIO;
259 }
260 block_end = le32_to_cpu(*(__le32 *)
261 (bh->b_data + (blockptr & (blksize - 1))));
262 if (block_start > block_end) {
263 brelse(bh);
264 return -EIO;
265 }
266 err = 0;
267 ret = zisofs_uncompress_block(inode, block_start, block_end,
268 pcount, pages, poffset, &err);
269 poffset += ret;
270 pages += poffset >> PAGE_SHIFT;
271 pcount -= poffset >> PAGE_SHIFT;
272 full_page -= poffset >> PAGE_SHIFT;
273 poffset &= ~PAGE_MASK;
274
275 if (err) {
276 brelse(bh);
277 /*
278 * Did we finish reading the page we really wanted
279 * to read?
280 */
281 if (full_page < 0)
282 return 0;
283 return err;
284 }
285
286 block_start = block_end;
287 cstart_block++;
288 }
289
290 if (poffset && *pages) {
291 memset(page_address(*pages) + poffset, 0,
292 PAGE_SIZE - poffset);
293 flush_dcache_page(*pages);
294 SetPageUptodate(*pages);
295 }
296 return 0;
297}
298
299/*
300 * When decompressing, we typically obtain more than one page
301 * per reference. We inject the additional pages into the page
302 * cache as a form of readahead.
303 */
304static int zisofs_readpage(struct file *file, struct page *page)
305{
306 struct inode *inode = file_inode(file);
307 struct address_space *mapping = inode->i_mapping;
308 int err;
309 int i, pcount, full_page;
310 unsigned int zisofs_block_shift = ISOFS_I(inode)->i_format_parm[1];
311 unsigned int zisofs_pages_per_cblock =
312 PAGE_SHIFT <= zisofs_block_shift ?
313 (1 << (zisofs_block_shift - PAGE_SHIFT)) : 0;
314 struct page **pages;
315 pgoff_t index = page->index, end_index;
316
317 end_index = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
318 /*
319 * If this page is wholly outside i_size we just return zero;
320 * do_generic_file_read() will handle this for us
321 */
322 if (index >= end_index) {
323 SetPageUptodate(page);
324 unlock_page(page);
325 return 0;
326 }
327
328 if (PAGE_SHIFT <= zisofs_block_shift) {
329 /* We have already been given one page, this is the one
330 we must do. */
331 full_page = index & (zisofs_pages_per_cblock - 1);
332 pcount = min_t(int, zisofs_pages_per_cblock,
333 end_index - (index & ~(zisofs_pages_per_cblock - 1)));
334 index -= full_page;
335 } else {
336 full_page = 0;
337 pcount = 1;
338 }
339 pages = kcalloc(max_t(unsigned int, zisofs_pages_per_cblock, 1),
340 sizeof(*pages), GFP_KERNEL);
341 if (!pages) {
342 unlock_page(page);
343 return -ENOMEM;
344 }
345 pages[full_page] = page;
346
347 for (i = 0; i < pcount; i++, index++) {
348 if (i != full_page)
349 pages[i] = grab_cache_page_nowait(mapping, index);
350 if (pages[i]) {
351 ClearPageError(pages[i]);
352 kmap(pages[i]);
353 }
354 }
355
356 err = zisofs_fill_pages(inode, full_page, pcount, pages);
357
358 /* Release any residual pages, do not SetPageUptodate */
359 for (i = 0; i < pcount; i++) {
360 if (pages[i]) {
361 flush_dcache_page(pages[i]);
362 if (i == full_page && err)
363 SetPageError(pages[i]);
364 kunmap(pages[i]);
365 unlock_page(pages[i]);
366 if (i != full_page)
367 put_page(pages[i]);
368 }
369 }
370
371 /* At this point, err contains 0 or -EIO depending on the "critical" page */
372 kfree(pages);
373 return err;
374}
375
376const struct address_space_operations zisofs_aops = {
377 .readpage = zisofs_readpage,
378 /* No bmap operation supported */
379};
380
381int __init zisofs_init(void)
382{
383 zisofs_zlib_workspace = vmalloc(zlib_inflate_workspacesize());
384 if ( !zisofs_zlib_workspace )
385 return -ENOMEM;
386
387 return 0;
388}
389
390void zisofs_cleanup(void)
391{
392 vfree(zisofs_zlib_workspace);
393}