Blame view

fs/jffs2/compr_rubin.c 3.25 KB
d41ce506b   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  /*
   * JFFS2 -- Journalling Flash File System, Version 2.
   *
   * Copyright (C) 2001 Red Hat, Inc.
   *
   * Created by Arjan van de Ven <arjanv@redhat.com>
   *
   * Heavily modified by Russ Dill <Russ.Dill@asu.edu> in an attempt at
   * a little more speed.
   *
   * The original JFFS, from which the design for JFFS2 was derived,
   * was designed and implemented by Axis Communications AB.
   *
   * The contents of this file are subject to the Red Hat eCos Public
   * License Version 1.1 (the "Licence"); you may not use this file
   * except in compliance with the Licence.  You may obtain a copy of
   * the Licence at http://www.redhat.com/
   *
   * Software distributed under the Licence is distributed on an "AS IS"
   * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
   * See the Licence for the specific language governing rights and
   * limitations under the Licence.
   *
   * The Original Code is JFFS2 - Journalling Flash File System, version 2
   *
   * Alternatively, the contents of this file may be used under the
   * terms of the GNU General Public License version 2 (the "GPL"), in
   * which case the provisions of the GPL are applicable instead of the
   * above.  If you wish to allow the use of your version of this file
   * only under the terms of the GPL and not to allow others to use your
   * version of this file under the RHEPL, indicate your decision by
   * deleting the provisions above and replace them with the notice and
   * other provisions required by the GPL.  If you do not delete the
   * provisions above, a recipient may use your version of this file
   * under either the RHEPL or the GPL.
   *
   * $Id: compr_rubin.c,v 1.2 2002/01/24 22:58:42 rfeany Exp $
   *
   */
  
  #include <config.h>
  #include <jffs2/jffs2.h>
  #include <jffs2/compr_rubin.h>
  
  
  void rubin_do_decompress(unsigned char *bits, unsigned char *in,
  			 unsigned char *page_out, __u32 destlen)
  {
  	register char *curr = (char *)page_out;
  	char *end = (char *)(page_out + destlen);
  	register unsigned long temp;
  	register unsigned long result;
  	register unsigned long p;
  	register unsigned long q;
  	register unsigned long rec_q;
  	register unsigned long bit;
  	register long i0;
  	unsigned long i;
  
  	/* init_pushpull */
  	temp = *(u32 *) in;
  	bit = 16;
  
  	/* init_rubin */
  	q = 0;
  	p = (long) (2 * UPPER_BIT_RUBIN);
  
  	/* init_decode */
  	rec_q = (in[0] << 8) | in[1];
  
  	while (curr < end) {
  		/* in byte */
  
  		result = 0;
  		for (i = 0; i < 8; i++) {
  			/* decode */
  
  			while ((q & UPPER_BIT_RUBIN) || ((p + q) <= UPPER_BIT_RUBIN)) {
  				q &= ~UPPER_BIT_RUBIN;
  				q <<= 1;
  				p <<= 1;
  				rec_q &= ~UPPER_BIT_RUBIN;
  				rec_q <<= 1;
  				rec_q |= (temp >> (bit++ ^ 7)) & 1;
  				if (bit > 31) {
  					u32 *p = (u32 *)in;
  					bit = 0;
  					temp = *(++p);
  					in = (unsigned char *)p;
  				}
  			}
  			i0 =  (bits[i] * p) >> 8;
  
  			if (i0 <= 0) i0 = 1;
  			/* if it fails, it fails, we have our crc
  			if (i0 >= p) i0 = p - 1; */
  
  			result >>= 1;
  			if (rec_q < q + i0) {
  				/* result |= 0x00; */
  				p = i0;
  			} else {
  				result |= 0x80;
  				p -= i0;
  				q += i0;
  			}
  		}
  		*(curr++) = result;
  	}
  }
  
  void dynrubin_decompress(unsigned char *data_in, unsigned char *cpage_out,
  		   unsigned long sourcelen, unsigned long dstlen)
  {
  	unsigned char bits[8];
  	int c;
  
  	for (c=0; c<8; c++)
  		bits[c] = (256 - data_in[c]);
  
  	rubin_do_decompress(bits, data_in+8, cpage_out, dstlen);
  }