2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2001-2007 Red Hat, Inc.
5 * Created by Arjan van de Ven <arjanv@redhat.com>
7 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
8 * University of Szeged, Hungary
10 * For licensing information, see the file 'LICENCE' in this directory.
16 static DEFINE_SPINLOCK(jffs2_compressor_list_lock
);
18 /* Available compressors are on this list */
19 static LIST_HEAD(jffs2_compressor_list
);
21 /* Actual compression mode */
22 static int jffs2_compression_mode
= JFFS2_COMPR_MODE_PRIORITY
;
24 /* Statistics for blocks stored without compression */
25 static uint32_t none_stat_compr_blocks
=0,none_stat_decompr_blocks
=0,none_stat_compr_size
=0;
29 * Return 1 to use this compression
31 static int jffs2_is_best_compression(struct jffs2_compressor
*this,
32 struct jffs2_compressor
*best
, uint32_t size
, uint32_t bestsize
)
34 switch (jffs2_compression_mode
) {
35 case JFFS2_COMPR_MODE_SIZE
:
39 case JFFS2_COMPR_MODE_FAVOURLZO
:
40 if ((this->compr
== JFFS2_COMPR_LZO
) && (bestsize
> size
))
42 if ((best
->compr
!= JFFS2_COMPR_LZO
) && (bestsize
> size
))
44 if ((this->compr
== JFFS2_COMPR_LZO
) && (bestsize
> (size
* FAVOUR_LZO_PERCENT
/ 100)))
46 if ((bestsize
* FAVOUR_LZO_PERCENT
/ 100) > size
)
51 /* Shouldn't happen */
56 * @data_in: Pointer to uncompressed data
57 * @cpage_out: Pointer to returned pointer to buffer for compressed data
58 * @datalen: On entry, holds the amount of data available for compression.
59 * On exit, expected to hold the amount of data actually compressed.
60 * @cdatalen: On entry, holds the amount of space available for compressed
61 * data. On exit, expected to hold the actual size of the compressed
64 * Returns: Lower byte to be stored with data indicating compression type used.
65 * Zero is used to show that the data could not be compressed - the
66 * compressed version was actually larger than the original.
67 * Upper byte will be used later. (soon)
69 * If the cdata buffer isn't large enough to hold all the uncompressed data,
70 * jffs2_compress should compress as much as will fit, and should set
71 * *datalen accordingly to show the amount of data which were compressed.
73 uint16_t jffs2_compress(struct jffs2_sb_info
*c
, struct jffs2_inode_info
*f
,
74 unsigned char *data_in
, unsigned char **cpage_out
,
75 uint32_t *datalen
, uint32_t *cdatalen
)
77 int ret
= JFFS2_COMPR_NONE
;
79 struct jffs2_compressor
*this, *best
=NULL
;
80 unsigned char *output_buf
= NULL
, *tmp_buf
;
81 uint32_t orig_slen
, orig_dlen
;
82 uint32_t best_slen
=0, best_dlen
=0;
84 switch (jffs2_compression_mode
) {
85 case JFFS2_COMPR_MODE_NONE
:
87 case JFFS2_COMPR_MODE_PRIORITY
:
88 output_buf
= kmalloc(*cdatalen
,GFP_KERNEL
);
90 printk(KERN_WARNING
"JFFS2: No memory for compressor allocation. Compression failed.\n");
94 orig_dlen
= *cdatalen
;
95 spin_lock(&jffs2_compressor_list_lock
);
96 list_for_each_entry(this, &jffs2_compressor_list
, list
) {
97 /* Skip decompress-only backwards-compatibility and disabled modules */
98 if ((!this->compress
)||(this->disabled
))
102 spin_unlock(&jffs2_compressor_list_lock
);
103 *datalen
= orig_slen
;
104 *cdatalen
= orig_dlen
;
105 compr_ret
= this->compress(data_in
, output_buf
, datalen
, cdatalen
, NULL
);
106 spin_lock(&jffs2_compressor_list_lock
);
110 this->stat_compr_blocks
++;
111 this->stat_compr_orig_size
+= *datalen
;
112 this->stat_compr_new_size
+= *cdatalen
;
116 spin_unlock(&jffs2_compressor_list_lock
);
117 if (ret
== JFFS2_COMPR_NONE
)
120 case JFFS2_COMPR_MODE_SIZE
:
121 case JFFS2_COMPR_MODE_FAVOURLZO
:
122 orig_slen
= *datalen
;
123 orig_dlen
= *cdatalen
;
124 spin_lock(&jffs2_compressor_list_lock
);
125 list_for_each_entry(this, &jffs2_compressor_list
, list
) {
126 /* Skip decompress-only backwards-compatibility and disabled modules */
127 if ((!this->compress
)||(this->disabled
))
129 /* Allocating memory for output buffer if necessary */
130 if ((this->compr_buf_size
< orig_slen
) && (this->compr_buf
)) {
131 spin_unlock(&jffs2_compressor_list_lock
);
132 kfree(this->compr_buf
);
133 spin_lock(&jffs2_compressor_list_lock
);
134 this->compr_buf_size
=0;
135 this->compr_buf
=NULL
;
137 if (!this->compr_buf
) {
138 spin_unlock(&jffs2_compressor_list_lock
);
139 tmp_buf
= kmalloc(orig_slen
, GFP_KERNEL
);
140 spin_lock(&jffs2_compressor_list_lock
);
142 printk(KERN_WARNING
"JFFS2: No memory for compressor allocation. (%d bytes)\n", orig_slen
);
146 this->compr_buf
= tmp_buf
;
147 this->compr_buf_size
= orig_slen
;
151 spin_unlock(&jffs2_compressor_list_lock
);
152 *datalen
= orig_slen
;
153 *cdatalen
= orig_dlen
;
154 compr_ret
= this->compress(data_in
, this->compr_buf
, datalen
, cdatalen
, NULL
);
155 spin_lock(&jffs2_compressor_list_lock
);
158 if (((!best_dlen
) || jffs2_is_best_compression(this, best
, *cdatalen
, best_dlen
))
159 && (*cdatalen
< *datalen
)) {
160 best_dlen
= *cdatalen
;
161 best_slen
= *datalen
;
167 *cdatalen
= best_dlen
;
168 *datalen
= best_slen
;
169 output_buf
= best
->compr_buf
;
170 best
->compr_buf
= NULL
;
171 best
->compr_buf_size
= 0;
172 best
->stat_compr_blocks
++;
173 best
->stat_compr_orig_size
+= best_slen
;
174 best
->stat_compr_new_size
+= best_dlen
;
177 spin_unlock(&jffs2_compressor_list_lock
);
180 printk(KERN_ERR
"JFFS2: unknow compression mode.\n");
183 if (ret
== JFFS2_COMPR_NONE
) {
184 *cpage_out
= data_in
;
185 *datalen
= *cdatalen
;
186 none_stat_compr_blocks
++;
187 none_stat_compr_size
+= *datalen
;
190 *cpage_out
= output_buf
;
195 int jffs2_decompress(struct jffs2_sb_info
*c
, struct jffs2_inode_info
*f
,
196 uint16_t comprtype
, unsigned char *cdata_in
,
197 unsigned char *data_out
, uint32_t cdatalen
, uint32_t datalen
)
199 struct jffs2_compressor
*this;
202 /* Older code had a bug where it would write non-zero 'usercompr'
203 fields. Deal with it. */
204 if ((comprtype
& 0xff) <= JFFS2_COMPR_ZLIB
)
207 switch (comprtype
& 0xff) {
208 case JFFS2_COMPR_NONE
:
209 /* This should be special-cased elsewhere, but we might as well deal with it */
210 memcpy(data_out
, cdata_in
, datalen
);
211 none_stat_decompr_blocks
++;
213 case JFFS2_COMPR_ZERO
:
214 memset(data_out
, 0, datalen
);
217 spin_lock(&jffs2_compressor_list_lock
);
218 list_for_each_entry(this, &jffs2_compressor_list
, list
) {
219 if (comprtype
== this->compr
) {
221 spin_unlock(&jffs2_compressor_list_lock
);
222 ret
= this->decompress(cdata_in
, data_out
, cdatalen
, datalen
, NULL
);
223 spin_lock(&jffs2_compressor_list_lock
);
225 printk(KERN_WARNING
"Decompressor \"%s\" returned %d\n", this->name
, ret
);
228 this->stat_decompr_blocks
++;
231 spin_unlock(&jffs2_compressor_list_lock
);
235 printk(KERN_WARNING
"JFFS2 compression type 0x%02x not available.\n", comprtype
);
236 spin_unlock(&jffs2_compressor_list_lock
);
242 int jffs2_register_compressor(struct jffs2_compressor
*comp
)
244 struct jffs2_compressor
*this;
247 printk(KERN_WARNING
"NULL compressor name at registering JFFS2 compressor. Failed.\n");
250 comp
->compr_buf_size
=0;
251 comp
->compr_buf
=NULL
;
253 comp
->stat_compr_orig_size
=0;
254 comp
->stat_compr_new_size
=0;
255 comp
->stat_compr_blocks
=0;
256 comp
->stat_decompr_blocks
=0;
257 D1(printk(KERN_DEBUG
"Registering JFFS2 compressor \"%s\"\n", comp
->name
));
259 spin_lock(&jffs2_compressor_list_lock
);
261 list_for_each_entry(this, &jffs2_compressor_list
, list
) {
262 if (this->priority
< comp
->priority
) {
263 list_add(&comp
->list
, this->list
.prev
);
267 list_add_tail(&comp
->list
, &jffs2_compressor_list
);
269 D2(list_for_each_entry(this, &jffs2_compressor_list
, list
) {
270 printk(KERN_DEBUG
"Compressor \"%s\", prio %d\n", this->name
, this->priority
);
273 spin_unlock(&jffs2_compressor_list_lock
);
278 int jffs2_unregister_compressor(struct jffs2_compressor
*comp
)
280 D2(struct jffs2_compressor
*this;)
282 D1(printk(KERN_DEBUG
"Unregistering JFFS2 compressor \"%s\"\n", comp
->name
));
284 spin_lock(&jffs2_compressor_list_lock
);
286 if (comp
->usecount
) {
287 spin_unlock(&jffs2_compressor_list_lock
);
288 printk(KERN_WARNING
"JFFS2: Compressor modul is in use. Unregister failed.\n");
291 list_del(&comp
->list
);
293 D2(list_for_each_entry(this, &jffs2_compressor_list
, list
) {
294 printk(KERN_DEBUG
"Compressor \"%s\", prio %d\n", this->name
, this->priority
);
296 spin_unlock(&jffs2_compressor_list_lock
);
300 void jffs2_free_comprbuf(unsigned char *comprbuf
, unsigned char *orig
)
302 if (orig
!= comprbuf
)
306 int __init
jffs2_compressors_init(void)
308 /* Registering compressors */
309 #ifdef CONFIG_JFFS2_ZLIB
312 #ifdef CONFIG_JFFS2_RTIME
315 #ifdef CONFIG_JFFS2_RUBIN
316 jffs2_rubinmips_init();
317 jffs2_dynrubin_init();
319 #ifdef CONFIG_JFFS2_LZO
322 /* Setting default compression mode */
323 #ifdef CONFIG_JFFS2_CMODE_NONE
324 jffs2_compression_mode
= JFFS2_COMPR_MODE_NONE
;
325 D1(printk(KERN_INFO
"JFFS2: default compression mode: none\n");)
327 #ifdef CONFIG_JFFS2_CMODE_SIZE
328 jffs2_compression_mode
= JFFS2_COMPR_MODE_SIZE
;
329 D1(printk(KERN_INFO
"JFFS2: default compression mode: size\n");)
331 #ifdef CONFIG_JFFS2_CMODE_FAVOURLZO
332 jffs2_compression_mode
= JFFS2_COMPR_MODE_FAVOURLZO
;
333 D1(printk(KERN_INFO
"JFFS2: default compression mode: favourlzo\n");)
335 D1(printk(KERN_INFO
"JFFS2: default compression mode: priority\n");)
342 int jffs2_compressors_exit(void)
344 /* Unregistering compressors */
345 #ifdef CONFIG_JFFS2_LZO
348 #ifdef CONFIG_JFFS2_RUBIN
349 jffs2_dynrubin_exit();
350 jffs2_rubinmips_exit();
352 #ifdef CONFIG_JFFS2_RTIME
355 #ifdef CONFIG_JFFS2_ZLIB