Fix UTIME_OMIT handling
[dragonfly.git] / usr.bin / gzip / zuncompress.c
blobdb5d86630b12eedc2d9ec58bbe4dc8420ba6f2b9
1 /* $NetBSD: zuncompress.c,v 1.11 2011/08/16 13:55:02 joerg Exp $ */
3 /*-
4 * Copyright (c) 1985, 1986, 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Diomidis Spinellis and James A. Woods, derived from original
9 * work by Spencer Thomas and Joseph Orost.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
35 * from: NetBSD: zopen.c,v 1.8 2003/08/07 11:13:29 agc Exp
38 /* This file is #included by gzip.c */
40 static int zread(void *, char *, int);
42 #define tab_prefixof(i) (zs->zs_codetab[i])
43 #define tab_suffixof(i) ((char_type *)(zs->zs_htab))[i]
44 #define de_stack ((char_type *)&tab_suffixof(1 << BITS))
46 #define BITS 16 /* Default bits. */
47 #define HSIZE 69001 /* 95% occupancy */ /* XXX may not need HSIZE */
48 #define BIT_MASK 0x1f /* Defines for third byte of header. */
49 #define BLOCK_MASK 0x80
50 #define CHECK_GAP 10000 /* Ratio check interval. */
51 #define BUFSIZE (64 * 1024)
53 /*
54 * Masks 0x40 and 0x20 are free. I think 0x20 should mean that there is
55 * a fourth header byte (for expansion).
56 */
57 #define INIT_BITS 9 /* Initial number of bits/code. */
60 * the next two codes should not be changed lightly, as they must not
61 * lie within the contiguous general code space.
63 #define FIRST 257 /* First free entry. */
64 #define CLEAR 256 /* Table clear output code. */
67 #define MAXCODE(n_bits) ((1 << (n_bits)) - 1)
69 typedef long code_int;
70 typedef long count_int;
71 typedef u_char char_type;
73 static char_type magic_header[] =
74 {'\037', '\235'}; /* 1F 9D */
76 static char_type rmask[9] =
77 {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
79 /* XXX zuncompress global */
80 off_t total_compressed_bytes;
81 size_t compressed_prelen;
82 char *compressed_pre;
84 struct s_zstate {
85 FILE *zs_fp; /* File stream for I/O */
86 char zs_mode; /* r or w */
87 enum {
88 S_START, S_MIDDLE, S_EOF
89 } zs_state; /* State of computation */
90 int zs_n_bits; /* Number of bits/code. */
91 int zs_maxbits; /* User settable max # bits/code. */
92 code_int zs_maxcode; /* Maximum code, given n_bits. */
93 code_int zs_maxmaxcode; /* Should NEVER generate this code. */
94 count_int zs_htab [HSIZE];
95 u_short zs_codetab [HSIZE];
96 code_int zs_hsize; /* For dynamic table sizing. */
97 code_int zs_free_ent; /* First unused entry. */
99 * Block compression parameters -- after all codes are used up,
100 * and compression rate changes, start over.
102 int zs_block_compress;
103 int zs_clear_flg;
104 long zs_ratio;
105 count_int zs_checkpoint;
106 int zs_offset;
107 long zs_in_count; /* Length of input. */
108 long zs_bytes_out; /* Length of compressed output. */
109 long zs_out_count; /* # of codes output (for debugging). */
110 char_type zs_buf[BITS];
111 union {
112 struct {
113 long zs_fcode;
114 code_int zs_ent;
115 code_int zs_hsize_reg;
116 int zs_hshift;
117 } w; /* Write paramenters */
118 struct {
119 char_type *zs_stackp;
120 int zs_finchar;
121 code_int zs_code, zs_oldcode, zs_incode;
122 int zs_roffset, zs_size;
123 char_type zs_gbuf[BITS];
124 } r; /* Read parameters */
125 } u;
128 static code_int getcode(struct s_zstate *zs);
130 static off_t
131 zuncompress(FILE *in, FILE *out, char *pre, size_t prelen,
132 off_t *compressed_bytes)
134 off_t bin, bout = 0;
135 char *buf;
137 buf = malloc(BUFSIZE);
138 if (buf == NULL)
139 return -1;
141 /* XXX */
142 compressed_prelen = prelen;
143 if (prelen != 0)
144 compressed_pre = pre;
145 else
146 compressed_pre = NULL;
148 while ((bin = fread(buf, 1, BUFSIZE, in)) != 0) {
149 if (tflag == 0 && (off_t)fwrite(buf, 1, bin, out) != bin) {
150 free(buf);
151 return -1;
153 bout += bin;
156 if (compressed_bytes)
157 *compressed_bytes = total_compressed_bytes;
159 free(buf);
160 return bout;
163 static int
164 zclose(void *zs)
166 free(zs);
167 /* We leave the caller to close the fd passed to zdopen() */
168 return 0;
171 FILE *
172 zdopen(int fd)
174 struct s_zstate *zs;
176 if ((zs = calloc(1, sizeof(struct s_zstate))) == NULL)
177 return (NULL);
179 zs->zs_state = S_START;
181 /* XXX we can get rid of some of these */
182 zs->zs_hsize = HSIZE; /* For dynamic table sizing. */
183 zs->zs_free_ent = 0; /* First unused entry. */
184 zs->zs_block_compress = BLOCK_MASK;
185 zs->zs_clear_flg = 0; /* XXX we calloc()'d this structure why = 0? */
186 zs->zs_ratio = 0;
187 zs->zs_checkpoint = CHECK_GAP;
188 zs->zs_in_count = 1; /* Length of input. */
189 zs->zs_out_count = 0; /* # of codes output (for debugging). */
190 zs->u.r.zs_roffset = 0;
191 zs->u.r.zs_size = 0;
194 * Layering compress on top of stdio in order to provide buffering,
195 * and ensure that reads and write work with the data specified.
197 if ((zs->zs_fp = fdopen(fd, "r")) == NULL) {
198 free(zs);
199 return NULL;
202 return funopen(zs, zread, NULL, NULL, zclose);
206 * Decompress read. This routine adapts to the codes in the file building
207 * the "string" table on-the-fly; requiring no table to be stored in the
208 * compressed file. The tables used herein are shared with those of the
209 * compress() routine. See the definitions above.
211 static int
212 zread(void *cookie, char *rbp, int num)
214 u_int count, i;
215 struct s_zstate *zs;
216 u_char *bp, header[3];
218 if (num == 0)
219 return (0);
221 zs = cookie;
222 count = num;
223 bp = (u_char *)rbp;
224 switch (zs->zs_state) {
225 case S_START:
226 zs->zs_state = S_MIDDLE;
227 break;
228 case S_MIDDLE:
229 goto middle;
230 case S_EOF:
231 goto eof;
234 /* Check the magic number */
235 for (i = 0; i < 3 && compressed_prelen; i++, compressed_prelen--)
236 header[i] = *compressed_pre++;
238 if (fread(header + i, 1, sizeof(header) - i, zs->zs_fp) !=
239 sizeof(header) - i ||
240 memcmp(header, magic_header, sizeof(magic_header)) != 0) {
241 errno = EFTYPE;
242 return (-1);
244 total_compressed_bytes = 0;
245 zs->zs_maxbits = header[2]; /* Set -b from file. */
246 zs->zs_block_compress = zs->zs_maxbits & BLOCK_MASK;
247 zs->zs_maxbits &= BIT_MASK;
248 zs->zs_maxmaxcode = 1L << zs->zs_maxbits;
249 if (zs->zs_maxbits > BITS || zs->zs_maxbits < 12) {
250 errno = EFTYPE;
251 return (-1);
253 /* As above, initialize the first 256 entries in the table. */
254 zs->zs_maxcode = MAXCODE(zs->zs_n_bits = INIT_BITS);
255 for (zs->u.r.zs_code = 255; zs->u.r.zs_code >= 0; zs->u.r.zs_code--) {
256 tab_prefixof(zs->u.r.zs_code) = 0;
257 tab_suffixof(zs->u.r.zs_code) = (char_type) zs->u.r.zs_code;
259 zs->zs_free_ent = zs->zs_block_compress ? FIRST : 256;
260 zs->u.r.zs_oldcode = -1;
261 zs->u.r.zs_stackp = de_stack;
263 while ((zs->u.r.zs_code = getcode(zs)) > -1) {
265 if ((zs->u.r.zs_code == CLEAR) && zs->zs_block_compress) {
266 for (zs->u.r.zs_code = 255; zs->u.r.zs_code >= 0;
267 zs->u.r.zs_code--)
268 tab_prefixof(zs->u.r.zs_code) = 0;
269 zs->zs_clear_flg = 1;
270 zs->zs_free_ent = FIRST;
271 zs->u.r.zs_oldcode = -1;
272 continue;
274 zs->u.r.zs_incode = zs->u.r.zs_code;
276 /* Special case for KwKwK string. */
277 if (zs->u.r.zs_code >= zs->zs_free_ent) {
278 if (zs->u.r.zs_code > zs->zs_free_ent ||
279 zs->u.r.zs_oldcode == -1) {
280 /* Bad stream. */
281 errno = EINVAL;
282 return (-1);
284 *zs->u.r.zs_stackp++ = zs->u.r.zs_finchar;
285 zs->u.r.zs_code = zs->u.r.zs_oldcode;
288 * The above condition ensures that code < free_ent.
289 * The construction of tab_prefixof in turn guarantees that
290 * each iteration decreases code and therefore stack usage is
291 * bound by 1 << BITS - 256.
294 /* Generate output characters in reverse order. */
295 while (zs->u.r.zs_code >= 256) {
296 *zs->u.r.zs_stackp++ = tab_suffixof(zs->u.r.zs_code);
297 zs->u.r.zs_code = tab_prefixof(zs->u.r.zs_code);
299 *zs->u.r.zs_stackp++ = zs->u.r.zs_finchar = tab_suffixof(zs->u.r.zs_code);
301 /* And put them out in forward order. */
302 middle: do {
303 if (count-- == 0)
304 return (num);
305 *bp++ = *--zs->u.r.zs_stackp;
306 } while (zs->u.r.zs_stackp > de_stack);
308 /* Generate the new entry. */
309 if ((zs->u.r.zs_code = zs->zs_free_ent) < zs->zs_maxmaxcode &&
310 zs->u.r.zs_oldcode != -1) {
311 tab_prefixof(zs->u.r.zs_code) = (u_short) zs->u.r.zs_oldcode;
312 tab_suffixof(zs->u.r.zs_code) = zs->u.r.zs_finchar;
313 zs->zs_free_ent = zs->u.r.zs_code + 1;
316 /* Remember previous code. */
317 zs->u.r.zs_oldcode = zs->u.r.zs_incode;
319 zs->zs_state = S_EOF;
320 eof: return (num - count);
324 * Read one code from the standard input. If EOF, return -1.
325 * Inputs:
326 * stdin
327 * Outputs:
328 * code or -1 is returned.
330 static code_int
331 getcode(struct s_zstate *zs)
333 code_int gcode;
334 int r_off, bits, i;
335 char_type *bp;
337 bp = zs->u.r.zs_gbuf;
338 if (zs->zs_clear_flg > 0 || zs->u.r.zs_roffset >= zs->u.r.zs_size ||
339 zs->zs_free_ent > zs->zs_maxcode) {
341 * If the next entry will be too big for the current gcode
342 * size, then we must increase the size. This implies reading
343 * a new buffer full, too.
345 if (zs->zs_free_ent > zs->zs_maxcode) {
346 zs->zs_n_bits++;
347 if (zs->zs_n_bits == zs->zs_maxbits) /* Won't get any bigger now. */
348 zs->zs_maxcode = zs->zs_maxmaxcode;
349 else
350 zs->zs_maxcode = MAXCODE(zs->zs_n_bits);
352 if (zs->zs_clear_flg > 0) {
353 zs->zs_maxcode = MAXCODE(zs->zs_n_bits = INIT_BITS);
354 zs->zs_clear_flg = 0;
356 /* XXX */
357 for (i = 0; i < zs->zs_n_bits && compressed_prelen; i++, compressed_prelen--)
358 zs->u.r.zs_gbuf[i] = *compressed_pre++;
359 zs->u.r.zs_size = fread(zs->u.r.zs_gbuf + i, 1, zs->zs_n_bits - i, zs->zs_fp);
360 zs->u.r.zs_size += i;
361 if (zs->u.r.zs_size <= 0) /* End of file. */
362 return (-1);
363 zs->u.r.zs_roffset = 0;
365 total_compressed_bytes += zs->u.r.zs_size;
367 /* Round size down to integral number of codes. */
368 zs->u.r.zs_size = (zs->u.r.zs_size << 3) - (zs->zs_n_bits - 1);
370 r_off = zs->u.r.zs_roffset;
371 bits = zs->zs_n_bits;
373 /* Get to the first byte. */
374 bp += (r_off >> 3);
375 r_off &= 7;
377 /* Get first part (low order bits). */
378 gcode = (*bp++ >> r_off);
379 bits -= (8 - r_off);
380 r_off = 8 - r_off; /* Now, roffset into gcode word. */
382 /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
383 if (bits >= 8) {
384 gcode |= *bp++ << r_off;
385 r_off += 8;
386 bits -= 8;
389 /* High order bits. */
390 gcode |= (*bp & rmask[bits]) << r_off;
391 zs->u.r.zs_roffset += zs->zs_n_bits;
393 return (gcode);