compr_zlib.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001, 2002 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
  7.  *
  8.  * The original JFFS, from which the design for JFFS2 was derived,
  9.  * was designed and implemented by Axis Communications AB.
  10.  *
  11.  * The contents of this file are subject to the Red Hat eCos Public
  12.  * License Version 1.1 (the "Licence"); you may not use this file
  13.  * except in compliance with the Licence.  You may obtain a copy of
  14.  * the Licence at http://www.redhat.com/
  15.  *
  16.  * Software distributed under the Licence is distributed on an "AS IS"
  17.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  18.  * See the Licence for the specific language governing rights and
  19.  * limitations under the Licence.
  20.  *
  21.  * The Original Code is JFFS2 - Journalling Flash File System, version 2
  22.  *
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License version 2 (the "GPL"), in
  25.  * which case the provisions of the GPL are applicable instead of the
  26.  * above.  If you wish to allow the use of your version of this file
  27.  * only under the terms of the GPL and not to allow others to use your
  28.  * version of this file under the RHEPL, indicate your decision by
  29.  * deleting the provisions above and replace them with the notice and
  30.  * other provisions required by the GPL.  If you do not delete the
  31.  * provisions above, a recipient may use your version of this file
  32.  * under either the RHEPL or the GPL.
  33.  *
  34.  * $Id: compr_zlib.c,v 1.8.2.1 2002/10/11 09:04:44 dwmw2 Exp $
  35.  *
  36.  */
  37. #ifndef __KERNEL__
  38. #error "The userspace support got too messy and was removed. Update your mkfs.jffs2"
  39. #endif
  40. #include <linux/config.h>
  41. #include <linux/kernel.h>
  42. #include <linux/mtd/compatmac.h> /* for min() */
  43. #include <linux/slab.h>
  44. #include <linux/jffs2.h>
  45. #include <linux/zlib.h>
  46. #include "nodelist.h"
  47. /* Plan: call deflate() with avail_in == *sourcelen, 
  48. avail_out = *dstlen - 12 and flush == Z_FINISH. 
  49. If it doesn't manage to finish, call it again with
  50. avail_in == 0 and avail_out set to the remaining 12
  51. bytes for it to clean up. 
  52.    Q: Is 12 bytes sufficient?
  53. */
  54. #define STREAM_END_SPACE 12
  55. static DECLARE_MUTEX(deflate_sem);
  56. static DECLARE_MUTEX(inflate_sem);
  57. static void *deflate_workspace;
  58. static void *inflate_workspace;
  59. int __init jffs2_zlib_init(void)
  60. {
  61. deflate_workspace = vmalloc(zlib_deflate_workspacesize());
  62. if (!deflate_workspace) {
  63. printk(KERN_WARNING "Failed to allocate %d bytes for deflate workspacen", zlib_deflate_workspacesize());
  64. return -ENOMEM;
  65. }
  66. D1(printk(KERN_DEBUG "Allocated %d bytes for deflate workspacen", zlib_deflate_workspacesize()));
  67. inflate_workspace = vmalloc(zlib_inflate_workspacesize());
  68. if (!inflate_workspace) {
  69. printk(KERN_WARNING "Failed to allocate %d bytes for inflate workspacen", zlib_inflate_workspacesize());
  70. vfree(deflate_workspace);
  71. return -ENOMEM;
  72. }
  73. D1(printk(KERN_DEBUG "Allocated %d bytes for inflate workspacen", zlib_inflate_workspacesize()));
  74. return 0;
  75. }
  76. void jffs2_zlib_exit(void)
  77. {
  78. vfree(deflate_workspace);
  79. vfree(inflate_workspace);
  80. }
  81. int zlib_compress(unsigned char *data_in, unsigned char *cpage_out, 
  82.    __u32 *sourcelen, __u32 *dstlen)
  83. {
  84. z_stream strm;
  85. int ret;
  86. if (*dstlen <= STREAM_END_SPACE)
  87. return -1;
  88. down(&deflate_sem);
  89. strm.workspace = deflate_workspace;
  90. if (Z_OK != zlib_deflateInit(&strm, 3)) {
  91. printk(KERN_WARNING "deflateInit failedn");
  92. up(&deflate_sem);
  93. return -1;
  94. }
  95. strm.next_in = data_in;
  96. strm.total_in = 0;
  97. strm.next_out = cpage_out;
  98. strm.total_out = 0;
  99. while (strm.total_out < *dstlen - STREAM_END_SPACE && strm.total_in < *sourcelen) {
  100. strm.avail_out = *dstlen - (strm.total_out + STREAM_END_SPACE);
  101. strm.avail_in = min((unsigned)(*sourcelen-strm.total_in), strm.avail_out);
  102. D1(printk(KERN_DEBUG "calling deflate with avail_in %d, avail_out %dn",
  103.   strm.avail_in, strm.avail_out));
  104. ret = zlib_deflate(&strm, Z_PARTIAL_FLUSH);
  105. D1(printk(KERN_DEBUG "deflate returned with avail_in %d, avail_out %d, total_in %ld, total_out %ldn", 
  106.   strm.avail_in, strm.avail_out, strm.total_in, strm.total_out));
  107. if (ret != Z_OK) {
  108. D1(printk(KERN_DEBUG "deflate in loop returned %dn", ret));
  109. zlib_deflateEnd(&strm);
  110. up(&deflate_sem);
  111. return -1;
  112. }
  113. }
  114. strm.avail_out += STREAM_END_SPACE;
  115. strm.avail_in = 0;
  116. ret = zlib_deflate(&strm, Z_FINISH);
  117. zlib_deflateEnd(&strm);
  118. up(&deflate_sem);
  119. if (ret != Z_STREAM_END) {
  120. D1(printk(KERN_DEBUG "final deflate returned %dn", ret));
  121. return -1;
  122. }
  123. D1(printk(KERN_DEBUG "zlib compressed %ld bytes into %ldn",
  124.   strm.total_in, strm.total_out));
  125. if (strm.total_out >= strm.total_in)
  126. return -1;
  127. *dstlen = strm.total_out;
  128. *sourcelen = strm.total_in;
  129. return 0;
  130. }
  131. void zlib_decompress(unsigned char *data_in, unsigned char *cpage_out,
  132.       __u32 srclen, __u32 destlen)
  133. {
  134. z_stream strm;
  135. int ret;
  136. down(&inflate_sem);
  137. strm.workspace = inflate_workspace;
  138. if (Z_OK != zlib_inflateInit(&strm)) {
  139. printk(KERN_WARNING "inflateInit failedn");
  140. up(&inflate_sem);
  141. return;
  142. }
  143. strm.next_in = data_in;
  144. strm.avail_in = srclen;
  145. strm.total_in = 0;
  146. strm.next_out = cpage_out;
  147. strm.avail_out = destlen;
  148. strm.total_out = 0;
  149. while((ret = zlib_inflate(&strm, Z_FINISH)) == Z_OK)
  150. ;
  151. if (ret != Z_STREAM_END) {
  152. printk(KERN_NOTICE "inflate returned %dn", ret);
  153. }
  154. zlib_inflateEnd(&strm);
  155. up(&inflate_sem);
  156. }