compress.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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.  * linux/fs/isofs/compress.c
  14.  *
  15.  * Transparent decompression of files on an iso9660 filesystem
  16.  */
  17. #include <linux/config.h>
  18. #include <linux/module.h>
  19. #include <linux/stat.h>
  20. #include <linux/sched.h>
  21. #include <linux/iso_fs.h>
  22. #include <linux/kernel.h>
  23. #include <linux/major.h>
  24. #include <linux/mm.h>
  25. #include <linux/string.h>
  26. #include <linux/locks.h>
  27. #include <linux/slab.h>
  28. #include <linux/errno.h>
  29. #include <linux/cdrom.h>
  30. #include <linux/init.h>
  31. #include <linux/nls.h>
  32. #include <linux/ctype.h>
  33. #include <linux/smp_lock.h>
  34. #include <linux/blkdev.h>
  35. #include <linux/vmalloc.h>
  36. #include <linux/zlib_fs.h>
  37. #include <asm/system.h>
  38. #include <asm/uaccess.h>
  39. #include <asm/semaphore.h>
  40. #include "zisofs.h"
  41. /* This should probably be global. */
  42. static char zisofs_sink_page[PAGE_CACHE_SIZE];
  43. /*
  44.  * This contains the zlib memory allocation and the mutex for the
  45.  * allocation; this avoids failures at block-decompression time.
  46.  */
  47. static void *zisofs_zlib_workspace;
  48. static struct semaphore zisofs_zlib_semaphore;
  49. /*
  50.  * When decompressing, we typically obtain more than one page
  51.  * per reference.  We inject the additional pages into the page
  52.  * cache as a form of readahead.
  53.  */
  54. static int zisofs_readpage(struct file *file, struct page *page)
  55. {
  56. struct inode *inode = file->f_dentry->d_inode;
  57. struct address_space *mapping = inode->i_mapping;
  58. unsigned int maxpage, xpage, fpage, blockindex;
  59. unsigned long offset;
  60. unsigned long blockptr, blockendptr, cstart, cend, csize;
  61. struct buffer_head *bh, *ptrbh[2];
  62. unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
  63. unsigned int bufshift = ISOFS_BUFFER_BITS(inode);
  64. unsigned long bufmask  = bufsize - 1;
  65. int err = -EIO;
  66. int i;
  67. unsigned int header_size = inode->u.isofs_i.i_format_parm[0];
  68. unsigned int zisofs_block_shift = inode->u.isofs_i.i_format_parm[1];
  69. /* unsigned long zisofs_block_size = 1UL << zisofs_block_shift; */
  70. unsigned int zisofs_block_page_shift = zisofs_block_shift-PAGE_CACHE_SHIFT;
  71. unsigned long zisofs_block_pages = 1UL << zisofs_block_page_shift;
  72. unsigned long zisofs_block_page_mask = zisofs_block_pages-1;
  73. struct page *pages[zisofs_block_pages];
  74. unsigned long index = page->index;
  75. int indexblocks;
  76. /* We have already been given one page, this is the one
  77.    we must do. */
  78. xpage = index & zisofs_block_page_mask;
  79. pages[xpage] = page;
  80.  
  81. /* The remaining pages need to be allocated and inserted */
  82. offset = index & ~zisofs_block_page_mask;
  83. blockindex = offset >> zisofs_block_page_shift;
  84. maxpage = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  85. maxpage = min(zisofs_block_pages, maxpage-offset);
  86. for ( i = 0 ; i < maxpage ; i++, offset++ ) {
  87. if ( i != xpage ) {
  88. pages[i] = grab_cache_page_nowait(mapping, offset);
  89. }
  90. page = pages[i];
  91. if ( page ) {
  92. ClearPageError(page);
  93. kmap(page);
  94. }
  95. }
  96. /* This is the last page filled, plus one; used in case of abort. */
  97. fpage = 0;
  98. /* Find the pointer to this specific chunk */
  99. /* Note: we're not using isonum_731() here because the data is known aligned */
  100. /* Note: header_size is in 32-bit words (4 bytes) */
  101. blockptr = (header_size + blockindex) << 2;
  102. blockendptr = blockptr + 4;
  103. indexblocks = ((blockptr^blockendptr) >> bufshift) ? 2 : 1;
  104. ptrbh[0] = ptrbh[1] = 0;
  105. if ( isofs_get_blocks(inode, blockptr >> bufshift, ptrbh, indexblocks) != indexblocks ) {
  106. if ( ptrbh[0] ) brelse(ptrbh[0]);
  107. printk(KERN_DEBUG "zisofs: Null buffer on reading block table, inode = %lu, block = %lun",
  108.        inode->i_ino, blockptr >> bufshift);
  109. goto eio;
  110. }
  111. ll_rw_block(READ, indexblocks, ptrbh);
  112. bh = ptrbh[0];
  113. if ( !bh || (wait_on_buffer(bh), !buffer_uptodate(bh)) ) {
  114. printk(KERN_DEBUG "zisofs: Failed to read block table, inode = %lu, block = %lun",
  115.        inode->i_ino, blockptr >> bufshift);
  116. if ( ptrbh[1] )
  117. brelse(ptrbh[1]);
  118. goto eio;
  119. }
  120. cstart = le32_to_cpu(*(u32 *)(bh->b_data + (blockptr & bufmask)));
  121. if ( indexblocks == 2 ) {
  122. /* We just crossed a block boundary.  Switch to the next block */
  123. brelse(bh);
  124. bh = ptrbh[1];
  125. if ( !bh || (wait_on_buffer(bh), !buffer_uptodate(bh)) ) {
  126. printk(KERN_DEBUG "zisofs: Failed to read block table, inode = %lu, block = %lun",
  127.        inode->i_ino, blockendptr >> bufshift);
  128. goto eio;
  129. }
  130. }
  131. cend = le32_to_cpu(*(u32 *)(bh->b_data + (blockendptr & bufmask)));
  132. brelse(bh);
  133. csize = cend-cstart;
  134. /* Now page[] contains an array of pages, any of which can be NULL,
  135.    and the locks on which we hold.  We should now read the data and
  136.    release the pages.  If the pages are NULL the decompressed data
  137.    for that particular page should be discarded. */
  138. if ( csize == 0 ) {
  139. /* This data block is empty. */
  140. for ( fpage = 0 ; fpage < maxpage ; fpage++ ) {
  141. if ( (page = pages[fpage]) != NULL ) {
  142. memset(page_address(page), 0, PAGE_CACHE_SIZE);
  143. flush_dcache_page(page);
  144. SetPageUptodate(page);
  145. kunmap(page);
  146. UnlockPage(page);
  147. if ( fpage == xpage )
  148. err = 0; /* The critical page */
  149. else
  150. page_cache_release(page);
  151. }
  152. }
  153. } else {
  154. /* This data block is compressed. */
  155. z_stream stream;
  156. int bail = 0, left_out = -1;
  157. int zerr;
  158. int needblocks = (csize + (cstart & bufmask) + bufmask) >> bufshift;
  159. int haveblocks;
  160. struct buffer_head *bhs[needblocks+1];
  161. struct buffer_head **bhptr;
  162. /* Because zlib is not thread-safe, do all the I/O at the top. */
  163. blockptr = cstart >> bufshift;
  164. memset(bhs, 0, (needblocks+1)*sizeof(struct buffer_head *));
  165. haveblocks = isofs_get_blocks(inode, blockptr, bhs, needblocks);
  166. ll_rw_block(READ, haveblocks, bhs);
  167. bhptr = &bhs[0];
  168. bh = *bhptr++;
  169. /* First block is special since it may be fractional.
  170.    We also wait for it before grabbing the zlib
  171.    semaphore; odds are that the subsequent blocks are
  172.    going to come in in short order so we don't hold
  173.    the zlib semaphore longer than necessary. */
  174. if ( !bh || (wait_on_buffer(bh), !buffer_uptodate(bh)) ) {
  175. printk(KERN_DEBUG "zisofs: Hit null buffer, fpage = %d, xpage = %d, csize = %ldn",
  176.        fpage, xpage, csize);
  177. goto b_eio;
  178. }
  179. stream.next_in  = bh->b_data + (cstart & bufmask);
  180. stream.avail_in = min(bufsize-(cstart & bufmask), csize);
  181. csize -= stream.avail_in;
  182. stream.workspace = zisofs_zlib_workspace;
  183. down(&zisofs_zlib_semaphore);
  184. zerr = zlib_fs_inflateInit(&stream);
  185. if ( zerr != Z_OK ) {
  186. if ( err && zerr == Z_MEM_ERROR )
  187. err = -ENOMEM;
  188. printk(KERN_DEBUG "zisofs: zisofs_inflateInit returned %dn",
  189.        zerr);
  190. goto z_eio;
  191. }
  192. while ( !bail && fpage < maxpage ) {
  193. page = pages[fpage];
  194. if ( page )
  195. stream.next_out = page_address(page);
  196. else
  197. stream.next_out = (void *)&zisofs_sink_page;
  198. stream.avail_out = PAGE_CACHE_SIZE;
  199. while ( stream.avail_out ) {
  200. int ao, ai;
  201. if ( stream.avail_in == 0 && left_out ) {
  202. if ( !csize ) {
  203. printk(KERN_WARNING "zisofs: ZF read beyond end of inputn");
  204. bail = 1;
  205. break;
  206. } else {
  207. bh = *bhptr++;
  208. if ( !bh ||
  209.      (wait_on_buffer(bh), !buffer_uptodate(bh)) ) {
  210. /* Reached an EIO */
  211.   printk(KERN_DEBUG "zisofs: Hit null buffer, fpage = %d, xpage = %d, csize = %ldn",
  212.        fpage, xpage, csize);
  213.        
  214. bail = 1;
  215. break;
  216. }
  217. stream.next_in = bh->b_data;
  218. stream.avail_in = min(csize,bufsize);
  219. csize -= stream.avail_in;
  220. }
  221. }
  222. ao = stream.avail_out;  ai = stream.avail_in;
  223. zerr = zlib_fs_inflate(&stream, Z_SYNC_FLUSH);
  224. left_out = stream.avail_out;
  225. if ( zerr == Z_BUF_ERROR && stream.avail_in == 0 )
  226. continue;
  227. if ( zerr != Z_OK ) {
  228. /* EOF, error, or trying to read beyond end of input */
  229. if ( err && zerr == Z_MEM_ERROR )
  230. err = -ENOMEM;
  231. if ( zerr != Z_STREAM_END )
  232. 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 = %dn",
  233.        zerr, inode->i_ino, index,
  234.        fpage, xpage,
  235.        stream.avail_in, stream.avail_out,
  236.        ai, ao);
  237. bail = 1;
  238. break;
  239. }
  240. }
  241. if ( stream.avail_out && zerr == Z_STREAM_END ) {
  242. /* Fractional page written before EOF.  This may
  243.    be the last page in the file. */
  244. memset(stream.next_out, 0, stream.avail_out);
  245. stream.avail_out = 0;
  246. }
  247. if ( !stream.avail_out ) {
  248. /* This page completed */
  249. if ( page ) {
  250. flush_dcache_page(page);
  251. SetPageUptodate(page);
  252. kunmap(page);
  253. UnlockPage(page);
  254. if ( fpage == xpage )
  255. err = 0; /* The critical page */
  256. else
  257. page_cache_release(page);
  258. }
  259. fpage++;
  260. }
  261. }
  262. zlib_fs_inflateEnd(&stream);
  263. z_eio:
  264. up(&zisofs_zlib_semaphore);
  265. b_eio:
  266. for ( i = 0 ; i < haveblocks ; i++ ) {
  267. if ( bhs[i] )
  268. brelse(bhs[i]);
  269. }
  270. }
  271. eio:
  272. /* Release any residual pages, do not SetPageUptodate */
  273. while ( fpage < maxpage ) {
  274. page = pages[fpage];
  275. if ( page ) {
  276. flush_dcache_page(page);
  277. if ( fpage == xpage )
  278. SetPageError(page);
  279. kunmap(page);
  280. UnlockPage(page);
  281. if ( fpage != xpage )
  282. page_cache_release(page);
  283. }
  284. fpage++;
  285. }
  286. /* At this point, err contains 0 or -EIO depending on the "critical" page */
  287. return err;
  288. }
  289. struct address_space_operations zisofs_aops = {
  290. readpage: zisofs_readpage,
  291. /* No sync_page operation supported? */
  292. /* No bmap operation supported */
  293. };
  294. static int initialized = 0;
  295. int __init zisofs_init(void)
  296. {
  297. if ( initialized ) {
  298. printk("zisofs_init: called more than oncen");
  299. return 0;
  300. }
  301. zisofs_zlib_workspace = vmalloc(zlib_fs_inflate_workspacesize());
  302. if ( !zisofs_zlib_workspace )
  303. return -ENOMEM;
  304. init_MUTEX(&zisofs_zlib_semaphore);
  305. initialized = 1;
  306. return 0;
  307. }
  308. void __exit zisofs_cleanup(void)
  309. {
  310. if ( !initialized ) {
  311. printk("zisofs_cleanup: called without initializationn");
  312. return;
  313. }
  314. vfree(zisofs_zlib_workspace);
  315. initialized = 0;
  316. }