Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
compress.c
Go to the documentation of this file.
1 /*
2  * This file is part of UBIFS.
3  *
4  * Copyright (C) 2006-2008 Nokia Corporation.
5  * Copyright (C) 2006, 2007 University of Szeged, Hungary
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License version 2 as published by
9  * the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program; if not, write to the Free Software Foundation, Inc., 51
18  * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19  *
20  * Authors: Adrian Hunter
21  * Artem Bityutskiy (Битюцкий Артём)
22  * Zoltan Sogor
23  */
24 
25 /*
26  * This file provides a single place to access to compression and
27  * decompression.
28  */
29 
30 #include <linux/crypto.h>
31 #include "ubifs.h"
32 
33 /* Fake description object for the "none" compressor */
34 static struct ubifs_compressor none_compr = {
35  .compr_type = UBIFS_COMPR_NONE,
36  .name = "none",
37  .capi_name = "",
38 };
39 
40 #ifdef CONFIG_UBIFS_FS_LZO
41 static DEFINE_MUTEX(lzo_mutex);
42 
43 static struct ubifs_compressor lzo_compr = {
44  .compr_type = UBIFS_COMPR_LZO,
45  .comp_mutex = &lzo_mutex,
46  .name = "lzo",
47  .capi_name = "lzo",
48 };
49 #else
50 static struct ubifs_compressor lzo_compr = {
52  .name = "lzo",
53 };
54 #endif
55 
56 #ifdef CONFIG_UBIFS_FS_ZLIB
57 static DEFINE_MUTEX(deflate_mutex);
58 static DEFINE_MUTEX(inflate_mutex);
59 
60 static struct ubifs_compressor zlib_compr = {
61  .compr_type = UBIFS_COMPR_ZLIB,
62  .comp_mutex = &deflate_mutex,
63  .decomp_mutex = &inflate_mutex,
64  .name = "zlib",
65  .capi_name = "deflate",
66 };
67 #else
68 static struct ubifs_compressor zlib_compr = {
70  .name = "zlib",
71 };
72 #endif
73 
74 /* All UBIFS compressors */
76 
95 void ubifs_compress(const void *in_buf, int in_len, void *out_buf, int *out_len,
96  int *compr_type)
97 {
98  int err;
99  struct ubifs_compressor *compr = ubifs_compressors[*compr_type];
100 
101  if (*compr_type == UBIFS_COMPR_NONE)
102  goto no_compr;
103 
104  /* If the input data is small, do not even try to compress it */
105  if (in_len < UBIFS_MIN_COMPR_LEN)
106  goto no_compr;
107 
108  if (compr->comp_mutex)
109  mutex_lock(compr->comp_mutex);
110  err = crypto_comp_compress(compr->cc, in_buf, in_len, out_buf,
111  (unsigned int *)out_len);
112  if (compr->comp_mutex)
113  mutex_unlock(compr->comp_mutex);
114  if (unlikely(err)) {
115  ubifs_warn("cannot compress %d bytes, compressor %s, error %d, leave data uncompressed",
116  in_len, compr->name, err);
117  goto no_compr;
118  }
119 
120  /*
121  * If the data compressed only slightly, it is better to leave it
122  * uncompressed to improve read speed.
123  */
124  if (in_len - *out_len < UBIFS_MIN_COMPRESS_DIFF)
125  goto no_compr;
126 
127  return;
128 
129 no_compr:
130  memcpy(out_buf, in_buf, in_len);
131  *out_len = in_len;
132  *compr_type = UBIFS_COMPR_NONE;
133 }
134 
147 int ubifs_decompress(const void *in_buf, int in_len, void *out_buf,
148  int *out_len, int compr_type)
149 {
150  int err;
151  struct ubifs_compressor *compr;
152 
153  if (unlikely(compr_type < 0 || compr_type >= UBIFS_COMPR_TYPES_CNT)) {
154  ubifs_err("invalid compression type %d", compr_type);
155  return -EINVAL;
156  }
157 
158  compr = ubifs_compressors[compr_type];
159 
160  if (unlikely(!compr->capi_name)) {
161  ubifs_err("%s compression is not compiled in", compr->name);
162  return -EINVAL;
163  }
164 
165  if (compr_type == UBIFS_COMPR_NONE) {
166  memcpy(out_buf, in_buf, in_len);
167  *out_len = in_len;
168  return 0;
169  }
170 
171  if (compr->decomp_mutex)
172  mutex_lock(compr->decomp_mutex);
173  err = crypto_comp_decompress(compr->cc, in_buf, in_len, out_buf,
174  (unsigned int *)out_len);
175  if (compr->decomp_mutex)
176  mutex_unlock(compr->decomp_mutex);
177  if (err)
178  ubifs_err("cannot decompress %d bytes, compressor %s, error %d",
179  in_len, compr->name, err);
180 
181  return err;
182 }
183 
191 static int __init compr_init(struct ubifs_compressor *compr)
192 {
193  if (compr->capi_name) {
194  compr->cc = crypto_alloc_comp(compr->capi_name, 0, 0);
195  if (IS_ERR(compr->cc)) {
196  ubifs_err("cannot initialize compressor %s, error %ld",
197  compr->name, PTR_ERR(compr->cc));
198  return PTR_ERR(compr->cc);
199  }
200  }
201 
202  ubifs_compressors[compr->compr_type] = compr;
203  return 0;
204 }
205 
210 static void compr_exit(struct ubifs_compressor *compr)
211 {
212  if (compr->capi_name)
213  crypto_free_comp(compr->cc);
214  return;
215 }
216 
224 {
225  int err;
226 
227  err = compr_init(&lzo_compr);
228  if (err)
229  return err;
230 
231  err = compr_init(&zlib_compr);
232  if (err)
233  goto out_lzo;
234 
235  ubifs_compressors[UBIFS_COMPR_NONE] = &none_compr;
236  return 0;
237 
238 out_lzo:
239  compr_exit(&lzo_compr);
240  return err;
241 }
242 
247 {
248  compr_exit(&lzo_compr);
249  compr_exit(&zlib_compr);
250 }