ifupdown: save some 100+ bytes of code in addstr()
[oweals/busybox.git] / archival / libunarchive / decompress_uncompress.c
1 /* vi: set sw=4 ts=4: */
2 #include "libbb.h"
3
4 /* uncompress for busybox -- (c) 2002 Robert Griebl
5  *
6  * based on the original compress42.c source
7  * (see disclaimer below)
8  */
9
10
11 /* (N)compress42.c - File compression ala IEEE Computer, Mar 1992.
12  *
13  * Authors:
14  *   Spencer W. Thomas   (decvax!harpo!utah-cs!utah-gr!thomas)
15  *   Jim McKie           (decvax!mcvax!jim)
16  *   Steve Davies        (decvax!vax135!petsd!peora!srd)
17  *   Ken Turkowski       (decvax!decwrl!turtlevax!ken)
18  *   James A. Woods      (decvax!ihnp4!ames!jaw)
19  *   Joe Orost           (decvax!vax135!petsd!joe)
20  *   Dave Mack           (csu@alembic.acs.com)
21  *   Peter Jannesen, Network Communication Systems
22  *                       (peter@ncs.nl)
23  *
24  * marc@suse.de : a small security fix for a buffer overflow
25  *
26  * [... History snipped ...]
27  *
28  */
29 #include <stdio.h>
30 #include <string.h>
31 #include <unistd.h>
32
33 /* Default input buffer size */
34 #define IBUFSIZ 2048
35
36 /* Default output buffer size */
37 #define OBUFSIZ 2048
38
39 /* Defines for third byte of header */
40 #define MAGIC_1         (char_type)'\037'       /* First byte of compressed file               */
41 #define MAGIC_2         (char_type)'\235'       /* Second byte of compressed file              */
42 #define BIT_MASK        0x1f    /* Mask for 'number of compresssion bits'       */
43                                                         /* Masks 0x20 and 0x40 are free.                */
44                                                         /* I think 0x20 should mean that there is       */
45                                                         /* a fourth header byte (for expansion).        */
46 #define BLOCK_MODE      0x80    /* Block compresssion if table is full and      */
47                         /* compression rate is dropping flush tables    */
48                         /* the next two codes should not be changed lightly, as they must not   */
49                         /* lie within the contiguous general code space.                        */
50 #define FIRST   257             /* first free entry                             */
51 #define CLEAR   256             /* table clear output code                      */
52
53 #define INIT_BITS 9             /* initial number of bits/code */
54
55
56 /* machine variants which require cc -Dmachine:  pdp11, z8000, DOS */
57 #define FAST
58
59 #define HBITS           17      /* 50% occupancy */
60 #define HSIZE      (1<<HBITS)
61 #define HMASK      (HSIZE-1)
62 #define HPRIME           9941
63 #define BITS               16
64 #undef  MAXSEG_64K
65 #define MAXCODE(n)      (1L << (n))
66
67 /* Block compress mode -C compatible with 2.0 */
68 static int block_mode = BLOCK_MODE;
69
70 /* user settable max # bits/code */
71 static int maxbits = BITS;
72
73 #define htabof(i)                               htab[i]
74 #define codetabof(i)                    codetab[i]
75 #define tab_prefixof(i)                 codetabof(i)
76 #define tab_suffixof(i)                 ((unsigned char *)(htab))[i]
77 #define de_stack                                ((unsigned char *)&(htab[HSIZE-1]))
78 #define clear_htab()                    memset(htab, -1, HSIZE)
79 #define clear_tab_prefixof()    memset(codetab, 0, 256);
80
81
82 /*
83  * Decompress stdin to stdout.  This routine adapts to the codes in the
84  * file building the "string" table on-the-fly; requiring no table to
85  * be stored in the compressed file.  The tables used herein are shared
86  * with those of the compress() routine.  See the definitions above.
87  */
88
89 USE_DESKTOP(long long) int
90 uncompress(int fd_in, int fd_out)
91 {
92         USE_DESKTOP(long long total_written = 0;)
93         unsigned char *stackp;
94         long int code;
95         int finchar;
96         long int oldcode;
97         long int incode;
98         int inbits;
99         int posbits;
100         int outpos;
101         int insize;
102         int bitmask;
103         long int free_ent;
104         long int maxcode;
105         long int maxmaxcode;
106         int n_bits;
107         int rsize = 0;
108         RESERVE_CONFIG_UBUFFER(inbuf, IBUFSIZ + 64);
109         RESERVE_CONFIG_UBUFFER(outbuf, OBUFSIZ + 2048);
110         unsigned char htab[HSIZE];
111         unsigned short codetab[HSIZE];
112         memset(inbuf, 0, IBUFSIZ + 64);
113         memset(outbuf, 0, OBUFSIZ + 2048);
114
115         insize = 0;
116
117         inbuf[0] = xread_char(fd_in);
118
119         maxbits = inbuf[0] & BIT_MASK;
120         block_mode = inbuf[0] & BLOCK_MODE;
121         maxmaxcode = MAXCODE(maxbits);
122
123         if (maxbits > BITS) {
124                 bb_error_msg("compressed with %d bits, can only handle %d bits", maxbits,
125                                   BITS);
126                 return -1;
127         }
128
129         maxcode = MAXCODE(n_bits = INIT_BITS) - 1;
130         bitmask = (1 << n_bits) - 1;
131         oldcode = -1;
132         finchar = 0;
133         outpos = 0;
134         posbits = 0 << 3;
135
136         free_ent = ((block_mode) ? FIRST : 256);
137
138         /* As above, initialize the first 256 entries in the table. */
139         clear_tab_prefixof();
140
141         for (code = 255; code >= 0; --code) {
142                 tab_suffixof(code) = (unsigned char) code;
143         }
144
145         do {
146           resetbuf:;
147                 {
148                         int i;
149                         int e;
150                         int o;
151
152                         e = insize - (o = (posbits >> 3));
153
154                         for (i = 0; i < e; ++i)
155                                 inbuf[i] = inbuf[i + o];
156
157                         insize = e;
158                         posbits = 0;
159                 }
160
161                 if (insize < (int) (IBUFSIZ + 64) - IBUFSIZ) {
162                         rsize = safe_read(fd_in, inbuf + insize, IBUFSIZ);
163                         insize += rsize;
164                 }
165
166                 inbits = ((rsize > 0) ? (insize - insize % n_bits) << 3 :
167                                   (insize << 3) - (n_bits - 1));
168
169                 while (inbits > posbits) {
170                         if (free_ent > maxcode) {
171                                 posbits =
172                                         ((posbits - 1) +
173                                          ((n_bits << 3) -
174                                           (posbits - 1 + (n_bits << 3)) % (n_bits << 3)));
175                                 ++n_bits;
176                                 if (n_bits == maxbits) {
177                                         maxcode = maxmaxcode;
178                                 } else {
179                                         maxcode = MAXCODE(n_bits) - 1;
180                                 }
181                                 bitmask = (1 << n_bits) - 1;
182                                 goto resetbuf;
183                         }
184                         {
185                                 unsigned char *p = &inbuf[posbits >> 3];
186
187                                 code =  ((((long) (p[0])) | ((long) (p[1]) << 8) |
188                                           ((long) (p[2]) << 16)) >> (posbits & 0x7)) & bitmask;
189                         }
190                         posbits += n_bits;
191
192
193                         if (oldcode == -1) {
194                                 oldcode = code;
195                                 finchar = (int) oldcode;
196                                 outbuf[outpos++] = (unsigned char) finchar;
197                                 continue;
198                         }
199
200                         if (code == CLEAR && block_mode) {
201                                 clear_tab_prefixof();
202                                 free_ent = FIRST - 1;
203                                 posbits =
204                                         ((posbits - 1) +
205                                          ((n_bits << 3) -
206                                           (posbits - 1 + (n_bits << 3)) % (n_bits << 3)));
207                                 maxcode = MAXCODE(n_bits = INIT_BITS) - 1;
208                                 bitmask = (1 << n_bits) - 1;
209                                 goto resetbuf;
210                         }
211
212                         incode = code;
213                         stackp = de_stack;
214
215                         /* Special case for KwKwK string. */
216                         if (code >= free_ent) {
217                                 if (code > free_ent) {
218                                         unsigned char *p;
219
220                                         posbits -= n_bits;
221                                         p = &inbuf[posbits >> 3];
222
223                                         bb_error_msg
224                                                 ("insize:%d posbits:%d inbuf:%02X %02X %02X %02X %02X (%d)",
225                                                  insize, posbits, p[-1], p[0], p[1], p[2], p[3],
226                                                  (posbits & 07));
227                                         bb_error_msg("uncompress: corrupt input");
228                                         return -1;
229                                 }
230
231                                 *--stackp = (unsigned char) finchar;
232                                 code = oldcode;
233                         }
234
235                         /* Generate output characters in reverse order */
236                         while ((long int) code >= (long int) 256) {
237                                 *--stackp = tab_suffixof(code);
238                                 code = tab_prefixof(code);
239                         }
240
241                         *--stackp = (unsigned char) (finchar = tab_suffixof(code));
242
243                         /* And put them out in forward order */
244                         {
245                                 int i;
246
247                                 if (outpos + (i = (de_stack - stackp)) >= OBUFSIZ) {
248                                         do {
249                                                 if (i > OBUFSIZ - outpos) {
250                                                         i = OBUFSIZ - outpos;
251                                                 }
252
253                                                 if (i > 0) {
254                                                         memcpy(outbuf + outpos, stackp, i);
255                                                         outpos += i;
256                                                 }
257
258                                                 if (outpos >= OBUFSIZ) {
259                                                         write(fd_out, outbuf, outpos);
260                                                         USE_DESKTOP(total_written += outpos;)
261                                                         outpos = 0;
262                                                 }
263                                                 stackp += i;
264                                         } while ((i = (de_stack - stackp)) > 0);
265                                 } else {
266                                         memcpy(outbuf + outpos, stackp, i);
267                                         outpos += i;
268                                 }
269                         }
270
271                         /* Generate the new entry. */
272                         if ((code = free_ent) < maxmaxcode) {
273                                 tab_prefixof(code) = (unsigned short) oldcode;
274                                 tab_suffixof(code) = (unsigned char) finchar;
275                                 free_ent = code + 1;
276                         }
277
278                         /* Remember previous code.  */
279                         oldcode = incode;
280                 }
281
282         } while (rsize > 0);
283
284         if (outpos > 0) {
285                 write(fd_out, outbuf, outpos);
286                 USE_DESKTOP(total_written += outpos;)
287         }
288
289         RELEASE_CONFIG_BUFFER(inbuf);
290         RELEASE_CONFIG_BUFFER(outbuf);
291         return USE_DESKTOP(total_written) + 0;
292 }