Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2001-2007 Red Hat, Inc. |
David Woodhouse | 6088c05 | 2010-08-08 14:15:22 +0100 | [diff] [blame] | 5 | * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * Created by Arjan van de Ven <arjanv@redhat.com> |
| 8 | * |
| 9 | * For licensing information, see the file 'LICENCE' in this directory. |
| 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Joe Perches | 5a52895 | 2012-02-15 15:56:45 -0800 | [diff] [blame] | 13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/string.h> |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/jffs2.h> |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 18 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include "compr.h" |
| 20 | |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 21 | |
| 22 | #define RUBIN_REG_SIZE 16 |
| 23 | #define UPPER_BIT_RUBIN (((long) 1)<<(RUBIN_REG_SIZE-1)) |
| 24 | #define LOWER_BITS_RUBIN ((((long) 1)<<(RUBIN_REG_SIZE-1))-1) |
| 25 | |
| 26 | |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 27 | #define BIT_DIVIDER_MIPS 1043 |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 28 | static int bits_mips[8] = { 277, 249, 290, 267, 229, 341, 212, 241}; |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 29 | |
| 30 | struct pushpull { |
| 31 | unsigned char *buf; |
| 32 | unsigned int buflen; |
| 33 | unsigned int ofs; |
| 34 | unsigned int reserve; |
| 35 | }; |
| 36 | |
Andrew Morton | f6449f4 | 2007-04-26 07:27:04 +0100 | [diff] [blame] | 37 | struct rubin_state { |
| 38 | unsigned long p; |
| 39 | unsigned long q; |
| 40 | unsigned long rec_q; |
| 41 | long bit_number; |
| 42 | struct pushpull pp; |
| 43 | int bit_divider; |
| 44 | int bits[8]; |
| 45 | }; |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 46 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 47 | static inline void init_pushpull(struct pushpull *pp, char *buf, |
| 48 | unsigned buflen, unsigned ofs, |
| 49 | unsigned reserve) |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 50 | { |
| 51 | pp->buf = buf; |
| 52 | pp->buflen = buflen; |
| 53 | pp->ofs = ofs; |
| 54 | pp->reserve = reserve; |
| 55 | } |
| 56 | |
| 57 | static inline int pushbit(struct pushpull *pp, int bit, int use_reserved) |
| 58 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 59 | if (pp->ofs >= pp->buflen - (use_reserved?0:pp->reserve)) |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 60 | return -ENOSPC; |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 61 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 62 | if (bit) |
| 63 | pp->buf[pp->ofs >> 3] |= (1<<(7-(pp->ofs & 7))); |
| 64 | else |
| 65 | pp->buf[pp->ofs >> 3] &= ~(1<<(7-(pp->ofs & 7))); |
| 66 | |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 67 | pp->ofs++; |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static inline int pushedbits(struct pushpull *pp) |
| 73 | { |
| 74 | return pp->ofs; |
| 75 | } |
| 76 | |
| 77 | static inline int pullbit(struct pushpull *pp) |
| 78 | { |
| 79 | int bit; |
| 80 | |
| 81 | bit = (pp->buf[pp->ofs >> 3] >> (7-(pp->ofs & 7))) & 1; |
| 82 | |
| 83 | pp->ofs++; |
| 84 | return bit; |
| 85 | } |
| 86 | |
| 87 | static inline int pulledbits(struct pushpull *pp) |
| 88 | { |
| 89 | return pp->ofs; |
| 90 | } |
| 91 | |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | static void init_rubin(struct rubin_state *rs, int div, int *bits) |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 94 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | int c; |
| 96 | |
| 97 | rs->q = 0; |
| 98 | rs->p = (long) (2 * UPPER_BIT_RUBIN); |
| 99 | rs->bit_number = (long) 0; |
| 100 | rs->bit_divider = div; |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 101 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | for (c=0; c<8; c++) |
| 103 | rs->bits[c] = bits[c]; |
| 104 | } |
| 105 | |
| 106 | |
| 107 | static int encode(struct rubin_state *rs, long A, long B, int symbol) |
| 108 | { |
| 109 | |
| 110 | long i0, i1; |
| 111 | int ret; |
| 112 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 113 | while ((rs->q >= UPPER_BIT_RUBIN) || |
| 114 | ((rs->p + rs->q) <= UPPER_BIT_RUBIN)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | rs->bit_number++; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | ret = pushbit(&rs->pp, (rs->q & UPPER_BIT_RUBIN) ? 1 : 0, 0); |
| 118 | if (ret) |
| 119 | return ret; |
| 120 | rs->q &= LOWER_BITS_RUBIN; |
| 121 | rs->q <<= 1; |
| 122 | rs->p <<= 1; |
| 123 | } |
| 124 | i0 = A * rs->p / (A + B); |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 125 | if (i0 <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | i0 = 1; |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 127 | |
| 128 | if (i0 >= rs->p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | i0 = rs->p - 1; |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | i1 = rs->p - i0; |
| 132 | |
| 133 | if (symbol == 0) |
| 134 | rs->p = i0; |
| 135 | else { |
| 136 | rs->p = i1; |
| 137 | rs->q += i0; |
| 138 | } |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | |
| 143 | static void end_rubin(struct rubin_state *rs) |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 144 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | int i; |
| 147 | |
| 148 | for (i = 0; i < RUBIN_REG_SIZE; i++) { |
| 149 | pushbit(&rs->pp, (UPPER_BIT_RUBIN & rs->q) ? 1 : 0, 1); |
| 150 | rs->q &= LOWER_BITS_RUBIN; |
| 151 | rs->q <<= 1; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | |
| 156 | static void init_decode(struct rubin_state *rs, int div, int *bits) |
| 157 | { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 158 | init_rubin(rs, div, bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | /* behalve lower */ |
| 161 | rs->rec_q = 0; |
| 162 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 163 | for (rs->bit_number = 0; rs->bit_number++ < RUBIN_REG_SIZE; |
| 164 | rs->rec_q = rs->rec_q * 2 + (long) (pullbit(&rs->pp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | ; |
| 166 | } |
| 167 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 168 | static void __do_decode(struct rubin_state *rs, unsigned long p, |
| 169 | unsigned long q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
| 171 | register unsigned long lower_bits_rubin = LOWER_BITS_RUBIN; |
| 172 | unsigned long rec_q; |
| 173 | int c, bits = 0; |
| 174 | |
| 175 | /* |
| 176 | * First, work out how many bits we need from the input stream. |
| 177 | * Note that we have already done the initial check on this |
| 178 | * loop prior to calling this function. |
| 179 | */ |
| 180 | do { |
| 181 | bits++; |
| 182 | q &= lower_bits_rubin; |
| 183 | q <<= 1; |
| 184 | p <<= 1; |
| 185 | } while ((q >= UPPER_BIT_RUBIN) || ((p + q) <= UPPER_BIT_RUBIN)); |
| 186 | |
| 187 | rs->p = p; |
| 188 | rs->q = q; |
| 189 | |
| 190 | rs->bit_number += bits; |
| 191 | |
| 192 | /* |
| 193 | * Now get the bits. We really want this to be "get n bits". |
| 194 | */ |
| 195 | rec_q = rs->rec_q; |
| 196 | do { |
| 197 | c = pullbit(&rs->pp); |
| 198 | rec_q &= lower_bits_rubin; |
| 199 | rec_q <<= 1; |
| 200 | rec_q += c; |
| 201 | } while (--bits); |
| 202 | rs->rec_q = rec_q; |
| 203 | } |
| 204 | |
| 205 | static int decode(struct rubin_state *rs, long A, long B) |
| 206 | { |
| 207 | unsigned long p = rs->p, q = rs->q; |
| 208 | long i0, threshold; |
| 209 | int symbol; |
| 210 | |
| 211 | if (q >= UPPER_BIT_RUBIN || ((p + q) <= UPPER_BIT_RUBIN)) |
| 212 | __do_decode(rs, p, q); |
| 213 | |
| 214 | i0 = A * rs->p / (A + B); |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 215 | if (i0 <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | i0 = 1; |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 217 | |
| 218 | if (i0 >= rs->p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | i0 = rs->p - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | threshold = rs->q + i0; |
| 222 | symbol = rs->rec_q >= threshold; |
| 223 | if (rs->rec_q >= threshold) { |
| 224 | rs->q += i0; |
| 225 | i0 = rs->p - i0; |
| 226 | } |
| 227 | |
| 228 | rs->p = i0; |
| 229 | |
| 230 | return symbol; |
| 231 | } |
| 232 | |
| 233 | |
| 234 | |
| 235 | static int out_byte(struct rubin_state *rs, unsigned char byte) |
| 236 | { |
| 237 | int i, ret; |
| 238 | struct rubin_state rs_copy; |
| 239 | rs_copy = *rs; |
| 240 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 241 | for (i=0; i<8; i++) { |
| 242 | ret = encode(rs, rs->bit_divider-rs->bits[i], |
| 243 | rs->bits[i], byte & 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | if (ret) { |
| 245 | /* Failed. Restore old state */ |
| 246 | *rs = rs_copy; |
| 247 | return ret; |
| 248 | } |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 249 | byte >>= 1 ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | } |
| 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | static int in_byte(struct rubin_state *rs) |
| 255 | { |
| 256 | int i, result = 0, bit_divider = rs->bit_divider; |
| 257 | |
| 258 | for (i = 0; i < 8; i++) |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 259 | result |= decode(rs, bit_divider - rs->bits[i], |
| 260 | rs->bits[i]) << i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | return result; |
| 263 | } |
| 264 | |
| 265 | |
| 266 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 267 | static int rubin_do_compress(int bit_divider, int *bits, unsigned char *data_in, |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 268 | unsigned char *cpage_out, uint32_t *sourcelen, |
| 269 | uint32_t *dstlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
| 271 | int outpos = 0; |
| 272 | int pos=0; |
| 273 | struct rubin_state rs; |
| 274 | |
| 275 | init_pushpull(&rs.pp, cpage_out, *dstlen * 8, 0, 32); |
| 276 | |
| 277 | init_rubin(&rs, bit_divider, bits); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | while (pos < (*sourcelen) && !out_byte(&rs, data_in[pos])) |
| 280 | pos++; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | end_rubin(&rs); |
| 283 | |
| 284 | if (outpos > pos) { |
| 285 | /* We failed */ |
| 286 | return -1; |
| 287 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 288 | |
| 289 | /* Tell the caller how much we managed to compress, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | * and how much space it took */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | outpos = (pushedbits(&rs.pp)+7)/8; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | if (outpos >= pos) |
| 295 | return -1; /* We didn't actually compress */ |
| 296 | *sourcelen = pos; |
| 297 | *dstlen = outpos; |
| 298 | return 0; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 299 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | #if 0 |
| 301 | /* _compress returns the compressed size, -1 if bigger */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 302 | int jffs2_rubinmips_compress(unsigned char *data_in, unsigned char *cpage_out, |
Mike Frysinger | 088bd45 | 2010-09-22 22:52:33 -0400 | [diff] [blame] | 303 | uint32_t *sourcelen, uint32_t *dstlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 305 | return rubin_do_compress(BIT_DIVIDER_MIPS, bits_mips, data_in, |
| 306 | cpage_out, sourcelen, dstlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | #endif |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 309 | static int jffs2_dynrubin_compress(unsigned char *data_in, |
| 310 | unsigned char *cpage_out, |
Mike Frysinger | 088bd45 | 2010-09-22 22:52:33 -0400 | [diff] [blame] | 311 | uint32_t *sourcelen, uint32_t *dstlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
| 313 | int bits[8]; |
| 314 | unsigned char histo[256]; |
| 315 | int i; |
| 316 | int ret; |
| 317 | uint32_t mysrclen, mydstlen; |
| 318 | |
| 319 | mysrclen = *sourcelen; |
| 320 | mydstlen = *dstlen - 8; |
| 321 | |
| 322 | if (*dstlen <= 12) |
| 323 | return -1; |
| 324 | |
| 325 | memset(histo, 0, 256); |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 326 | for (i=0; i<mysrclen; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | histo[data_in[i]]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | memset(bits, 0, sizeof(int)*8); |
| 329 | for (i=0; i<256; i++) { |
| 330 | if (i&128) |
| 331 | bits[7] += histo[i]; |
| 332 | if (i&64) |
| 333 | bits[6] += histo[i]; |
| 334 | if (i&32) |
| 335 | bits[5] += histo[i]; |
| 336 | if (i&16) |
| 337 | bits[4] += histo[i]; |
| 338 | if (i&8) |
| 339 | bits[3] += histo[i]; |
| 340 | if (i&4) |
| 341 | bits[2] += histo[i]; |
| 342 | if (i&2) |
| 343 | bits[1] += histo[i]; |
| 344 | if (i&1) |
| 345 | bits[0] += histo[i]; |
| 346 | } |
| 347 | |
| 348 | for (i=0; i<8; i++) { |
| 349 | bits[i] = (bits[i] * 256) / mysrclen; |
| 350 | if (!bits[i]) bits[i] = 1; |
| 351 | if (bits[i] > 255) bits[i] = 255; |
| 352 | cpage_out[i] = bits[i]; |
| 353 | } |
| 354 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 355 | ret = rubin_do_compress(256, bits, data_in, cpage_out+8, &mysrclen, |
| 356 | &mydstlen); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 357 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return ret; |
| 359 | |
| 360 | /* Add back the 8 bytes we took for the probabilities */ |
| 361 | mydstlen += 8; |
| 362 | |
| 363 | if (mysrclen <= mydstlen) { |
| 364 | /* We compressed */ |
| 365 | return -1; |
| 366 | } |
| 367 | |
| 368 | *sourcelen = mysrclen; |
| 369 | *dstlen = mydstlen; |
| 370 | return 0; |
| 371 | } |
| 372 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 373 | static void rubin_do_decompress(int bit_divider, int *bits, |
| 374 | unsigned char *cdata_in, |
| 375 | unsigned char *page_out, uint32_t srclen, |
| 376 | uint32_t destlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | { |
| 378 | int outpos = 0; |
| 379 | struct rubin_state rs; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | init_pushpull(&rs.pp, cdata_in, srclen, 0, 0); |
| 382 | init_decode(&rs, bit_divider, bits); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 383 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 384 | while (outpos < destlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | page_out[outpos++] = in_byte(&rs); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 386 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
| 388 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 389 | static int jffs2_rubinmips_decompress(unsigned char *data_in, |
| 390 | unsigned char *cpage_out, |
Mike Frysinger | 088bd45 | 2010-09-22 22:52:33 -0400 | [diff] [blame] | 391 | uint32_t sourcelen, uint32_t dstlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 393 | rubin_do_decompress(BIT_DIVIDER_MIPS, bits_mips, data_in, |
| 394 | cpage_out, sourcelen, dstlen); |
David Woodhouse | ef53cb0 | 2007-07-10 10:01:22 +0100 | [diff] [blame] | 395 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 398 | static int jffs2_dynrubin_decompress(unsigned char *data_in, |
| 399 | unsigned char *cpage_out, |
Mike Frysinger | 088bd45 | 2010-09-22 22:52:33 -0400 | [diff] [blame] | 400 | uint32_t sourcelen, uint32_t dstlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { |
| 402 | int bits[8]; |
| 403 | int c; |
| 404 | |
| 405 | for (c=0; c<8; c++) |
| 406 | bits[c] = data_in[c]; |
| 407 | |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 408 | rubin_do_decompress(256, bits, data_in+8, cpage_out, sourcelen-8, |
| 409 | dstlen); |
David Woodhouse | ef53cb0 | 2007-07-10 10:01:22 +0100 | [diff] [blame] | 410 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | static struct jffs2_compressor jffs2_rubinmips_comp = { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 414 | .priority = JFFS2_RUBINMIPS_PRIORITY, |
| 415 | .name = "rubinmips", |
| 416 | .compr = JFFS2_COMPR_DYNRUBIN, |
| 417 | .compress = NULL, /*&jffs2_rubinmips_compress,*/ |
| 418 | .decompress = &jffs2_rubinmips_decompress, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | #ifdef JFFS2_RUBINMIPS_DISABLED |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 420 | .disabled = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | #else |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 422 | .disabled = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | #endif |
| 424 | }; |
| 425 | |
| 426 | int jffs2_rubinmips_init(void) |
| 427 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 428 | return jffs2_register_compressor(&jffs2_rubinmips_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | void jffs2_rubinmips_exit(void) |
| 432 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 433 | jffs2_unregister_compressor(&jffs2_rubinmips_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | static struct jffs2_compressor jffs2_dynrubin_comp = { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 437 | .priority = JFFS2_DYNRUBIN_PRIORITY, |
| 438 | .name = "dynrubin", |
| 439 | .compr = JFFS2_COMPR_RUBINMIPS, |
| 440 | .compress = jffs2_dynrubin_compress, |
| 441 | .decompress = &jffs2_dynrubin_decompress, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | #ifdef JFFS2_DYNRUBIN_DISABLED |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 443 | .disabled = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | #else |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 445 | .disabled = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | #endif |
| 447 | }; |
| 448 | |
| 449 | int jffs2_dynrubin_init(void) |
| 450 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 451 | return jffs2_register_compressor(&jffs2_dynrubin_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | void jffs2_dynrubin_exit(void) |
| 455 | { |
David Woodhouse | 0bc4382 | 2008-12-10 15:34:49 +0000 | [diff] [blame] | 456 | jffs2_unregister_compressor(&jffs2_dynrubin_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |