summaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-05 16:24:54 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-05 16:24:54 +0000
commitcc8ed39b240180b58810784f844e253263594ac3 (patch)
tree15feebbb4be9a9168209609f48f0b100f9364420 /archival
downloadbusybox-w32-0_29alpha2.tar.gz
busybox-w32-0_29alpha2.tar.bz2
busybox-w32-0_29alpha2.zip
Initial revision0_29alpha2
Diffstat (limited to 'archival')
-rw-r--r--archival/gzip.c3231
-rw-r--r--archival/tar.c1425
2 files changed, 4656 insertions, 0 deletions
diff --git a/archival/gzip.c b/archival/gzip.c
new file mode 100644
index 000000000..6fd2e3971
--- /dev/null
+++ b/archival/gzip.c
@@ -0,0 +1,3231 @@
1/* gzip.c -- this is a stripped down version of gzip I put into busybox, it does
2 * only standard in to standard out with -9 compression. It also requires the
3 * zcat module for some important functions.
4 *
5 * Charles P. Wright <cpw@unix.asb.com>
6 */
7#include "internal.h"
8#ifdef BB_GZIP
9
10#ifndef BB_ZCAT
11error: you need zcat to have gzip support!
12#endif
13
14const char gzip_usage[] = "gzip\nignores all command line arguments\ncompress stdin to stdout with -9 compression\n";
15
16/* gzip.h -- common declarations for all gzip modules
17 * Copyright (C) 1992-1993 Jean-loup Gailly.
18 * This is free software; you can redistribute it and/or modify it under the
19 * terms of the GNU General Public License, see the file COPYING.
20 */
21
22#if defined(__STDC__) || defined(PROTO)
23# define OF(args) args
24#else
25# define OF(args) ()
26#endif
27
28#ifdef __STDC__
29 typedef void *voidp;
30#else
31 typedef char *voidp;
32#endif
33
34/* I don't like nested includes, but the string and io functions are used
35 * too often
36 */
37#include <stdio.h>
38#if !defined(NO_STRING_H) || defined(STDC_HEADERS)
39# include <string.h>
40# if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
41# include <memory.h>
42# endif
43# define memzero(s, n) memset ((voidp)(s), 0, (n))
44#else
45# include <strings.h>
46# define strchr index
47# define strrchr rindex
48# define memcpy(d, s, n) bcopy((s), (d), (n))
49# define memcmp(s1, s2, n) bcmp((s1), (s2), (n))
50# define memzero(s, n) bzero((s), (n))
51#endif
52
53#ifndef RETSIGTYPE
54# define RETSIGTYPE void
55#endif
56
57#define local static
58
59typedef unsigned char uch;
60typedef unsigned short ush;
61typedef unsigned long ulg;
62
63/* Return codes from gzip */
64#define OK 0
65#define ERROR 1
66#define WARNING 2
67
68/* Compression methods (see algorithm.doc) */
69#define STORED 0
70#define COMPRESSED 1
71#define PACKED 2
72#define LZHED 3
73/* methods 4 to 7 reserved */
74#define DEFLATED 8
75#define MAX_METHODS 9
76extern int method; /* compression method */
77
78/* To save memory for 16 bit systems, some arrays are overlaid between
79 * the various modules:
80 * deflate: prev+head window d_buf l_buf outbuf
81 * unlzw: tab_prefix tab_suffix stack inbuf outbuf
82 * inflate: window inbuf
83 * unpack: window inbuf prefix_len
84 * unlzh: left+right window c_table inbuf c_len
85 * For compression, input is done in window[]. For decompression, output
86 * is done in window except for unlzw.
87 */
88
89#ifndef INBUFSIZ
90# ifdef SMALL_MEM
91# define INBUFSIZ 0x2000 /* input buffer size */
92# else
93# define INBUFSIZ 0x8000 /* input buffer size */
94# endif
95#endif
96#define INBUF_EXTRA 64 /* required by unlzw() */
97
98#ifndef OUTBUFSIZ
99# ifdef SMALL_MEM
100# define OUTBUFSIZ 8192 /* output buffer size */
101# else
102# define OUTBUFSIZ 16384 /* output buffer size */
103# endif
104#endif
105#define OUTBUF_EXTRA 2048 /* required by unlzw() */
106
107#ifndef DIST_BUFSIZE
108# ifdef SMALL_MEM
109# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
110# else
111# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
112# endif
113#endif
114
115#ifdef DYN_ALLOC
116# define EXTERN(type, array) extern type * near array
117# define DECLARE(type, array, size) type * near array
118# define ALLOC(type, array, size) { \
119 array = (type*)fcalloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
120 if (array == NULL) error("insufficient memory"); \
121 }
122# define FREE(array) {if (array != NULL) fcfree(array), array=NULL;}
123#else
124# define EXTERN(type, array) extern type array[]
125# define DECLARE(type, array, size) type array[size]
126# define ALLOC(type, array, size)
127# define FREE(array)
128#endif
129
130EXTERN(uch, inbuf); /* input buffer */
131EXTERN(uch, outbuf); /* output buffer */
132EXTERN(ush, d_buf); /* buffer for distances, see trees.c */
133EXTERN(uch, window); /* Sliding window and suffix table (unlzw) */
134#define tab_suffix window
135#ifndef MAXSEG_64K
136# define tab_prefix prev /* hash link (see deflate.c) */
137# define head (prev+WSIZE) /* hash head (see deflate.c) */
138 EXTERN(ush, tab_prefix); /* prefix code (see unlzw.c) */
139#else
140# define tab_prefix0 prev
141# define head tab_prefix1
142 EXTERN(ush, tab_prefix0); /* prefix for even codes */
143 EXTERN(ush, tab_prefix1); /* prefix for odd codes */
144#endif
145
146extern unsigned insize; /* valid bytes in inbuf */
147extern unsigned inptr; /* index of next byte to be processed in inbuf */
148extern unsigned outcnt; /* bytes in output buffer */
149
150extern long bytes_in; /* number of input bytes */
151extern long bytes_out; /* number of output bytes */
152extern long header_bytes;/* number of bytes in gzip header */
153
154#define isize bytes_in
155/* for compatibility with old zip sources (to be cleaned) */
156
157extern int ifd; /* input file descriptor */
158extern int ofd; /* output file descriptor */
159extern char ifname[]; /* input file name or "stdin" */
160extern char ofname[]; /* output file name or "stdout" */
161extern char *progname; /* program name */
162
163extern long time_stamp; /* original time stamp (modification time) */
164extern long ifile_size; /* input file size, -1 for devices (debug only) */
165
166typedef int file_t; /* Do not use stdio */
167#define NO_FILE (-1) /* in memory compression */
168
169
170#define PACK_MAGIC "\037\036" /* Magic header for packed files */
171#define GZIP_MAGIC "\037\213" /* Magic header for gzip files, 1F 8B */
172#define OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
173#define LZH_MAGIC "\037\240" /* Magic header for SCO LZH Compress files*/
174#define PKZIP_MAGIC "\120\113\003\004" /* Magic header for pkzip files */
175
176/* gzip flag byte */
177#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
178#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
179#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
180#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
181#define COMMENT 0x10 /* bit 4 set: file comment present */
182#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
183#define RESERVED 0xC0 /* bit 6,7: reserved */
184
185/* internal file attribute */
186#define UNKNOWN 0xffff
187#define BINARY 0
188#define ASCII 1
189
190#ifndef WSIZE
191# define WSIZE 0x8000 /* window size--must be a power of two, and */
192#endif /* at least 32K for zip's deflate method */
193
194#define MIN_MATCH 3
195#define MAX_MATCH 258
196/* The minimum and maximum match lengths */
197
198#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
199/* Minimum amount of lookahead, except at the end of the input file.
200 * See deflate.c for comments about the MIN_MATCH+1.
201 */
202
203#define MAX_DIST (WSIZE-MIN_LOOKAHEAD)
204/* In order to simplify the code, particularly on 16 bit machines, match
205 * distances are limited to MAX_DIST instead of WSIZE.
206 */
207
208extern int decrypt; /* flag to turn on decryption */
209extern int exit_code; /* program exit code */
210extern int verbose; /* be verbose (-v) */
211extern int quiet; /* be quiet (-q) */
212extern int test; /* check .z file integrity */
213extern int to_stdout; /* output to stdout (-c) */
214extern int save_orig_name; /* set if original name must be saved */
215
216#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
217#define try_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
218
219/* put_byte is used for the compressed output, put_ubyte for the
220 * uncompressed output. However unlzw() uses window for its
221 * suffix table instead of its output buffer, so it does not use put_ubyte
222 * (to be cleaned up).
223 */
224#define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
225 flush_outbuf();}
226#define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
227 flush_window();}
228
229/* Output a 16 bit value, lsb first */
230#define put_short(w) \
231{ if (outcnt < OUTBUFSIZ-2) { \
232 outbuf[outcnt++] = (uch) ((w) & 0xff); \
233 outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
234 } else { \
235 put_byte((uch)((w) & 0xff)); \
236 put_byte((uch)((ush)(w) >> 8)); \
237 } \
238}
239
240/* Output a 32 bit value to the bit stream, lsb first */
241#define put_long(n) { \
242 put_short((n) & 0xffff); \
243 put_short(((ulg)(n)) >> 16); \
244}
245
246#define seekable() 0 /* force sequential output */
247#define translate_eol 0 /* no option -a yet */
248
249#define tolow(c) (isupper(c) ? (c)-'A'+'a' : (c)) /* force to lower case */
250
251/* Macros for getting two-byte and four-byte header values */
252#define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
253#define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
254
255/* Diagnostic functions */
256#ifdef DEBUG
257# define Assert(cond,msg) {if(!(cond)) error(msg);}
258# define Trace(x) fprintf x
259# define Tracev(x) {if (verbose) fprintf x ;}
260# define Tracevv(x) {if (verbose>1) fprintf x ;}
261# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
262# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
263#else
264# define Assert(cond,msg)
265# define Trace(x)
266# define Tracev(x)
267# define Tracevv(x)
268# define Tracec(c,x)
269# define Tracecv(c,x)
270#endif
271
272#define WARN(msg) {if (!quiet) fprintf msg ; \
273 if (exit_code == OK) exit_code = WARNING;}
274
275local void do_exit(int exitcode);
276
277 /* in zip.c: */
278extern int zip OF((int in, int out));
279extern int file_read OF((char *buf, unsigned size));
280
281 /* in unzip.c */
282extern int unzip OF((int in, int out));
283extern int check_zipfile OF((int in));
284
285 /* in unpack.c */
286extern int unpack OF((int in, int out));
287
288 /* in unlzh.c */
289extern int unlzh OF((int in, int out));
290
291 /* in gzip.c */
292RETSIGTYPE abort_gzip OF((void));
293
294 /* in deflate.c */
295void lm_init OF((ush *flags));
296ulg deflate OF((void));
297
298 /* in trees.c */
299void ct_init OF((ush *attr, int *method));
300int ct_tally OF((int dist, int lc));
301ulg flush_block OF((char *buf, ulg stored_len, int eof));
302
303 /* in bits.c */
304void bi_init OF((file_t zipfile));
305void send_bits OF((int value, int length));
306unsigned bi_reverse OF((unsigned value, int length));
307void bi_windup OF((void));
308void copy_block OF((char *buf, unsigned len, int header));
309extern int (*read_buf) OF((char *buf, unsigned size));
310
311 /* in util.c: */
312extern int copy OF((int in, int out));
313extern ulg updcrc OF((uch *s, unsigned n));
314extern void clear_bufs OF((void));
315extern int fill_inbuf OF((int eof_ok));
316extern void flush_outbuf OF((void));
317extern void flush_window OF((void));
318extern void write_buf OF((int fd, voidp buf, unsigned cnt));
319extern char *strlwr OF((char *s));
320extern char *add_envopt OF((int *argcp, char ***argvp, char *env));
321extern void error OF((char *m));
322extern void warn OF((char *a, char *b));
323extern void read_error OF((void));
324extern void write_error OF((void));
325extern void display_ratio OF((long num, long den, FILE *file));
326extern voidp xmalloc OF((unsigned int size));
327
328 /* in inflate.c */
329extern int inflate OF((void));
330/* lzw.h -- define the lzw functions.
331 * Copyright (C) 1992-1993 Jean-loup Gailly.
332 * This is free software; you can redistribute it and/or modify it under the
333 * terms of the GNU General Public License, see the file COPYING.
334 */
335
336#if !defined(OF) && defined(lint)
337# include "gzip.h"
338#endif
339
340#ifndef BITS
341# define BITS 16
342#endif
343#define INIT_BITS 9 /* Initial number of bits per code */
344
345#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */
346/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free.
347 * It's a pity that old uncompress does not check bit 0x20. That makes
348 * extension of the format actually undesirable because old compress
349 * would just crash on the new format instead of giving a meaningful
350 * error message. It does check the number of bits, but it's more
351 * helpful to say "unsupported format, get a new version" than
352 * "can only handle 16 bits".
353 */
354
355#define BLOCK_MODE 0x80
356/* Block compression: if table is full and compression rate is dropping,
357 * clear the dictionary.
358 */
359
360#define LZW_RESERVED 0x60 /* reserved bits */
361
362#define CLEAR 256 /* flush the dictionary */
363#define FIRST (CLEAR+1) /* first free entry */
364
365extern int maxbits; /* max bits per code for LZW */
366extern int block_mode; /* block compress mode -C compatible with 2.0 */
367
368/* revision.h -- define the version number
369 * Copyright (C) 1992-1993 Jean-loup Gailly.
370 * This is free software; you can redistribute it and/or modify it under the
371 * terms of the GNU General Public License, see the file COPYING.
372 */
373
374#define VERSION "1.2.4"
375#define PATCHLEVEL 0
376#define REVDATE "18 Aug 93"
377
378/* This version does not support compression into old compress format: */
379#ifdef LZW
380# undef LZW
381#endif
382
383/* $Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $ */
384/* tailor.h -- target dependent definitions
385 * Copyright (C) 1992-1993 Jean-loup Gailly.
386 * This is free software; you can redistribute it and/or modify it under the
387 * terms of the GNU General Public License, see the file COPYING.
388 */
389
390/* The target dependent definitions should be defined here only.
391 * The target dependent functions should be defined in tailor.c.
392 */
393
394/* $Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $ */
395
396#if defined(__MSDOS__) && !defined(MSDOS)
397# define MSDOS
398#endif
399
400#if defined(__OS2__) && !defined(OS2)
401# define OS2
402#endif
403
404#if defined(OS2) && defined(MSDOS) /* MS C under OS/2 */
405# undef MSDOS
406#endif
407
408#ifdef MSDOS
409# ifdef __GNUC__
410 /* DJGPP version 1.09+ on MS-DOS.
411 * The DJGPP 1.09 stat() function must be upgraded before gzip will
412 * fully work.
413 * No need for DIRENT, since <unistd.h> defines POSIX_SOURCE which
414 * implies DIRENT.
415 */
416# define near
417# else
418# define MAXSEG_64K
419# ifdef __TURBOC__
420# define NO_OFF_T
421# ifdef __BORLANDC__
422# define DIRENT
423# else
424# define NO_UTIME
425# endif
426# else /* MSC */
427# define HAVE_SYS_UTIME_H
428# define NO_UTIME_H
429# endif
430# endif
431# define PATH_SEP2 '\\'
432# define PATH_SEP3 ':'
433# define MAX_PATH_LEN 128
434# define NO_MULTIPLE_DOTS
435# define MAX_EXT_CHARS 3
436# define Z_SUFFIX "z"
437# define NO_CHOWN
438# define PROTO
439# define STDC_HEADERS
440# define NO_SIZE_CHECK
441# define casemap(c) tolow(c) /* Force file names to lower case */
442# include <io.h>
443# define OS_CODE 0x00
444# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
445# if !defined(NO_ASM) && !defined(ASMV)
446# define ASMV
447# endif
448#else
449# define near
450#endif
451
452#ifdef OS2
453# define PATH_SEP2 '\\'
454# define PATH_SEP3 ':'
455# define MAX_PATH_LEN 260
456# ifdef OS2FAT
457# define NO_MULTIPLE_DOTS
458# define MAX_EXT_CHARS 3
459# define Z_SUFFIX "z"
460# define casemap(c) tolow(c)
461# endif
462# define NO_CHOWN
463# define PROTO
464# define STDC_HEADERS
465# include <io.h>
466# define OS_CODE 0x06
467# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
468# ifdef _MSC_VER
469# define HAVE_SYS_UTIME_H
470# define NO_UTIME_H
471# define MAXSEG_64K
472# undef near
473# define near _near
474# endif
475# ifdef __EMX__
476# define HAVE_SYS_UTIME_H
477# define NO_UTIME_H
478# define DIRENT
479# define EXPAND(argc,argv) \
480 {_response(&argc, &argv); _wildcard(&argc, &argv);}
481# endif
482# ifdef __BORLANDC__
483# define DIRENT
484# endif
485# ifdef __ZTC__
486# define NO_DIR
487# define NO_UTIME_H
488# include <dos.h>
489# define EXPAND(argc,argv) \
490 {response_expand(&argc, &argv);}
491# endif
492#endif
493
494#ifdef WIN32 /* Windows NT */
495# define HAVE_SYS_UTIME_H
496# define NO_UTIME_H
497# define PATH_SEP2 '\\'
498# define PATH_SEP3 ':'
499# define MAX_PATH_LEN 260
500# define NO_CHOWN
501# define PROTO
502# define STDC_HEADERS
503# define SET_BINARY_MODE(fd) setmode(fd, O_BINARY)
504# include <io.h>
505# include <malloc.h>
506# ifdef NTFAT
507# define NO_MULTIPLE_DOTS
508# define MAX_EXT_CHARS 3
509# define Z_SUFFIX "z"
510# define casemap(c) tolow(c) /* Force file names to lower case */
511# endif
512# define OS_CODE 0x0b
513#endif
514
515#ifdef MSDOS
516# ifdef __TURBOC__
517# include <alloc.h>
518# define DYN_ALLOC
519 /* Turbo C 2.0 does not accept static allocations of large arrays */
520 void * fcalloc (unsigned items, unsigned size);
521 void fcfree (void *ptr);
522# else /* MSC */
523# include <malloc.h>
524# define fcalloc(nitems,itemsize) halloc((long)(nitems),(itemsize))
525# define fcfree(ptr) hfree(ptr)
526# endif
527#else
528# ifdef MAXSEG_64K
529# define fcalloc(items,size) calloc((items),(size))
530# else
531# define fcalloc(items,size) malloc((size_t)(items)*(size_t)(size))
532# endif
533# define fcfree(ptr) free(ptr)
534#endif
535
536#if defined(VAXC) || defined(VMS)
537# define PATH_SEP ']'
538# define PATH_SEP2 ':'
539# define SUFFIX_SEP ';'
540# define NO_MULTIPLE_DOTS
541# define Z_SUFFIX "-gz"
542# define RECORD_IO 1
543# define casemap(c) tolow(c)
544# define OS_CODE 0x02
545# define OPTIONS_VAR "GZIP_OPT"
546# define STDC_HEADERS
547# define NO_UTIME
548# define EXPAND(argc,argv) vms_expand_args(&argc,&argv);
549# include <file.h>
550# define unlink delete
551# ifdef VAXC
552# define NO_FCNTL_H
553# include <unixio.h>
554# endif
555#endif
556
557#ifdef AMIGA
558# define PATH_SEP2 ':'
559# define STDC_HEADERS
560# define OS_CODE 0x01
561# define ASMV
562# ifdef __GNUC__
563# define DIRENT
564# define HAVE_UNISTD_H
565# else /* SASC */
566# define NO_STDIN_FSTAT
567# define SYSDIR
568# define NO_SYMLINK
569# define NO_CHOWN
570# define NO_FCNTL_H
571# include <fcntl.h> /* for read() and write() */
572# define direct dirent
573 extern void _expand_args(int *argc, char ***argv);
574# define EXPAND(argc,argv) _expand_args(&argc,&argv);
575# undef O_BINARY /* disable useless --ascii option */
576# endif
577#endif
578
579#if defined(ATARI) || defined(atarist)
580# ifndef STDC_HEADERS
581# define STDC_HEADERS
582# define HAVE_UNISTD_H
583# define DIRENT
584# endif
585# define ASMV
586# define OS_CODE 0x05
587# ifdef TOSFS
588# define PATH_SEP2 '\\'
589# define PATH_SEP3 ':'
590# define MAX_PATH_LEN 128
591# define NO_MULTIPLE_DOTS
592# define MAX_EXT_CHARS 3
593# define Z_SUFFIX "z"
594# define NO_CHOWN
595# define casemap(c) tolow(c) /* Force file names to lower case */
596# define NO_SYMLINK
597# endif
598#endif
599
600#ifdef MACOS
601# define PATH_SEP ':'
602# define DYN_ALLOC
603# define PROTO
604# define NO_STDIN_FSTAT
605# define NO_CHOWN
606# define NO_UTIME
607# define chmod(file, mode) (0)
608# define OPEN(name, flags, mode) open(name, flags)
609# define OS_CODE 0x07
610# ifdef MPW
611# define isatty(fd) ((fd) <= 2)
612# endif
613#endif
614
615#ifdef __50SERIES /* Prime/PRIMOS */
616# define PATH_SEP '>'
617# define STDC_HEADERS
618# define NO_MEMORY_H
619# define NO_UTIME_H
620# define NO_UTIME
621# define NO_CHOWN
622# define NO_STDIN_FSTAT
623# define NO_SIZE_CHECK
624# define NO_SYMLINK
625# define RECORD_IO 1
626# define casemap(c) tolow(c) /* Force file names to lower case */
627# define put_char(c) put_byte((c) & 0x7F)
628# define get_char(c) ascii2pascii(get_byte())
629# define OS_CODE 0x0F /* temporary, subject to change */
630# ifdef SIGTERM
631# undef SIGTERM /* We don't want a signal handler for SIGTERM */
632# endif
633#endif
634
635#if defined(pyr) && !defined(NOMEMCPY) /* Pyramid */
636# define NOMEMCPY /* problem with overlapping copies */
637#endif
638
639#ifdef TOPS20
640# define OS_CODE 0x0a
641#endif
642
643#ifndef unix
644# define NO_ST_INO /* don't rely on inode numbers */
645#endif
646
647
648 /* Common defaults */
649
650#ifndef OS_CODE
651# define OS_CODE 0x03 /* assume Unix */
652#endif
653
654#ifndef PATH_SEP
655# define PATH_SEP '/'
656#endif
657
658#ifndef casemap
659# define casemap(c) (c)
660#endif
661
662#ifndef OPTIONS_VAR
663# define OPTIONS_VAR "GZIP"
664#endif
665
666#ifndef Z_SUFFIX
667# define Z_SUFFIX ".gz"
668#endif
669
670#ifdef MAX_EXT_CHARS
671# define MAX_SUFFIX MAX_EXT_CHARS
672#else
673# define MAX_SUFFIX 30
674#endif
675
676#ifndef MAKE_LEGAL_NAME
677# ifdef NO_MULTIPLE_DOTS
678# define MAKE_LEGAL_NAME(name) make_simple_name(name)
679# else
680# define MAKE_LEGAL_NAME(name)
681# endif
682#endif
683
684#ifndef MIN_PART
685# define MIN_PART 3
686 /* keep at least MIN_PART chars between dots in a file name. */
687#endif
688
689#ifndef EXPAND
690# define EXPAND(argc,argv)
691#endif
692
693#ifndef RECORD_IO
694# define RECORD_IO 0
695#endif
696
697#ifndef SET_BINARY_MODE
698# define SET_BINARY_MODE(fd)
699#endif
700
701#ifndef OPEN
702# define OPEN(name, flags, mode) open(name, flags, mode)
703#endif
704
705#ifndef get_char
706# define get_char() get_byte()
707#endif
708
709#ifndef put_char
710# define put_char(c) put_byte(c)
711#endif
712/* bits.c -- output variable-length bit strings
713 * Copyright (C) 1992-1993 Jean-loup Gailly
714 * This is free software; you can redistribute it and/or modify it under the
715 * terms of the GNU General Public License, see the file COPYING.
716 */
717
718
719/*
720 * PURPOSE
721 *
722 * Output variable-length bit strings. Compression can be done
723 * to a file or to memory. (The latter is not supported in this version.)
724 *
725 * DISCUSSION
726 *
727 * The PKZIP "deflate" file format interprets compressed file data
728 * as a sequence of bits. Multi-bit strings in the file may cross
729 * byte boundaries without restriction.
730 *
731 * The first bit of each byte is the low-order bit.
732 *
733 * The routines in this file allow a variable-length bit value to
734 * be output right-to-left (useful for literal values). For
735 * left-to-right output (useful for code strings from the tree routines),
736 * the bits must have been reversed first with bi_reverse().
737 *
738 * For in-memory compression, the compressed bit stream goes directly
739 * into the requested output buffer. The input data is read in blocks
740 * by the mem_read() function. The buffer is limited to 64K on 16 bit
741 * machines.
742 *
743 * INTERFACE
744 *
745 * void bi_init (FILE *zipfile)
746 * Initialize the bit string routines.
747 *
748 * void send_bits (int value, int length)
749 * Write out a bit string, taking the source bits right to
750 * left.
751 *
752 * int bi_reverse (int value, int length)
753 * Reverse the bits of a bit string, taking the source bits left to
754 * right and emitting them right to left.
755 *
756 * void bi_windup (void)
757 * Write out any remaining bits in an incomplete byte.
758 *
759 * void copy_block(char *buf, unsigned len, int header)
760 * Copy a stored block to the zip file, storing first the length and
761 * its one's complement if requested.
762 *
763 */
764
765#ifdef DEBUG
766# include <stdio.h>
767#endif
768
769#ifdef RCSID
770static char rcsid[] = "$Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $";
771#endif
772
773/* ===========================================================================
774 * Local data used by the "bit string" routines.
775 */
776
777local file_t zfile; /* output gzip file */
778
779local unsigned short bi_buf;
780/* Output buffer. bits are inserted starting at the bottom (least significant
781 * bits).
782 */
783
784#define Buf_size (8 * 2*sizeof(char))
785/* Number of bits used within bi_buf. (bi_buf might be implemented on
786 * more than 16 bits on some systems.)
787 */
788
789local int bi_valid;
790/* Number of valid bits in bi_buf. All bits above the last valid bit
791 * are always zero.
792 */
793
794int (*read_buf) OF((char *buf, unsigned size));
795/* Current input function. Set to mem_read for in-memory compression */
796
797#ifdef DEBUG
798 ulg bits_sent; /* bit length of the compressed data */
799#endif
800
801/* ===========================================================================
802 * Initialize the bit string routines.
803 */
804void bi_init (zipfile)
805 file_t zipfile; /* output zip file, NO_FILE for in-memory compression */
806{
807 zfile = zipfile;
808 bi_buf = 0;
809 bi_valid = 0;
810#ifdef DEBUG
811 bits_sent = 0L;
812#endif
813
814 /* Set the defaults for file compression. They are set by memcompress
815 * for in-memory compression.
816 */
817 if (zfile != NO_FILE) {
818 read_buf = file_read;
819 }
820}
821
822/* ===========================================================================
823 * Send a value on a given number of bits.
824 * IN assertion: length <= 16 and value fits in length bits.
825 */
826void send_bits(value, length)
827 int value; /* value to send */
828 int length; /* number of bits */
829{
830#ifdef DEBUG
831 Tracev((stderr," l %2d v %4x ", length, value));
832 Assert(length > 0 && length <= 15, "invalid length");
833 bits_sent += (ulg)length;
834#endif
835 /* If not enough room in bi_buf, use (valid) bits from bi_buf and
836 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
837 * unused bits in value.
838 */
839 if (bi_valid > (int)Buf_size - length) {
840 bi_buf |= (value << bi_valid);
841 put_short(bi_buf);
842 bi_buf = (ush)value >> (Buf_size - bi_valid);
843 bi_valid += length - Buf_size;
844 } else {
845 bi_buf |= value << bi_valid;
846 bi_valid += length;
847 }
848}
849
850/* ===========================================================================
851 * Reverse the first len bits of a code, using straightforward code (a faster
852 * method would use a table)
853 * IN assertion: 1 <= len <= 15
854 */
855unsigned bi_reverse(code, len)
856 unsigned code; /* the value to invert */
857 int len; /* its bit length */
858{
859 register unsigned res = 0;
860 do {
861 res |= code & 1;
862 code >>= 1, res <<= 1;
863 } while (--len > 0);
864 return res >> 1;
865}
866
867/* ===========================================================================
868 * Write out any remaining bits in an incomplete byte.
869 */
870void bi_windup()
871{
872 if (bi_valid > 8) {
873 put_short(bi_buf);
874 } else if (bi_valid > 0) {
875 put_byte(bi_buf);
876 }
877 bi_buf = 0;
878 bi_valid = 0;
879#ifdef DEBUG
880 bits_sent = (bits_sent+7) & ~7;
881#endif
882}
883
884/* ===========================================================================
885 * Copy a stored block to the zip file, storing first the length and its
886 * one's complement if requested.
887 */
888void copy_block(buf, len, header)
889 char *buf; /* the input data */
890 unsigned len; /* its length */
891 int header; /* true if block header must be written */
892{
893 bi_windup(); /* align on byte boundary */
894
895 if (header) {
896 put_short((ush)len);
897 put_short((ush)~len);
898#ifdef DEBUG
899 bits_sent += 2*16;
900#endif
901 }
902#ifdef DEBUG
903 bits_sent += (ulg)len<<3;
904#endif
905 while (len--) {
906#ifdef CRYPT
907 int t;
908 if (key) zencode(*buf, t);
909#endif
910 put_byte(*buf++);
911 }
912}
913/* deflate.c -- compress data using the deflation algorithm
914 * Copyright (C) 1992-1993 Jean-loup Gailly
915 * This is free software; you can redistribute it and/or modify it under the
916 * terms of the GNU General Public License, see the file COPYING.
917 */
918
919/*
920 * PURPOSE
921 *
922 * Identify new text as repetitions of old text within a fixed-
923 * length sliding window trailing behind the new text.
924 *
925 * DISCUSSION
926 *
927 * The "deflation" process depends on being able to identify portions
928 * of the input text which are identical to earlier input (within a
929 * sliding window trailing behind the input currently being processed).
930 *
931 * The most straightforward technique turns out to be the fastest for
932 * most input files: try all possible matches and select the longest.
933 * The key feature of this algorithm is that insertions into the string
934 * dictionary are very simple and thus fast, and deletions are avoided
935 * completely. Insertions are performed at each input character, whereas
936 * string matches are performed only when the previous match ends. So it
937 * is preferable to spend more time in matches to allow very fast string
938 * insertions and avoid deletions. The matching algorithm for small
939 * strings is inspired from that of Rabin & Karp. A brute force approach
940 * is used to find longer strings when a small match has been found.
941 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
942 * (by Leonid Broukhis).
943 * A previous version of this file used a more sophisticated algorithm
944 * (by Fiala and Greene) which is guaranteed to run in linear amortized
945 * time, but has a larger average cost, uses more memory and is patented.
946 * However the F&G algorithm may be faster for some highly redundant
947 * files if the parameter max_chain_length (described below) is too large.
948 *
949 * ACKNOWLEDGEMENTS
950 *
951 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
952 * I found it in 'freeze' written by Leonid Broukhis.
953 * Thanks to many info-zippers for bug reports and testing.
954 *
955 * REFERENCES
956 *
957 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
958 *
959 * A description of the Rabin and Karp algorithm is given in the book
960 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
961 *
962 * Fiala,E.R., and Greene,D.H.
963 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
964 *
965 * INTERFACE
966 *
967 * void lm_init (int pack_level, ush *flags)
968 * Initialize the "longest match" routines for a new file
969 *
970 * ulg deflate (void)
971 * Processes a new input file and return its compressed length. Sets
972 * the compressed length, crc, deflate flags and internal file
973 * attributes.
974 */
975
976#include <stdio.h>
977
978#ifdef RCSID
979static char rcsid[] = "$Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $";
980#endif
981
982/* ===========================================================================
983 * Configuration parameters
984 */
985
986/* Compile with MEDIUM_MEM to reduce the memory requirements or
987 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
988 * entire input file can be held in memory (not possible on 16 bit systems).
989 * Warning: defining these symbols affects HASH_BITS (see below) and thus
990 * affects the compression ratio. The compressed output
991 * is still correct, and might even be smaller in some cases.
992 */
993
994#ifdef SMALL_MEM
995# define HASH_BITS 13 /* Number of bits used to hash strings */
996#endif
997#ifdef MEDIUM_MEM
998# define HASH_BITS 14
999#endif
1000#ifndef HASH_BITS
1001# define HASH_BITS 15
1002 /* For portability to 16 bit machines, do not use values above 15. */
1003#endif
1004
1005/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
1006 * window with tab_suffix. Check that we can do this:
1007 */
1008#if (WSIZE<<1) > (1<<BITS)
1009 error: cannot overlay window with tab_suffix and prev with tab_prefix0
1010#endif
1011#if HASH_BITS > BITS-1
1012 error: cannot overlay head with tab_prefix1
1013#endif
1014
1015#define HASH_SIZE (unsigned)(1<<HASH_BITS)
1016#define HASH_MASK (HASH_SIZE-1)
1017#define WMASK (WSIZE-1)
1018/* HASH_SIZE and WSIZE must be powers of two */
1019
1020#define NIL 0
1021/* Tail of hash chains */
1022
1023#define FAST 4
1024#define SLOW 2
1025/* speed options for the general purpose bit flag */
1026
1027#ifndef TOO_FAR
1028# define TOO_FAR 4096
1029#endif
1030/* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
1031
1032/* ===========================================================================
1033 * Local data used by the "longest match" routines.
1034 */
1035
1036typedef ush Pos;
1037typedef unsigned IPos;
1038/* A Pos is an index in the character window. We use short instead of int to
1039 * save space in the various tables. IPos is used only for parameter passing.
1040 */
1041
1042/* DECLARE(uch, window, 2L*WSIZE); */
1043/* Sliding window. Input bytes are read into the second half of the window,
1044 * and move to the first half later to keep a dictionary of at least WSIZE
1045 * bytes. With this organization, matches are limited to a distance of
1046 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
1047 * performed with a length multiple of the block size. Also, it limits
1048 * the window size to 64K, which is quite useful on MSDOS.
1049 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
1050 * be less efficient).
1051 */
1052
1053/* DECLARE(Pos, prev, WSIZE); */
1054/* Link to older string with same hash index. To limit the size of this
1055 * array to 64K, this link is maintained only for the last 32K strings.
1056 * An index in this array is thus a window index modulo 32K.
1057 */
1058
1059/* DECLARE(Pos, head, 1<<HASH_BITS); */
1060/* Heads of the hash chains or NIL. */
1061
1062ulg window_size = (ulg)2*WSIZE;
1063/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
1064 * input file length plus MIN_LOOKAHEAD.
1065 */
1066
1067long block_start;
1068/* window position at the beginning of the current output block. Gets
1069 * negative when the window is moved backwards.
1070 */
1071
1072local unsigned ins_h; /* hash index of string to be inserted */
1073
1074#define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
1075/* Number of bits by which ins_h and del_h must be shifted at each
1076 * input step. It must be such that after MIN_MATCH steps, the oldest
1077 * byte no longer takes part in the hash key, that is:
1078 * H_SHIFT * MIN_MATCH >= HASH_BITS
1079 */
1080
1081unsigned int near prev_length;
1082/* Length of the best match at previous step. Matches not greater than this
1083 * are discarded. This is used in the lazy match evaluation.
1084 */
1085
1086 unsigned near strstart; /* start of string to insert */
1087 unsigned near match_start; /* start of matching string */
1088local int eofile; /* flag set at end of input file */
1089local unsigned lookahead; /* number of valid bytes ahead in window */
1090
1091unsigned near max_chain_length;
1092/* To speed up deflation, hash chains are never searched beyond this length.
1093 * A higher limit improves compression ratio but degrades the speed.
1094 */
1095
1096local unsigned int max_lazy_match;
1097/* Attempt to find a better match only when the current match is strictly
1098 * smaller than this value. This mechanism is used only for compression
1099 * levels >= 4.
1100 */
1101#define max_insert_length max_lazy_match
1102/* Insert new strings in the hash table only if the match length
1103 * is not greater than this length. This saves time but degrades compression.
1104 * max_insert_length is used only for compression levels <= 3.
1105 */
1106
1107unsigned near good_match;
1108/* Use a faster search when the previous match is longer than this */
1109
1110
1111/* Values for max_lazy_match, good_match and max_chain_length, depending on
1112 * the desired pack level (0..9). The values given below have been tuned to
1113 * exclude worst case performance for pathological files. Better values may be
1114 * found for specific files.
1115 */
1116
1117typedef struct config {
1118 ush good_length; /* reduce lazy search above this match length */
1119 ush max_lazy; /* do not perform lazy search above this match length */
1120 ush nice_length; /* quit search above this match length */
1121 ush max_chain;
1122} config;
1123
1124#ifdef FULL_SEARCH
1125# define nice_match MAX_MATCH
1126#else
1127 int near nice_match; /* Stop searching when current match exceeds this */
1128#endif
1129
1130local config configuration_table =
1131/* 9 */ {32, 258, 258, 4096}; /* maximum compression */
1132
1133/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
1134 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
1135 * meaning.
1136 */
1137
1138#define EQUAL 0
1139/* result of memcmp for equal strings */
1140
1141/* ===========================================================================
1142 * Prototypes for local functions.
1143 */
1144local void fill_window OF((void));
1145
1146 int longest_match OF((IPos cur_match));
1147#ifdef ASMV
1148 void match_init OF((void)); /* asm code initialization */
1149#endif
1150
1151#ifdef DEBUG
1152local void check_match OF((IPos start, IPos match, int length));
1153#endif
1154
1155/* ===========================================================================
1156 * Update a hash value with the given input byte
1157 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
1158 * input characters, so that a running hash key can be computed from the
1159 * previous key instead of complete recalculation each time.
1160 */
1161#define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
1162
1163/* ===========================================================================
1164 * Insert string s in the dictionary and set match_head to the previous head
1165 * of the hash chain (the most recent string with same hash key). Return
1166 * the previous length of the hash chain.
1167 * IN assertion: all calls to to INSERT_STRING are made with consecutive
1168 * input characters and the first MIN_MATCH bytes of s are valid
1169 * (except for the last MIN_MATCH-1 bytes of the input file).
1170 */
1171#define INSERT_STRING(s, match_head) \
1172 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
1173 prev[(s) & WMASK] = match_head = head[ins_h], \
1174 head[ins_h] = (s))
1175
1176/* ===========================================================================
1177 * Initialize the "longest match" routines for a new file
1178 */
1179void lm_init (flags)
1180 ush *flags; /* general purpose bit flag */
1181{
1182 register unsigned j;
1183
1184 /* Initialize the hash table. */
1185#if defined(MAXSEG_64K) && HASH_BITS == 15
1186 for (j = 0; j < HASH_SIZE; j++) head[j] = NIL;
1187#else
1188 memzero((char*)head, HASH_SIZE*sizeof(*head));
1189#endif
1190 /* prev will be initialized on the fly */
1191
1192 /* Set the default configuration parameters:
1193 */
1194 max_lazy_match = configuration_table.max_lazy;
1195 good_match = configuration_table.good_length;
1196#ifndef FULL_SEARCH
1197 nice_match = configuration_table.nice_length;
1198#endif
1199 max_chain_length = configuration_table.max_chain;
1200 *flags |= SLOW;
1201 /* ??? reduce max_chain_length for binary files */
1202
1203 strstart = 0;
1204 block_start = 0L;
1205#ifdef ASMV
1206 match_init(); /* initialize the asm code */
1207#endif
1208
1209 lookahead = read_buf((char*)window,
1210 sizeof(int) <= 2 ? (unsigned)WSIZE : 2*WSIZE);
1211
1212 if (lookahead == 0 || lookahead == (unsigned)EOF) {
1213 eofile = 1, lookahead = 0;
1214 return;
1215 }
1216 eofile = 0;
1217 /* Make sure that we always have enough lookahead. This is important
1218 * if input comes from a device such as a tty.
1219 */
1220 while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
1221
1222 ins_h = 0;
1223 for (j=0; j<MIN_MATCH-1; j++) UPDATE_HASH(ins_h, window[j]);
1224 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
1225 * not important since only literal bytes will be emitted.
1226 */
1227}
1228
1229/* ===========================================================================
1230 * Set match_start to the longest match starting at the given string and
1231 * return its length. Matches shorter or equal to prev_length are discarded,
1232 * in which case the result is equal to prev_length and match_start is
1233 * garbage.
1234 * IN assertions: cur_match is the head of the hash chain for the current
1235 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
1236 */
1237#ifndef ASMV
1238/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
1239 * match.s. The code is functionally equivalent, so you can use the C version
1240 * if desired.
1241 */
1242int longest_match(cur_match)
1243 IPos cur_match; /* current match */
1244{
1245 unsigned chain_length = max_chain_length; /* max hash chain length */
1246 register uch *scan = window + strstart; /* current string */
1247 register uch *match; /* matched string */
1248 register int len; /* length of current match */
1249 int best_len = prev_length; /* best match length so far */
1250 IPos limit = strstart > (IPos)MAX_DIST ? strstart - (IPos)MAX_DIST : NIL;
1251 /* Stop when cur_match becomes <= limit. To simplify the code,
1252 * we prevent matches with the string of window index 0.
1253 */
1254
1255/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
1256 * It is easy to get rid of this optimization if necessary.
1257 */
1258#if HASH_BITS < 8 || MAX_MATCH != 258
1259 error: Code too clever
1260#endif
1261
1262#ifdef UNALIGNED_OK
1263 /* Compare two bytes at a time. Note: this is not always beneficial.
1264 * Try with and without -DUNALIGNED_OK to check.
1265 */
1266 register uch *strend = window + strstart + MAX_MATCH - 1;
1267 register ush scan_start = *(ush*)scan;
1268 register ush scan_end = *(ush*)(scan+best_len-1);
1269#else
1270 register uch *strend = window + strstart + MAX_MATCH;
1271 register uch scan_end1 = scan[best_len-1];
1272 register uch scan_end = scan[best_len];
1273#endif
1274
1275 /* Do not waste too much time if we already have a good match: */
1276 if (prev_length >= good_match) {
1277 chain_length >>= 2;
1278 }
1279 Assert(strstart <= window_size-MIN_LOOKAHEAD, "insufficient lookahead");
1280
1281 do {
1282 Assert(cur_match < strstart, "no future");
1283 match = window + cur_match;
1284
1285 /* Skip to next match if the match length cannot increase
1286 * or if the match length is less than 2:
1287 */
1288#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
1289 /* This code assumes sizeof(unsigned short) == 2. Do not use
1290 * UNALIGNED_OK if your compiler uses a different size.
1291 */
1292 if (*(ush*)(match+best_len-1) != scan_end ||
1293 *(ush*)match != scan_start) continue;
1294
1295 /* It is not necessary to compare scan[2] and match[2] since they are
1296 * always equal when the other bytes match, given that the hash keys
1297 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
1298 * strstart+3, +5, ... up to strstart+257. We check for insufficient
1299 * lookahead only every 4th comparison; the 128th check will be made
1300 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
1301 * necessary to put more guard bytes at the end of the window, or
1302 * to check more often for insufficient lookahead.
1303 */
1304 scan++, match++;
1305 do {
1306 } while (*(ush*)(scan+=2) == *(ush*)(match+=2) &&
1307 *(ush*)(scan+=2) == *(ush*)(match+=2) &&
1308 *(ush*)(scan+=2) == *(ush*)(match+=2) &&
1309 *(ush*)(scan+=2) == *(ush*)(match+=2) &&
1310 scan < strend);
1311 /* The funny "do {}" generates better code on most compilers */
1312
1313 /* Here, scan <= window+strstart+257 */
1314 Assert(scan <= window+(unsigned)(window_size-1), "wild scan");
1315 if (*scan == *match) scan++;
1316
1317 len = (MAX_MATCH - 1) - (int)(strend-scan);
1318 scan = strend - (MAX_MATCH-1);
1319
1320#else /* UNALIGNED_OK */
1321
1322 if (match[best_len] != scan_end ||
1323 match[best_len-1] != scan_end1 ||
1324 *match != *scan ||
1325 *++match != scan[1]) continue;
1326
1327 /* The check at best_len-1 can be removed because it will be made
1328 * again later. (This heuristic is not always a win.)
1329 * It is not necessary to compare scan[2] and match[2] since they
1330 * are always equal when the other bytes match, given that
1331 * the hash keys are equal and that HASH_BITS >= 8.
1332 */
1333 scan += 2, match++;
1334
1335 /* We check for insufficient lookahead only every 8th comparison;
1336 * the 256th check will be made at strstart+258.
1337 */
1338 do {
1339 } while (*++scan == *++match && *++scan == *++match &&
1340 *++scan == *++match && *++scan == *++match &&
1341 *++scan == *++match && *++scan == *++match &&
1342 *++scan == *++match && *++scan == *++match &&
1343 scan < strend);
1344
1345 len = MAX_MATCH - (int)(strend - scan);
1346 scan = strend - MAX_MATCH;
1347
1348#endif /* UNALIGNED_OK */
1349
1350 if (len > best_len) {
1351 match_start = cur_match;
1352 best_len = len;
1353 if (len >= nice_match) break;
1354#ifdef UNALIGNED_OK
1355 scan_end = *(ush*)(scan+best_len-1);
1356#else
1357 scan_end1 = scan[best_len-1];
1358 scan_end = scan[best_len];
1359#endif
1360 }
1361 } while ((cur_match = prev[cur_match & WMASK]) > limit
1362 && --chain_length != 0);
1363
1364 return best_len;
1365}
1366#endif /* ASMV */
1367
1368#ifdef DEBUG
1369/* ===========================================================================
1370 * Check that the match at match_start is indeed a match.
1371 */
1372local void check_match(start, match, length)
1373 IPos start, match;
1374 int length;
1375{
1376 /* check that the match is indeed a match */
1377 if (memcmp((char*)window + match,
1378 (char*)window + start, length) != EQUAL) {
1379 fprintf(stderr,
1380 " start %d, match %d, length %d\n",
1381 start, match, length);
1382 error("invalid match");
1383 }
1384 if (verbose > 1) {
1385 fprintf(stderr,"\\[%d,%d]", start-match, length);
1386 do { putc(window[start++], stderr); } while (--length != 0);
1387 }
1388}
1389#else
1390# define check_match(start, match, length)
1391#endif
1392
1393/* ===========================================================================
1394 * Fill the window when the lookahead becomes insufficient.
1395 * Updates strstart and lookahead, and sets eofile if end of input file.
1396 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
1397 * OUT assertions: at least one byte has been read, or eofile is set;
1398 * file reads are performed for at least two bytes (required for the
1399 * translate_eol option).
1400 */
1401local void fill_window()
1402{
1403 register unsigned n, m;
1404 unsigned more = (unsigned)(window_size - (ulg)lookahead - (ulg)strstart);
1405 /* Amount of free space at the end of the window. */
1406
1407 /* If the window is almost full and there is insufficient lookahead,
1408 * move the upper half to the lower one to make room in the upper half.
1409 */
1410 if (more == (unsigned)EOF) {
1411 /* Very unlikely, but possible on 16 bit machine if strstart == 0
1412 * and lookahead == 1 (input done one byte at time)
1413 */
1414 more--;
1415 } else if (strstart >= WSIZE+MAX_DIST) {
1416 /* By the IN assertion, the window is not empty so we can't confuse
1417 * more == 0 with more == 64K on a 16 bit machine.
1418 */
1419 Assert(window_size == (ulg)2*WSIZE, "no sliding with BIG_MEM");
1420
1421 memcpy((char*)window, (char*)window+WSIZE, (unsigned)WSIZE);
1422 match_start -= WSIZE;
1423 strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */
1424
1425 block_start -= (long) WSIZE;
1426
1427 for (n = 0; n < HASH_SIZE; n++) {
1428 m = head[n];
1429 head[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);
1430 }
1431 for (n = 0; n < WSIZE; n++) {
1432 m = prev[n];
1433 prev[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);
1434 /* If n is not on any hash chain, prev[n] is garbage but
1435 * its value will never be used.
1436 */
1437 }
1438 more += WSIZE;
1439 }
1440 /* At this point, more >= 2 */
1441 if (!eofile) {
1442 n = read_buf((char*)window+strstart+lookahead, more);
1443 if (n == 0 || n == (unsigned)EOF) {
1444 eofile = 1;
1445 } else {
1446 lookahead += n;
1447 }
1448 }
1449}
1450
1451/* ===========================================================================
1452 * Flush the current block, with given end-of-file flag.
1453 * IN assertion: strstart is set to the end of the current match.
1454 */
1455#define FLUSH_BLOCK(eof) \
1456 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
1457 (char*)NULL, (long)strstart - block_start, (eof))
1458
1459/* ===========================================================================
1460 * Same as above, but achieves better compression. We use a lazy
1461 * evaluation for matches: a match is finally adopted only if there is
1462 * no better match at the next window position.
1463 */
1464ulg deflate()
1465{
1466 IPos hash_head; /* head of hash chain */
1467 IPos prev_match; /* previous match */
1468 int flush; /* set if current block must be flushed */
1469 int match_available = 0; /* set if previous match exists */
1470 register unsigned match_length = MIN_MATCH-1; /* length of best match */
1471#ifdef DEBUG
1472 extern long isize; /* byte length of input file, for debug only */
1473#endif
1474
1475 /* Process the input block. */
1476 while (lookahead != 0) {
1477 /* Insert the string window[strstart .. strstart+2] in the
1478 * dictionary, and set hash_head to the head of the hash chain:
1479 */
1480 INSERT_STRING(strstart, hash_head);
1481
1482 /* Find the longest match, discarding those <= prev_length.
1483 */
1484 prev_length = match_length, prev_match = match_start;
1485 match_length = MIN_MATCH-1;
1486
1487 if (hash_head != NIL && prev_length < max_lazy_match &&
1488 strstart - hash_head <= MAX_DIST) {
1489 /* To simplify the code, we prevent matches with the string
1490 * of window index 0 (in particular we have to avoid a match
1491 * of the string with itself at the start of the input file).
1492 */
1493 match_length = longest_match (hash_head);
1494 /* longest_match() sets match_start */
1495 if (match_length > lookahead) match_length = lookahead;
1496
1497 /* Ignore a length 3 match if it is too distant: */
1498 if (match_length == MIN_MATCH && strstart-match_start > TOO_FAR){
1499 /* If prev_match is also MIN_MATCH, match_start is garbage
1500 * but we will ignore the current match anyway.
1501 */
1502 match_length--;
1503 }
1504 }
1505 /* If there was a match at the previous step and the current
1506 * match is not better, output the previous match:
1507 */
1508 if (prev_length >= MIN_MATCH && match_length <= prev_length) {
1509
1510 check_match(strstart-1, prev_match, prev_length);
1511
1512 flush = ct_tally(strstart-1-prev_match, prev_length - MIN_MATCH);
1513
1514 /* Insert in hash table all strings up to the end of the match.
1515 * strstart-1 and strstart are already inserted.
1516 */
1517 lookahead -= prev_length-1;
1518 prev_length -= 2;
1519 do {
1520 strstart++;
1521 INSERT_STRING(strstart, hash_head);
1522 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
1523 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
1524 * these bytes are garbage, but it does not matter since the
1525 * next lookahead bytes will always be emitted as literals.
1526 */
1527 } while (--prev_length != 0);
1528 match_available = 0;
1529 match_length = MIN_MATCH-1;
1530 strstart++;
1531 if (flush) FLUSH_BLOCK(0), block_start = strstart;
1532
1533 } else if (match_available) {
1534 /* If there was no match at the previous position, output a
1535 * single literal. If there was a match but the current match
1536 * is longer, truncate the previous match to a single literal.
1537 */
1538 Tracevv((stderr,"%c",window[strstart-1]));
1539 if (ct_tally (0, window[strstart-1])) {
1540 FLUSH_BLOCK(0), block_start = strstart;
1541 }
1542 strstart++;
1543 lookahead--;
1544 } else {
1545 /* There is no previous match to compare with, wait for
1546 * the next step to decide.
1547 */
1548 match_available = 1;
1549 strstart++;
1550 lookahead--;
1551 }
1552 Assert (strstart <= isize && lookahead <= isize, "a bit too far");
1553
1554 /* Make sure that we always have enough lookahead, except
1555 * at the end of the input file. We need MAX_MATCH bytes
1556 * for the next match, plus MIN_MATCH bytes to insert the
1557 * string following the next match.
1558 */
1559 while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
1560 }
1561 if (match_available) ct_tally (0, window[strstart-1]);
1562
1563 return FLUSH_BLOCK(1); /* eof */
1564}
1565/* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface
1566 * Copyright (C) 1992-1993 Jean-loup Gailly
1567 * The unzip code was written and put in the public domain by Mark Adler.
1568 * Portions of the lzw code are derived from the public domain 'compress'
1569 * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies,
1570 * Ken Turkowski, Dave Mack and Peter Jannesen.
1571 *
1572 * See the license_msg below and the file COPYING for the software license.
1573 * See the file algorithm.doc for the compression algorithms and file formats.
1574 */
1575
1576/* Compress files with zip algorithm and 'compress' interface.
1577 * See usage() and help() functions below for all options.
1578 * Outputs:
1579 * file.gz: compressed file with same mode, owner, and utimes
1580 * or stdout with -c option or if stdin used as input.
1581 * If the output file name had to be truncated, the original name is kept
1582 * in the compressed file.
1583 * On MSDOS, file.tmp -> file.tmz. On VMS, file.tmp -> file.tmp-gz.
1584 *
1585 * Using gz on MSDOS would create too many file name conflicts. For
1586 * example, foo.txt -> foo.tgz (.tgz must be reserved as shorthand for
1587 * tar.gz). Similarly, foo.dir and foo.doc would both be mapped to foo.dgz.
1588 * I also considered 12345678.txt -> 12345txt.gz but this truncates the name
1589 * too heavily. There is no ideal solution given the MSDOS 8+3 limitation.
1590 *
1591 * For the meaning of all compilation flags, see comments in Makefile.in.
1592 */
1593
1594#ifdef RCSID
1595static char rcsid[] = "$Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $";
1596#endif
1597
1598#include <ctype.h>
1599#include <sys/types.h>
1600#include <signal.h>
1601#include <sys/stat.h>
1602#include <errno.h>
1603
1604 /* configuration */
1605
1606#ifdef NO_TIME_H
1607# include <sys/time.h>
1608#else
1609# include <time.h>
1610#endif
1611
1612#ifndef NO_FCNTL_H
1613# include <fcntl.h>
1614#endif
1615
1616#ifdef HAVE_UNISTD_H
1617# include <unistd.h>
1618#endif
1619
1620#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
1621# include <stdlib.h>
1622#else
1623 extern int errno;
1624#endif
1625
1626#if defined(DIRENT)
1627# include <dirent.h>
1628 typedef struct dirent dir_type;
1629# define NLENGTH(dirent) ((int)strlen((dirent)->d_name))
1630# define DIR_OPT "DIRENT"
1631#else
1632# define NLENGTH(dirent) ((dirent)->d_namlen)
1633# ifdef SYSDIR
1634# include <sys/dir.h>
1635 typedef struct direct dir_type;
1636# define DIR_OPT "SYSDIR"
1637# else
1638# ifdef SYSNDIR
1639# include <sys/ndir.h>
1640 typedef struct direct dir_type;
1641# define DIR_OPT "SYSNDIR"
1642# else
1643# ifdef NDIR
1644# include <ndir.h>
1645 typedef struct direct dir_type;
1646# define DIR_OPT "NDIR"
1647# else
1648# define NO_DIR
1649# define DIR_OPT "NO_DIR"
1650# endif
1651# endif
1652# endif
1653#endif
1654
1655#ifndef NO_UTIME
1656# ifndef NO_UTIME_H
1657# include <utime.h>
1658# define TIME_OPT "UTIME"
1659# else
1660# ifdef HAVE_SYS_UTIME_H
1661# include <sys/utime.h>
1662# define TIME_OPT "SYS_UTIME"
1663# else
1664 struct utimbuf {
1665 time_t actime;
1666 time_t modtime;
1667 };
1668# define TIME_OPT ""
1669# endif
1670# endif
1671#else
1672# define TIME_OPT "NO_UTIME"
1673#endif
1674
1675#if !defined(S_ISDIR) && defined(S_IFDIR)
1676# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
1677#endif
1678#if !defined(S_ISREG) && defined(S_IFREG)
1679# define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
1680#endif
1681
1682typedef RETSIGTYPE (*sig_type) OF((int));
1683
1684#ifndef O_BINARY
1685# define O_BINARY 0 /* creation mode for open() */
1686#endif
1687
1688#ifndef O_CREAT
1689 /* Pure BSD system? */
1690# include <sys/file.h>
1691# ifndef O_CREAT
1692# define O_CREAT FCREAT
1693# endif
1694# ifndef O_EXCL
1695# define O_EXCL FEXCL
1696# endif
1697#endif
1698
1699#ifndef S_IRUSR
1700# define S_IRUSR 0400
1701#endif
1702#ifndef S_IWUSR
1703# define S_IWUSR 0200
1704#endif
1705#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
1706
1707#ifndef MAX_PATH_LEN
1708# define MAX_PATH_LEN 1024 /* max pathname length */
1709#endif
1710
1711#ifndef SEEK_END
1712# define SEEK_END 2
1713#endif
1714
1715#ifdef NO_OFF_T
1716 typedef long off_t;
1717 off_t lseek OF((int fd, off_t offset, int whence));
1718#endif
1719
1720/* Separator for file name parts (see shorten_name()) */
1721#ifdef NO_MULTIPLE_DOTS
1722# define PART_SEP "-"
1723#else
1724# define PART_SEP "."
1725#endif
1726
1727 /* global buffers */
1728
1729DECLARE(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
1730DECLARE(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
1731DECLARE(ush, d_buf, DIST_BUFSIZE);
1732DECLARE(uch, window, 2L*WSIZE);
1733#ifndef MAXSEG_64K
1734 DECLARE(ush, tab_prefix, 1L<<BITS);
1735#else
1736 DECLARE(ush, tab_prefix0, 1L<<(BITS-1));
1737 DECLARE(ush, tab_prefix1, 1L<<(BITS-1));
1738#endif
1739
1740 /* local variables */
1741
1742int ascii = 0; /* convert end-of-lines to local OS conventions */
1743int to_stdout = 0; /* output to stdout (-c) */
1744int decompress = 0; /* decompress (-d) */
1745int no_name = -1; /* don't save or restore the original file name */
1746int no_time = -1; /* don't save or restore the original file time */
1747int foreground; /* set if program run in foreground */
1748char *progname; /* program name */
1749static int method = DEFLATED;/* compression method */
1750static int exit_code = OK; /* program exit code */
1751int save_orig_name; /* set if original name must be saved */
1752int last_member; /* set for .zip and .Z files */
1753int part_nb; /* number of parts in .gz file */
1754long time_stamp; /* original time stamp (modification time) */
1755long ifile_size; /* input file size, -1 for devices (debug only) */
1756char *env; /* contents of GZIP env variable */
1757char **args = NULL; /* argv pointer if GZIP env variable defined */
1758char z_suffix[MAX_SUFFIX+1]; /* default suffix (can be set with --suffix) */
1759int z_len; /* strlen(z_suffix) */
1760
1761long bytes_in; /* number of input bytes */
1762long bytes_out; /* number of output bytes */
1763char ifname[MAX_PATH_LEN]; /* input file name */
1764char ofname[MAX_PATH_LEN]; /* output file name */
1765int remove_ofname = 0; /* remove output file on error */
1766struct stat istat; /* status for input file */
1767int ifd; /* input file descriptor */
1768int ofd; /* output file descriptor */
1769unsigned insize; /* valid bytes in inbuf */
1770unsigned inptr; /* index of next byte to be processed in inbuf */
1771unsigned outcnt; /* bytes in output buffer */
1772
1773/* local functions */
1774
1775local void treat_stdin OF((void));
1776static int (*work) OF((int infile, int outfile)) = zip; /* function to call */
1777
1778#define strequ(s1, s2) (strcmp((s1),(s2)) == 0)
1779
1780/* ======================================================================== */
1781// int main (argc, argv)
1782// int argc;
1783// char **argv;
1784int gzip_main(struct FileInfo * i, int argc, char * * argv)
1785{
1786 foreground = signal(SIGINT, SIG_IGN) != SIG_IGN;
1787 if (foreground) {
1788 (void) signal (SIGINT, (sig_type)abort_gzip);
1789 }
1790#ifdef SIGTERM
1791 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) {
1792 (void) signal(SIGTERM, (sig_type)abort_gzip);
1793 }
1794#endif
1795#ifdef SIGHUP
1796 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {
1797 (void) signal(SIGHUP, (sig_type)abort_gzip);
1798 }
1799#endif
1800
1801 strncpy(z_suffix, Z_SUFFIX, sizeof(z_suffix)-1);
1802 z_len = strlen(z_suffix);
1803
1804 to_stdout = 1;
1805
1806 /* Allocate all global buffers (for DYN_ALLOC option) */
1807 ALLOC(uch, inbuf, INBUFSIZ +INBUF_EXTRA);
1808 ALLOC(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA);
1809 ALLOC(ush, d_buf, DIST_BUFSIZE);
1810 ALLOC(uch, window, 2L*WSIZE);
1811#ifndef MAXSEG_64K
1812 ALLOC(ush, tab_prefix, 1L<<BITS);
1813#else
1814 ALLOC(ush, tab_prefix0, 1L<<(BITS-1));
1815 ALLOC(ush, tab_prefix1, 1L<<(BITS-1));
1816#endif
1817
1818 /* And get to work */
1819 treat_stdin();
1820 do_exit(exit_code);
1821 return exit_code; /* just to avoid lint warning */
1822}
1823
1824/* ========================================================================
1825 * Compress or decompress stdin
1826 */
1827local void treat_stdin()
1828{
1829 SET_BINARY_MODE(fileno(stdout));
1830 strcpy(ifname, "stdin");
1831 strcpy(ofname, "stdout");
1832
1833 /* Get the time stamp on the input file. */
1834 time_stamp = 0; /* time unknown by default */
1835
1836 ifile_size = -1L; /* convention for unknown size */
1837
1838 clear_bufs(); /* clear input and output buffers */
1839 to_stdout = 1;
1840 part_nb = 0;
1841
1842 /* Actually do the compression/decompression. Loop over zipped members.
1843 */
1844 if ((*work)(fileno(stdin), fileno(stdout)) != OK) return;
1845}
1846
1847/* ========================================================================
1848 * Free all dynamically allocated variables and exit with the given code.
1849 */
1850local void do_exit(int exitcode)
1851{
1852 static int in_exit = 0;
1853
1854 if (in_exit) exit(exitcode);
1855 in_exit = 1;
1856 if (env != NULL) free(env), env = NULL;
1857 if (args != NULL) free((char*)args), args = NULL;
1858 FREE(inbuf);
1859 FREE(outbuf);
1860 FREE(d_buf);
1861 FREE(window);
1862#ifndef MAXSEG_64K
1863 FREE(tab_prefix);
1864#else
1865 FREE(tab_prefix0);
1866 FREE(tab_prefix1);
1867#endif
1868 exit(exitcode);
1869}
1870/* trees.c -- output deflated data using Huffman coding
1871 * Copyright (C) 1992-1993 Jean-loup Gailly
1872 * This is free software; you can redistribute it and/or modify it under the
1873 * terms of the GNU General Public License, see the file COPYING.
1874 */
1875
1876/*
1877 * PURPOSE
1878 *
1879 * Encode various sets of source values using variable-length
1880 * binary code trees.
1881 *
1882 * DISCUSSION
1883 *
1884 * The PKZIP "deflation" process uses several Huffman trees. The more
1885 * common source values are represented by shorter bit sequences.
1886 *
1887 * Each code tree is stored in the ZIP file in a compressed form
1888 * which is itself a Huffman encoding of the lengths of
1889 * all the code strings (in ascending order by source values).
1890 * The actual code strings are reconstructed from the lengths in
1891 * the UNZIP process, as described in the "application note"
1892 * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program.
1893 *
1894 * REFERENCES
1895 *
1896 * Lynch, Thomas J.
1897 * Data Compression: Techniques and Applications, pp. 53-55.
1898 * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7.
1899 *
1900 * Storer, James A.
1901 * Data Compression: Methods and Theory, pp. 49-50.
1902 * Computer Science Press, 1988. ISBN 0-7167-8156-5.
1903 *
1904 * Sedgewick, R.
1905 * Algorithms, p290.
1906 * Addison-Wesley, 1983. ISBN 0-201-06672-6.
1907 *
1908 * INTERFACE
1909 *
1910 * void ct_init (ush *attr, int *methodp)
1911 * Allocate the match buffer, initialize the various tables and save
1912 * the location of the internal file attribute (ascii/binary) and
1913 * method (DEFLATE/STORE)
1914 *
1915 * void ct_tally (int dist, int lc);
1916 * Save the match info and tally the frequency counts.
1917 *
1918 * long flush_block (char *buf, ulg stored_len, int eof)
1919 * Determine the best encoding for the current block: dynamic trees,
1920 * static trees or store, and output the encoded block to the zip
1921 * file. Returns the total compressed length for the file so far.
1922 *
1923 */
1924
1925#include <ctype.h>
1926
1927#ifdef RCSID
1928static char rcsid[] = "$Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $";
1929#endif
1930
1931/* ===========================================================================
1932 * Constants
1933 */
1934
1935#define MAX_BITS 15
1936/* All codes must not exceed MAX_BITS bits */
1937
1938#define MAX_BL_BITS 7
1939/* Bit length codes must not exceed MAX_BL_BITS bits */
1940
1941#define LENGTH_CODES 29
1942/* number of length codes, not counting the special END_BLOCK code */
1943
1944#define LITERALS 256
1945/* number of literal bytes 0..255 */
1946
1947#define END_BLOCK 256
1948/* end of block literal code */
1949
1950#define L_CODES (LITERALS+1+LENGTH_CODES)
1951/* number of Literal or Length codes, including the END_BLOCK code */
1952
1953#define D_CODES 30
1954/* number of distance codes */
1955
1956#define BL_CODES 19
1957/* number of codes used to transfer the bit lengths */
1958
1959
1960local int near extra_lbits[LENGTH_CODES] /* extra bits for each length code */
1961 = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0};
1962
1963local int near extra_dbits[D_CODES] /* extra bits for each distance code */
1964 = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
1965
1966local int near extra_blbits[BL_CODES]/* extra bits for each bit length code */
1967 = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7};
1968
1969#define STORED_BLOCK 0
1970#define STATIC_TREES 1
1971#define DYN_TREES 2
1972/* The three kinds of block type */
1973
1974#ifndef LIT_BUFSIZE
1975# ifdef SMALL_MEM
1976# define LIT_BUFSIZE 0x2000
1977# else
1978# ifdef MEDIUM_MEM
1979# define LIT_BUFSIZE 0x4000
1980# else
1981# define LIT_BUFSIZE 0x8000
1982# endif
1983# endif
1984#endif
1985#ifndef DIST_BUFSIZE
1986# define DIST_BUFSIZE LIT_BUFSIZE
1987#endif
1988/* Sizes of match buffers for literals/lengths and distances. There are
1989 * 4 reasons for limiting LIT_BUFSIZE to 64K:
1990 * - frequencies can be kept in 16 bit counters
1991 * - if compression is not successful for the first block, all input data is
1992 * still in the window so we can still emit a stored block even when input
1993 * comes from standard input. (This can also be done for all blocks if
1994 * LIT_BUFSIZE is not greater than 32K.)
1995 * - if compression is not successful for a file smaller than 64K, we can
1996 * even emit a stored file instead of a stored block (saving 5 bytes).
1997 * - creating new Huffman trees less frequently may not provide fast
1998 * adaptation to changes in the input data statistics. (Take for
1999 * example a binary file with poorly compressible code followed by
2000 * a highly compressible string table.) Smaller buffer sizes give
2001 * fast adaptation but have of course the overhead of transmitting trees
2002 * more frequently.
2003 * - I can't count above 4
2004 * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save
2005 * memory at the expense of compression). Some optimizations would be possible
2006 * if we rely on DIST_BUFSIZE == LIT_BUFSIZE.
2007 */
2008#if LIT_BUFSIZE > INBUFSIZ
2009 error cannot overlay l_buf and inbuf
2010#endif
2011
2012#define REP_3_6 16
2013/* repeat previous bit length 3-6 times (2 bits of repeat count) */
2014
2015#define REPZ_3_10 17
2016/* repeat a zero length 3-10 times (3 bits of repeat count) */
2017
2018#define REPZ_11_138 18
2019/* repeat a zero length 11-138 times (7 bits of repeat count) */
2020
2021/* ===========================================================================
2022 * Local data
2023 */
2024
2025/* Data structure describing a single value and its code string. */
2026typedef struct ct_data {
2027 union {
2028 ush freq; /* frequency count */
2029 ush code; /* bit string */
2030 } fc;
2031 union {
2032 ush dad; /* father node in Huffman tree */
2033 ush len; /* length of bit string */
2034 } dl;
2035} ct_data;
2036
2037#define Freq fc.freq
2038#define Code fc.code
2039#define Dad dl.dad
2040#define Len dl.len
2041
2042#define HEAP_SIZE (2*L_CODES+1)
2043/* maximum heap size */
2044
2045local ct_data near dyn_ltree[HEAP_SIZE]; /* literal and length tree */
2046local ct_data near dyn_dtree[2*D_CODES+1]; /* distance tree */
2047
2048local ct_data near static_ltree[L_CODES+2];
2049/* The static literal tree. Since the bit lengths are imposed, there is no
2050 * need for the L_CODES extra codes used during heap construction. However
2051 * The codes 286 and 287 are needed to build a canonical tree (see ct_init
2052 * below).
2053 */
2054
2055local ct_data near static_dtree[D_CODES];
2056/* The static distance tree. (Actually a trivial tree since all codes use
2057 * 5 bits.)
2058 */
2059
2060local ct_data near bl_tree[2*BL_CODES+1];
2061/* Huffman tree for the bit lengths */
2062
2063typedef struct tree_desc {
2064 ct_data near *dyn_tree; /* the dynamic tree */
2065 ct_data near *static_tree; /* corresponding static tree or NULL */
2066 int near *extra_bits; /* extra bits for each code or NULL */
2067 int extra_base; /* base index for extra_bits */
2068 int elems; /* max number of elements in the tree */
2069 int max_length; /* max bit length for the codes */
2070 int max_code; /* largest code with non zero frequency */
2071} tree_desc;
2072
2073local tree_desc near l_desc =
2074{dyn_ltree, static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS, 0};
2075
2076local tree_desc near d_desc =
2077{dyn_dtree, static_dtree, extra_dbits, 0, D_CODES, MAX_BITS, 0};
2078
2079local tree_desc near bl_desc =
2080{bl_tree, (ct_data near *)0, extra_blbits, 0, BL_CODES, MAX_BL_BITS, 0};
2081
2082
2083local ush near bl_count[MAX_BITS+1];
2084/* number of codes at each bit length for an optimal tree */
2085
2086local uch near bl_order[BL_CODES]
2087 = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15};
2088/* The lengths of the bit length codes are sent in order of decreasing
2089 * probability, to avoid transmitting the lengths for unused bit length codes.
2090 */
2091
2092local int near heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
2093local int heap_len; /* number of elements in the heap */
2094local int heap_max; /* element of largest frequency */
2095/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
2096 * The same heap array is used to build all trees.
2097 */
2098
2099local uch near depth[2*L_CODES+1];
2100/* Depth of each subtree used as tie breaker for trees of equal frequency */
2101
2102local uch length_code[MAX_MATCH-MIN_MATCH+1];
2103/* length code for each normalized match length (0 == MIN_MATCH) */
2104
2105local uch dist_code[512];
2106/* distance codes. The first 256 values correspond to the distances
2107 * 3 .. 258, the last 256 values correspond to the top 8 bits of
2108 * the 15 bit distances.
2109 */
2110
2111local int near base_length[LENGTH_CODES];
2112/* First normalized length for each code (0 = MIN_MATCH) */
2113
2114local int near base_dist[D_CODES];
2115/* First normalized distance for each code (0 = distance of 1) */
2116
2117#define l_buf inbuf
2118/* DECLARE(uch, l_buf, LIT_BUFSIZE); buffer for literals or lengths */
2119
2120/* DECLARE(ush, d_buf, DIST_BUFSIZE); buffer for distances */
2121
2122local uch near flag_buf[(LIT_BUFSIZE/8)];
2123/* flag_buf is a bit array distinguishing literals from lengths in
2124 * l_buf, thus indicating the presence or absence of a distance.
2125 */
2126
2127local unsigned last_lit; /* running index in l_buf */
2128local unsigned last_dist; /* running index in d_buf */
2129local unsigned last_flags; /* running index in flag_buf */
2130local uch flags; /* current flags not yet saved in flag_buf */
2131local uch flag_bit; /* current bit used in flags */
2132/* bits are filled in flags starting at bit 0 (least significant).
2133 * Note: these flags are overkill in the current code since we don't
2134 * take advantage of DIST_BUFSIZE == LIT_BUFSIZE.
2135 */
2136
2137local ulg opt_len; /* bit length of current block with optimal trees */
2138local ulg static_len; /* bit length of current block with static trees */
2139
2140local ulg compressed_len; /* total bit length of compressed file */
2141
2142local ulg input_len; /* total byte length of input file */
2143/* input_len is for debugging only since we can get it by other means. */
2144
2145ush *file_type; /* pointer to UNKNOWN, BINARY or ASCII */
2146int *file_method; /* pointer to DEFLATE or STORE */
2147
2148#ifdef DEBUG
2149extern ulg bits_sent; /* bit length of the compressed data */
2150extern long isize; /* byte length of input file */
2151#endif
2152
2153extern long block_start; /* window offset of current block */
2154extern unsigned near strstart; /* window offset of current string */
2155
2156/* ===========================================================================
2157 * Local (static) routines in this file.
2158 */
2159
2160local void init_block OF((void));
2161local void pqdownheap OF((ct_data near *tree, int k));
2162local void gen_bitlen OF((tree_desc near *desc));
2163local void gen_codes OF((ct_data near *tree, int max_code));
2164local void build_tree OF((tree_desc near *desc));
2165local void scan_tree OF((ct_data near *tree, int max_code));
2166local void send_tree OF((ct_data near *tree, int max_code));
2167local int build_bl_tree OF((void));
2168local void send_all_trees OF((int lcodes, int dcodes, int blcodes));
2169local void compress_block OF((ct_data near *ltree, ct_data near *dtree));
2170local void set_file_type OF((void));
2171
2172
2173#ifndef DEBUG
2174# define send_code(c, tree) send_bits(tree[c].Code, tree[c].Len)
2175 /* Send a code of the given tree. c and tree must not have side effects */
2176
2177#else /* DEBUG */
2178# define send_code(c, tree) \
2179 { if (verbose>1) fprintf(stderr,"\ncd %3d ",(c)); \
2180 send_bits(tree[c].Code, tree[c].Len); }
2181#endif
2182
2183#define d_code(dist) \
2184 ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
2185/* Mapping from a distance to a distance code. dist is the distance - 1 and
2186 * must not have side effects. dist_code[256] and dist_code[257] are never
2187 * used.
2188 */
2189
2190#define MAX(a,b) (a >= b ? a : b)
2191/* the arguments must not have side effects */
2192
2193/* ===========================================================================
2194 * Allocate the match buffer, initialize the various tables and save the
2195 * location of the internal file attribute (ascii/binary) and method
2196 * (DEFLATE/STORE).
2197 */
2198void ct_init(attr, methodp)
2199 ush *attr; /* pointer to internal file attribute */
2200 int *methodp; /* pointer to compression method */
2201{
2202 int n; /* iterates over tree elements */
2203 int bits; /* bit counter */
2204 int length; /* length value */
2205 int code; /* code value */
2206 int dist; /* distance index */
2207
2208 file_type = attr;
2209 file_method = methodp;
2210 compressed_len = input_len = 0L;
2211
2212 if (static_dtree[0].Len != 0) return; /* ct_init already called */
2213
2214 /* Initialize the mapping length (0..255) -> length code (0..28) */
2215 length = 0;
2216 for (code = 0; code < LENGTH_CODES-1; code++) {
2217 base_length[code] = length;
2218 for (n = 0; n < (1<<extra_lbits[code]); n++) {
2219 length_code[length++] = (uch)code;
2220 }
2221 }
2222 Assert (length == 256, "ct_init: length != 256");
2223 /* Note that the length 255 (match length 258) can be represented
2224 * in two different ways: code 284 + 5 bits or code 285, so we
2225 * overwrite length_code[255] to use the best encoding:
2226 */
2227 length_code[length-1] = (uch)code;
2228
2229 /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
2230 dist = 0;
2231 for (code = 0 ; code < 16; code++) {
2232 base_dist[code] = dist;
2233 for (n = 0; n < (1<<extra_dbits[code]); n++) {
2234 dist_code[dist++] = (uch)code;
2235 }
2236 }
2237 Assert (dist == 256, "ct_init: dist != 256");
2238 dist >>= 7; /* from now on, all distances are divided by 128 */
2239 for ( ; code < D_CODES; code++) {
2240 base_dist[code] = dist << 7;
2241 for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {
2242 dist_code[256 + dist++] = (uch)code;
2243 }
2244 }
2245 Assert (dist == 256, "ct_init: 256+dist != 512");
2246
2247 /* Construct the codes of the static literal tree */
2248 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
2249 n = 0;
2250 while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
2251 while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
2252 while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
2253 while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
2254 /* Codes 286 and 287 do not exist, but we must include them in the
2255 * tree construction to get a canonical Huffman tree (longest code
2256 * all ones)
2257 */
2258 gen_codes((ct_data near *)static_ltree, L_CODES+1);
2259
2260 /* The static distance tree is trivial: */
2261 for (n = 0; n < D_CODES; n++) {
2262 static_dtree[n].Len = 5;
2263 static_dtree[n].Code = bi_reverse(n, 5);
2264 }
2265
2266 /* Initialize the first block of the first file: */
2267 init_block();
2268}
2269
2270/* ===========================================================================
2271 * Initialize a new block.
2272 */
2273local void init_block()
2274{
2275 int n; /* iterates over tree elements */
2276
2277 /* Initialize the trees. */
2278 for (n = 0; n < L_CODES; n++) dyn_ltree[n].Freq = 0;
2279 for (n = 0; n < D_CODES; n++) dyn_dtree[n].Freq = 0;
2280 for (n = 0; n < BL_CODES; n++) bl_tree[n].Freq = 0;
2281
2282 dyn_ltree[END_BLOCK].Freq = 1;
2283 opt_len = static_len = 0L;
2284 last_lit = last_dist = last_flags = 0;
2285 flags = 0; flag_bit = 1;
2286}
2287
2288#define SMALLEST 1
2289/* Index within the heap array of least frequent node in the Huffman tree */
2290
2291
2292/* ===========================================================================
2293 * Remove the smallest element from the heap and recreate the heap with
2294 * one less element. Updates heap and heap_len.
2295 */
2296#define pqremove(tree, top) \
2297{\
2298 top = heap[SMALLEST]; \
2299 heap[SMALLEST] = heap[heap_len--]; \
2300 pqdownheap(tree, SMALLEST); \
2301}
2302
2303/* ===========================================================================
2304 * Compares to subtrees, using the tree depth as tie breaker when
2305 * the subtrees have equal frequency. This minimizes the worst case length.
2306 */
2307#define smaller(tree, n, m) \
2308 (tree[n].Freq < tree[m].Freq || \
2309 (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
2310
2311/* ===========================================================================
2312 * Restore the heap property by moving down the tree starting at node k,
2313 * exchanging a node with the smallest of its two sons if necessary, stopping
2314 * when the heap property is re-established (each father smaller than its
2315 * two sons).
2316 */
2317local void pqdownheap(tree, k)
2318 ct_data near *tree; /* the tree to restore */
2319 int k; /* node to move down */
2320{
2321 int v = heap[k];
2322 int j = k << 1; /* left son of k */
2323 while (j <= heap_len) {
2324 /* Set j to the smallest of the two sons: */
2325 if (j < heap_len && smaller(tree, heap[j+1], heap[j])) j++;
2326
2327 /* Exit if v is smaller than both sons */
2328 if (smaller(tree, v, heap[j])) break;
2329
2330 /* Exchange v with the smallest son */
2331 heap[k] = heap[j]; k = j;
2332
2333 /* And continue down the tree, setting j to the left son of k */
2334 j <<= 1;
2335 }
2336 heap[k] = v;
2337}
2338
2339/* ===========================================================================
2340 * Compute the optimal bit lengths for a tree and update the total bit length
2341 * for the current block.
2342 * IN assertion: the fields freq and dad are set, heap[heap_max] and
2343 * above are the tree nodes sorted by increasing frequency.
2344 * OUT assertions: the field len is set to the optimal bit length, the
2345 * array bl_count contains the frequencies for each bit length.
2346 * The length opt_len is updated; static_len is also updated if stree is
2347 * not null.
2348 */
2349local void gen_bitlen(desc)
2350 tree_desc near *desc; /* the tree descriptor */
2351{
2352 ct_data near *tree = desc->dyn_tree;
2353 int near *extra = desc->extra_bits;
2354 int base = desc->extra_base;
2355 int max_code = desc->max_code;
2356 int max_length = desc->max_length;
2357 ct_data near *stree = desc->static_tree;
2358 int h; /* heap index */
2359 int n, m; /* iterate over the tree elements */
2360 int bits; /* bit length */
2361 int xbits; /* extra bits */
2362 ush f; /* frequency */
2363 int overflow = 0; /* number of elements with bit length too large */
2364
2365 for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
2366
2367 /* In a first pass, compute the optimal bit lengths (which may
2368 * overflow in the case of the bit length tree).
2369 */
2370 tree[heap[heap_max]].Len = 0; /* root of the heap */
2371
2372 for (h = heap_max+1; h < HEAP_SIZE; h++) {
2373 n = heap[h];
2374 bits = tree[tree[n].Dad].Len + 1;
2375 if (bits > max_length) bits = max_length, overflow++;
2376 tree[n].Len = (ush)bits;
2377 /* We overwrite tree[n].Dad which is no longer needed */
2378
2379 if (n > max_code) continue; /* not a leaf node */
2380
2381 bl_count[bits]++;
2382 xbits = 0;
2383 if (n >= base) xbits = extra[n-base];
2384 f = tree[n].Freq;
2385 opt_len += (ulg)f * (bits + xbits);
2386 if (stree) static_len += (ulg)f * (stree[n].Len + xbits);
2387 }
2388 if (overflow == 0) return;
2389
2390 Trace((stderr,"\nbit length overflow\n"));
2391 /* This happens for example on obj2 and pic of the Calgary corpus */
2392
2393 /* Find the first bit length which could increase: */
2394 do {
2395 bits = max_length-1;
2396 while (bl_count[bits] == 0) bits--;
2397 bl_count[bits]--; /* move one leaf down the tree */
2398 bl_count[bits+1] += 2; /* move one overflow item as its brother */
2399 bl_count[max_length]--;
2400 /* The brother of the overflow item also moves one step up,
2401 * but this does not affect bl_count[max_length]
2402 */
2403 overflow -= 2;
2404 } while (overflow > 0);
2405
2406 /* Now recompute all bit lengths, scanning in increasing frequency.
2407 * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
2408 * lengths instead of fixing only the wrong ones. This idea is taken
2409 * from 'ar' written by Haruhiko Okumura.)
2410 */
2411 for (bits = max_length; bits != 0; bits--) {
2412 n = bl_count[bits];
2413 while (n != 0) {
2414 m = heap[--h];
2415 if (m > max_code) continue;
2416 if (tree[m].Len != (unsigned) bits) {
2417 Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
2418 opt_len += ((long)bits-(long)tree[m].Len)*(long)tree[m].Freq;
2419 tree[m].Len = (ush)bits;
2420 }
2421 n--;
2422 }
2423 }
2424}
2425
2426/* ===========================================================================
2427 * Generate the codes for a given tree and bit counts (which need not be
2428 * optimal).
2429 * IN assertion: the array bl_count contains the bit length statistics for
2430 * the given tree and the field len is set for all tree elements.
2431 * OUT assertion: the field code is set for all tree elements of non
2432 * zero code length.
2433 */
2434local void gen_codes (tree, max_code)
2435 ct_data near *tree; /* the tree to decorate */
2436 int max_code; /* largest code with non zero frequency */
2437{
2438 ush next_code[MAX_BITS+1]; /* next code value for each bit length */
2439 ush code = 0; /* running code value */
2440 int bits; /* bit index */
2441 int n; /* code index */
2442
2443 /* The distribution counts are first used to generate the code values
2444 * without bit reversal.
2445 */
2446 for (bits = 1; bits <= MAX_BITS; bits++) {
2447 next_code[bits] = code = (code + bl_count[bits-1]) << 1;
2448 }
2449 /* Check that the bit counts in bl_count are consistent. The last code
2450 * must be all ones.
2451 */
2452 Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
2453 "inconsistent bit counts");
2454 Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
2455
2456 for (n = 0; n <= max_code; n++) {
2457 int len = tree[n].Len;
2458 if (len == 0) continue;
2459 /* Now reverse the bits */
2460 tree[n].Code = bi_reverse(next_code[len]++, len);
2461
2462 Tracec(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
2463 n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
2464 }
2465}
2466
2467/* ===========================================================================
2468 * Construct one Huffman tree and assigns the code bit strings and lengths.
2469 * Update the total bit length for the current block.
2470 * IN assertion: the field freq is set for all tree elements.
2471 * OUT assertions: the fields len and code are set to the optimal bit length
2472 * and corresponding code. The length opt_len is updated; static_len is
2473 * also updated if stree is not null. The field max_code is set.
2474 */
2475local void build_tree(desc)
2476 tree_desc near *desc; /* the tree descriptor */
2477{
2478 ct_data near *tree = desc->dyn_tree;
2479 ct_data near *stree = desc->static_tree;
2480 int elems = desc->elems;
2481 int n, m; /* iterate over heap elements */
2482 int max_code = -1; /* largest code with non zero frequency */
2483 int node = elems; /* next internal node of the tree */
2484
2485 /* Construct the initial heap, with least frequent element in
2486 * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
2487 * heap[0] is not used.
2488 */
2489 heap_len = 0, heap_max = HEAP_SIZE;
2490
2491 for (n = 0; n < elems; n++) {
2492 if (tree[n].Freq != 0) {
2493 heap[++heap_len] = max_code = n;
2494 depth[n] = 0;
2495 } else {
2496 tree[n].Len = 0;
2497 }
2498 }
2499
2500 /* The pkzip format requires that at least one distance code exists,
2501 * and that at least one bit should be sent even if there is only one
2502 * possible code. So to avoid special checks later on we force at least
2503 * two codes of non zero frequency.
2504 */
2505 while (heap_len < 2) {
2506 int new = heap[++heap_len] = (max_code < 2 ? ++max_code : 0);
2507 tree[new].Freq = 1;
2508 depth[new] = 0;
2509 opt_len--; if (stree) static_len -= stree[new].Len;
2510 /* new is 0 or 1 so it does not have extra bits */
2511 }
2512 desc->max_code = max_code;
2513
2514 /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
2515 * establish sub-heaps of increasing lengths:
2516 */
2517 for (n = heap_len/2; n >= 1; n--) pqdownheap(tree, n);
2518
2519 /* Construct the Huffman tree by repeatedly combining the least two
2520 * frequent nodes.
2521 */
2522 do {
2523 pqremove(tree, n); /* n = node of least frequency */
2524 m = heap[SMALLEST]; /* m = node of next least frequency */
2525
2526 heap[--heap_max] = n; /* keep the nodes sorted by frequency */
2527 heap[--heap_max] = m;
2528
2529 /* Create a new node father of n and m */
2530 tree[node].Freq = tree[n].Freq + tree[m].Freq;
2531 depth[node] = (uch) (MAX(depth[n], depth[m]) + 1);
2532 tree[n].Dad = tree[m].Dad = (ush)node;
2533#ifdef DUMP_BL_TREE
2534 if (tree == bl_tree) {
2535 fprintf(stderr,"\nnode %d(%d), sons %d(%d) %d(%d)",
2536 node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
2537 }
2538#endif
2539 /* and insert the new node in the heap */
2540 heap[SMALLEST] = node++;
2541 pqdownheap(tree, SMALLEST);
2542
2543 } while (heap_len >= 2);
2544
2545 heap[--heap_max] = heap[SMALLEST];
2546
2547 /* At this point, the fields freq and dad are set. We can now
2548 * generate the bit lengths.
2549 */
2550 gen_bitlen((tree_desc near *)desc);
2551
2552 /* The field len is now set, we can generate the bit codes */
2553 gen_codes ((ct_data near *)tree, max_code);
2554}
2555
2556/* ===========================================================================
2557 * Scan a literal or distance tree to determine the frequencies of the codes
2558 * in the bit length tree. Updates opt_len to take into account the repeat
2559 * counts. (The contribution of the bit length codes will be added later
2560 * during the construction of bl_tree.)
2561 */
2562local void scan_tree (tree, max_code)
2563 ct_data near *tree; /* the tree to be scanned */
2564 int max_code; /* and its largest code of non zero frequency */
2565{
2566 int n; /* iterates over all tree elements */
2567 int prevlen = -1; /* last emitted length */
2568 int curlen; /* length of current code */
2569 int nextlen = tree[0].Len; /* length of next code */
2570 int count = 0; /* repeat count of the current code */
2571 int max_count = 7; /* max repeat count */
2572 int min_count = 4; /* min repeat count */
2573
2574 if (nextlen == 0) max_count = 138, min_count = 3;
2575 tree[max_code+1].Len = (ush)0xffff; /* guard */
2576
2577 for (n = 0; n <= max_code; n++) {
2578 curlen = nextlen; nextlen = tree[n+1].Len;
2579 if (++count < max_count && curlen == nextlen) {
2580 continue;
2581 } else if (count < min_count) {
2582 bl_tree[curlen].Freq += count;
2583 } else if (curlen != 0) {
2584 if (curlen != prevlen) bl_tree[curlen].Freq++;
2585 bl_tree[REP_3_6].Freq++;
2586 } else if (count <= 10) {
2587 bl_tree[REPZ_3_10].Freq++;
2588 } else {
2589 bl_tree[REPZ_11_138].Freq++;
2590 }
2591 count = 0; prevlen = curlen;
2592 if (nextlen == 0) {
2593 max_count = 138, min_count = 3;
2594 } else if (curlen == nextlen) {
2595 max_count = 6, min_count = 3;
2596 } else {
2597 max_count = 7, min_count = 4;
2598 }
2599 }
2600}
2601
2602/* ===========================================================================
2603 * Send a literal or distance tree in compressed form, using the codes in
2604 * bl_tree.
2605 */
2606local void send_tree (tree, max_code)
2607 ct_data near *tree; /* the tree to be scanned */
2608 int max_code; /* and its largest code of non zero frequency */
2609{
2610 int n; /* iterates over all tree elements */
2611 int prevlen = -1; /* last emitted length */
2612 int curlen; /* length of current code */
2613 int nextlen = tree[0].Len; /* length of next code */
2614 int count = 0; /* repeat count of the current code */
2615 int max_count = 7; /* max repeat count */
2616 int min_count = 4; /* min repeat count */
2617
2618 /* tree[max_code+1].Len = -1; */ /* guard already set */
2619 if (nextlen == 0) max_count = 138, min_count = 3;
2620
2621 for (n = 0; n <= max_code; n++) {
2622 curlen = nextlen; nextlen = tree[n+1].Len;
2623 if (++count < max_count && curlen == nextlen) {
2624 continue;
2625 } else if (count < min_count) {
2626 do { send_code(curlen, bl_tree); } while (--count != 0);
2627
2628 } else if (curlen != 0) {
2629 if (curlen != prevlen) {
2630 send_code(curlen, bl_tree); count--;
2631 }
2632 Assert(count >= 3 && count <= 6, " 3_6?");
2633 send_code(REP_3_6, bl_tree); send_bits(count-3, 2);
2634
2635 } else if (count <= 10) {
2636 send_code(REPZ_3_10, bl_tree); send_bits(count-3, 3);
2637
2638 } else {
2639 send_code(REPZ_11_138, bl_tree); send_bits(count-11, 7);
2640 }
2641 count = 0; prevlen = curlen;
2642 if (nextlen == 0) {
2643 max_count = 138, min_count = 3;
2644 } else if (curlen == nextlen) {
2645 max_count = 6, min_count = 3;
2646 } else {
2647 max_count = 7, min_count = 4;
2648 }
2649 }
2650}
2651
2652/* ===========================================================================
2653 * Construct the Huffman tree for the bit lengths and return the index in
2654 * bl_order of the last bit length code to send.
2655 */
2656local int build_bl_tree()
2657{
2658 int max_blindex; /* index of last bit length code of non zero freq */
2659
2660 /* Determine the bit length frequencies for literal and distance trees */
2661 scan_tree((ct_data near *)dyn_ltree, l_desc.max_code);
2662 scan_tree((ct_data near *)dyn_dtree, d_desc.max_code);
2663
2664 /* Build the bit length tree: */
2665 build_tree((tree_desc near *)(&bl_desc));
2666 /* opt_len now includes the length of the tree representations, except
2667 * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
2668 */
2669
2670 /* Determine the number of bit length codes to send. The pkzip format
2671 * requires that at least 4 bit length codes be sent. (appnote.txt says
2672 * 3 but the actual value used is 4.)
2673 */
2674 for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) {
2675 if (bl_tree[bl_order[max_blindex]].Len != 0) break;
2676 }
2677 /* Update opt_len to include the bit length tree and counts */
2678 opt_len += 3*(max_blindex+1) + 5+5+4;
2679 Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", opt_len, static_len));
2680
2681 return max_blindex;
2682}
2683
2684/* ===========================================================================
2685 * Send the header for a block using dynamic Huffman trees: the counts, the
2686 * lengths of the bit length codes, the literal tree and the distance tree.
2687 * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
2688 */
2689local void send_all_trees(lcodes, dcodes, blcodes)
2690 int lcodes, dcodes, blcodes; /* number of codes for each tree */
2691{
2692 int rank; /* index in bl_order */
2693
2694 Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
2695 Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
2696 "too many codes");
2697 Tracev((stderr, "\nbl counts: "));
2698 send_bits(lcodes-257, 5); /* not +255 as stated in appnote.txt */
2699 send_bits(dcodes-1, 5);
2700 send_bits(blcodes-4, 4); /* not -3 as stated in appnote.txt */
2701 for (rank = 0; rank < blcodes; rank++) {
2702 Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
2703 send_bits(bl_tree[bl_order[rank]].Len, 3);
2704 }
2705 Tracev((stderr, "\nbl tree: sent %ld", bits_sent));
2706
2707 send_tree((ct_data near *)dyn_ltree, lcodes-1); /* send the literal tree */
2708 Tracev((stderr, "\nlit tree: sent %ld", bits_sent));
2709
2710 send_tree((ct_data near *)dyn_dtree, dcodes-1); /* send the distance tree */
2711 Tracev((stderr, "\ndist tree: sent %ld", bits_sent));
2712}
2713
2714/* ===========================================================================
2715 * Determine the best encoding for the current block: dynamic trees, static
2716 * trees or store, and output the encoded block to the zip file. This function
2717 * returns the total compressed length for the file so far.
2718 */
2719ulg flush_block(buf, stored_len, eof)
2720 char *buf; /* input block, or NULL if too old */
2721 ulg stored_len; /* length of input block */
2722 int eof; /* true if this is the last block for a file */
2723{
2724 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
2725 int max_blindex; /* index of last bit length code of non zero freq */
2726
2727 flag_buf[last_flags] = flags; /* Save the flags for the last 8 items */
2728
2729 /* Check if the file is ascii or binary */
2730 if (*file_type == (ush)UNKNOWN) set_file_type();
2731
2732 /* Construct the literal and distance trees */
2733 build_tree((tree_desc near *)(&l_desc));
2734 Tracev((stderr, "\nlit data: dyn %ld, stat %ld", opt_len, static_len));
2735
2736 build_tree((tree_desc near *)(&d_desc));
2737 Tracev((stderr, "\ndist data: dyn %ld, stat %ld", opt_len, static_len));
2738 /* At this point, opt_len and static_len are the total bit lengths of
2739 * the compressed block data, excluding the tree representations.
2740 */
2741
2742 /* Build the bit length tree for the above two trees, and get the index
2743 * in bl_order of the last bit length code to send.
2744 */
2745 max_blindex = build_bl_tree();
2746
2747 /* Determine the best encoding. Compute first the block length in bytes */
2748 opt_lenb = (opt_len+3+7)>>3;
2749 static_lenb = (static_len+3+7)>>3;
2750 input_len += stored_len; /* for debugging only */
2751
2752 Trace((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ",
2753 opt_lenb, opt_len, static_lenb, static_len, stored_len,
2754 last_lit, last_dist));
2755
2756 if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
2757
2758 /* If compression failed and this is the first and last block,
2759 * and if the zip file can be seeked (to rewrite the local header),
2760 * the whole file is transformed into a stored file:
2761 */
2762#ifdef FORCE_METHOD
2763#else
2764 if (stored_len <= opt_lenb && eof && compressed_len == 0L && seekable()) {
2765#endif
2766 /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
2767 if (buf == (char*)0) error ("block vanished");
2768
2769 copy_block(buf, (unsigned)stored_len, 0); /* without header */
2770 compressed_len = stored_len << 3;
2771 *file_method = STORED;
2772
2773#ifdef FORCE_METHOD
2774#else
2775 } else if (stored_len+4 <= opt_lenb && buf != (char*)0) {
2776 /* 4: two words for the lengths */
2777#endif
2778 /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
2779 * Otherwise we can't have processed more than WSIZE input bytes since
2780 * the last block flush, because compression would have been
2781 * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
2782 * transform a block into a stored block.
2783 */
2784 send_bits((STORED_BLOCK<<1)+eof, 3); /* send block type */
2785 compressed_len = (compressed_len + 3 + 7) & ~7L;
2786 compressed_len += (stored_len + 4) << 3;
2787
2788 copy_block(buf, (unsigned)stored_len, 1); /* with header */
2789
2790#ifdef FORCE_METHOD
2791#else
2792 } else if (static_lenb == opt_lenb) {
2793#endif
2794 send_bits((STATIC_TREES<<1)+eof, 3);
2795 compress_block((ct_data near *)static_ltree, (ct_data near *)static_dtree);
2796 compressed_len += 3 + static_len;
2797 } else {
2798 send_bits((DYN_TREES<<1)+eof, 3);
2799 send_all_trees(l_desc.max_code+1, d_desc.max_code+1, max_blindex+1);
2800 compress_block((ct_data near *)dyn_ltree, (ct_data near *)dyn_dtree);
2801 compressed_len += 3 + opt_len;
2802 }
2803 Assert (compressed_len == bits_sent, "bad compressed size");
2804 init_block();
2805
2806 if (eof) {
2807 Assert (input_len == isize, "bad input size");
2808 bi_windup();
2809 compressed_len += 7; /* align on byte boundary */
2810 }
2811 Tracev((stderr,"\ncomprlen %lu(%lu) ", compressed_len>>3,
2812 compressed_len-7*eof));
2813
2814 return compressed_len >> 3;
2815}
2816
2817/* ===========================================================================
2818 * Save the match info and tally the frequency counts. Return true if
2819 * the current block must be flushed.
2820 */
2821int ct_tally (dist, lc)
2822 int dist; /* distance of matched string */
2823 int lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */
2824{
2825 l_buf[last_lit++] = (uch)lc;
2826 if (dist == 0) {
2827 /* lc is the unmatched char */
2828 dyn_ltree[lc].Freq++;
2829 } else {
2830 /* Here, lc is the match length - MIN_MATCH */
2831 dist--; /* dist = match distance - 1 */
2832 Assert((ush)dist < (ush)MAX_DIST &&
2833 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
2834 (ush)d_code(dist) < (ush)D_CODES, "ct_tally: bad match");
2835
2836 dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
2837 dyn_dtree[d_code(dist)].Freq++;
2838
2839 d_buf[last_dist++] = (ush)dist;
2840 flags |= flag_bit;
2841 }
2842 flag_bit <<= 1;
2843
2844 /* Output the flags if they fill a byte: */
2845 if ((last_lit & 7) == 0) {
2846 flag_buf[last_flags++] = flags;
2847 flags = 0, flag_bit = 1;
2848 }
2849 /* Try to guess if it is profitable to stop the current block here */
2850 if ((last_lit & 0xfff) == 0) {
2851 /* Compute an upper bound for the compressed length */
2852 ulg out_length = (ulg)last_lit*8L;
2853 ulg in_length = (ulg)strstart-block_start;
2854 int dcode;
2855 for (dcode = 0; dcode < D_CODES; dcode++) {
2856 out_length += (ulg)dyn_dtree[dcode].Freq*(5L+extra_dbits[dcode]);
2857 }
2858 out_length >>= 3;
2859 Trace((stderr,"\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ",
2860 last_lit, last_dist, in_length, out_length,
2861 100L - out_length*100L/in_length));
2862 if (last_dist < last_lit/2 && out_length < in_length/2) return 1;
2863 }
2864 return (last_lit == LIT_BUFSIZE-1 || last_dist == DIST_BUFSIZE);
2865 /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K
2866 * on 16 bit machines and because stored blocks are restricted to
2867 * 64K-1 bytes.
2868 */
2869}
2870
2871/* ===========================================================================
2872 * Send the block data compressed using the given Huffman trees
2873 */
2874local void compress_block(ltree, dtree)
2875 ct_data near *ltree; /* literal tree */
2876 ct_data near *dtree; /* distance tree */
2877{
2878 unsigned dist; /* distance of matched string */
2879 int lc; /* match length or unmatched char (if dist == 0) */
2880 unsigned lx = 0; /* running index in l_buf */
2881 unsigned dx = 0; /* running index in d_buf */
2882 unsigned fx = 0; /* running index in flag_buf */
2883 uch flag = 0; /* current flags */
2884 unsigned code; /* the code to send */
2885 int extra; /* number of extra bits to send */
2886
2887 if (last_lit != 0) do {
2888 if ((lx & 7) == 0) flag = flag_buf[fx++];
2889 lc = l_buf[lx++];
2890 if ((flag & 1) == 0) {
2891 send_code(lc, ltree); /* send a literal byte */
2892 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
2893 } else {
2894 /* Here, lc is the match length - MIN_MATCH */
2895 code = length_code[lc];
2896 send_code(code+LITERALS+1, ltree); /* send the length code */
2897 extra = extra_lbits[code];
2898 if (extra != 0) {
2899 lc -= base_length[code];
2900 send_bits(lc, extra); /* send the extra length bits */
2901 }
2902 dist = d_buf[dx++];
2903 /* Here, dist is the match distance - 1 */
2904 code = d_code(dist);
2905 Assert (code < D_CODES, "bad d_code");
2906
2907 send_code(code, dtree); /* send the distance code */
2908 extra = extra_dbits[code];
2909 if (extra != 0) {
2910 dist -= base_dist[code];
2911 send_bits(dist, extra); /* send the extra distance bits */
2912 }
2913 } /* literal or match pair ? */
2914 flag >>= 1;
2915 } while (lx < last_lit);
2916
2917 send_code(END_BLOCK, ltree);
2918}
2919
2920/* ===========================================================================
2921 * Set the file type to ASCII or BINARY, using a crude approximation:
2922 * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
2923 * IN assertion: the fields freq of dyn_ltree are set and the total of all
2924 * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
2925 */
2926local void set_file_type()
2927{
2928 int n = 0;
2929 unsigned ascii_freq = 0;
2930 unsigned bin_freq = 0;
2931 while (n < 7) bin_freq += dyn_ltree[n++].Freq;
2932 while (n < 128) ascii_freq += dyn_ltree[n++].Freq;
2933 while (n < LITERALS) bin_freq += dyn_ltree[n++].Freq;
2934 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
2935 if (*file_type == BINARY && translate_eol) {
2936 warn("-l used on binary file", "");
2937 }
2938}
2939/* util.c -- utility functions for gzip support
2940 * Copyright (C) 1992-1993 Jean-loup Gailly
2941 * This is free software; you can redistribute it and/or modify it under the
2942 * terms of the GNU General Public License, see the file COPYING.
2943 */
2944
2945#ifdef RCSID
2946static char rcsid[] = "$Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $";
2947#endif
2948
2949#include <ctype.h>
2950#include <errno.h>
2951#include <sys/types.h>
2952
2953#ifdef HAVE_UNISTD_H
2954# include <unistd.h>
2955#endif
2956#ifndef NO_FCNTL_H
2957# include <fcntl.h>
2958#endif
2959
2960#if defined(STDC_HEADERS) || !defined(NO_STDLIB_H)
2961# include <stdlib.h>
2962#else
2963 extern int errno;
2964#endif
2965
2966extern ulg crc_32_tab[]; /* crc table, defined below */
2967
2968/* ===========================================================================
2969 * Copy input to output unchanged: zcat == cat with --force.
2970 * IN assertion: insize bytes have already been read in inbuf.
2971 */
2972int copy(in, out)
2973 int in, out; /* input and output file descriptors */
2974{
2975 errno = 0;
2976 while (insize != 0 && (int)insize != EOF) {
2977 write_buf(out, (char*)inbuf, insize);
2978 bytes_out += insize;
2979 insize = read(in, (char*)inbuf, INBUFSIZ);
2980 }
2981 if ((int)insize == EOF && errno != 0) {
2982 read_error();
2983 }
2984 bytes_in = bytes_out;
2985 return OK;
2986}
2987
2988/* ========================================================================
2989 * Put string s in lower case, return s.
2990 */
2991char *strlwr(s)
2992 char *s;
2993{
2994 char *t;
2995 for (t = s; *t; t++) *t = tolow(*t);
2996 return s;
2997}
2998
2999#if defined(NO_STRING_H) && !defined(STDC_HEADERS)
3000
3001/* Provide missing strspn and strcspn functions. */
3002
3003# ifndef __STDC__
3004# define const
3005# endif
3006
3007int strspn OF((const char *s, const char *accept));
3008int strcspn OF((const char *s, const char *reject));
3009
3010/* ========================================================================
3011 * Return the length of the maximum initial segment
3012 * of s which contains only characters in accept.
3013 */
3014int strspn(s, accept)
3015 const char *s;
3016 const char *accept;
3017{
3018 register const char *p;
3019 register const char *a;
3020 register int count = 0;
3021
3022 for (p = s; *p != '\0'; ++p) {
3023 for (a = accept; *a != '\0'; ++a) {
3024 if (*p == *a) break;
3025 }
3026 if (*a == '\0') return count;
3027 ++count;
3028 }
3029 return count;
3030}
3031
3032/* ========================================================================
3033 * Return the length of the maximum inital segment of s
3034 * which contains no characters from reject.
3035 */
3036int strcspn(s, reject)
3037 const char *s;
3038 const char *reject;
3039{
3040 register int count = 0;
3041
3042 while (*s != '\0') {
3043 if (strchr(reject, *s++) != NULL) return count;
3044 ++count;
3045 }
3046 return count;
3047}
3048
3049#endif /* NO_STRING_H */
3050
3051/* ========================================================================
3052 * Add an environment variable (if any) before argv, and update argc.
3053 * Return the expanded environment variable to be freed later, or NULL
3054 * if no options were added to argv.
3055 */
3056#define SEPARATOR " \t" /* separators in env variable */
3057
3058char *add_envopt(argcp, argvp, env)
3059 int *argcp; /* pointer to argc */
3060 char ***argvp; /* pointer to argv */
3061 char *env; /* name of environment variable */
3062{
3063 char *p; /* running pointer through env variable */
3064 char **oargv; /* runs through old argv array */
3065 char **nargv; /* runs through new argv array */
3066 int oargc = *argcp; /* old argc */
3067 int nargc = 0; /* number of arguments in env variable */
3068
3069 env = (char*)getenv(env);
3070 if (env == NULL) return NULL;
3071
3072 p = (char*)xmalloc(strlen(env)+1);
3073 env = strcpy(p, env); /* keep env variable intact */
3074
3075 for (p = env; *p; nargc++ ) { /* move through env */
3076 p += strspn(p, SEPARATOR); /* skip leading separators */
3077 if (*p == '\0') break;
3078
3079 p += strcspn(p, SEPARATOR); /* find end of word */
3080 if (*p) *p++ = '\0'; /* mark it */
3081 }
3082 if (nargc == 0) {
3083 free(env);
3084 return NULL;
3085 }
3086 *argcp += nargc;
3087 /* Allocate the new argv array, with an extra element just in case
3088 * the original arg list did not end with a NULL.
3089 */
3090 nargv = (char**)calloc(*argcp+1, sizeof(char *));
3091 if (nargv == NULL) error("out of memory");
3092 oargv = *argvp;
3093 *argvp = nargv;
3094
3095 /* Copy the program name first */
3096 if (oargc-- < 0) error("argc<=0");
3097 *(nargv++) = *(oargv++);
3098
3099 /* Then copy the environment args */
3100 for (p = env; nargc > 0; nargc--) {
3101 p += strspn(p, SEPARATOR); /* skip separators */
3102 *(nargv++) = p; /* store start */
3103 while (*p++) ; /* skip over word */
3104 }
3105
3106 /* Finally copy the old args and add a NULL (usual convention) */
3107 while (oargc--) *(nargv++) = *(oargv++);
3108 *nargv = NULL;
3109 return env;
3110}
3111/* ========================================================================
3112 * Display compression ratio on the given stream on 6 characters.
3113 */
3114void display_ratio(num, den, file)
3115 long num;
3116 long den;
3117 FILE *file;
3118{
3119 long ratio; /* 1000 times the compression ratio */
3120
3121 if (den == 0) {
3122 ratio = 0; /* no compression */
3123 } else if (den < 2147483L) { /* (2**31 -1)/1000 */
3124 ratio = 1000L*num/den;
3125 } else {
3126 ratio = num/(den/1000L);
3127 }
3128 if (ratio < 0) {
3129 putc('-', file);
3130 ratio = -ratio;
3131 } else {
3132 putc(' ', file);
3133 }
3134 fprintf(file, "%2ld.%1ld%%", ratio / 10L, ratio % 10L);
3135}
3136
3137
3138/* zip.c -- compress files to the gzip or pkzip format
3139 * Copyright (C) 1992-1993 Jean-loup Gailly
3140 * This is free software; you can redistribute it and/or modify it under the
3141 * terms of the GNU General Public License, see the file COPYING.
3142 */
3143
3144#ifdef RCSID
3145static char rcsid[] = "$Id: gzip.c,v 1.1 1999/10/05 16:24:56 andersen Exp $";
3146#endif
3147
3148#include <ctype.h>
3149#include <sys/types.h>
3150
3151#ifdef HAVE_UNISTD_H
3152# include <unistd.h>
3153#endif
3154#ifndef NO_FCNTL_H
3155# include <fcntl.h>
3156#endif
3157
3158local ulg crc; /* crc on uncompressed file data */
3159long header_bytes; /* number of bytes in gzip header */
3160
3161/* ===========================================================================
3162 * Deflate in to out.
3163 * IN assertions: the input and output buffers are cleared.
3164 * The variables time_stamp and save_orig_name are initialized.
3165 */
3166int zip(in, out)
3167 int in, out; /* input and output file descriptors */
3168{
3169 uch flags = 0; /* general purpose bit flags */
3170 ush attr = 0; /* ascii/binary flag */
3171 ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
3172
3173 ifd = in;
3174 ofd = out;
3175 outcnt = 0;
3176
3177 /* Write the header to the gzip file. See algorithm.doc for the format */
3178
3179 method = DEFLATED;
3180 put_byte(GZIP_MAGIC[0]); /* magic header */
3181 put_byte(GZIP_MAGIC[1]);
3182 put_byte(DEFLATED); /* compression method */
3183
3184 put_byte(flags); /* general flags */
3185 put_long(time_stamp);
3186
3187 /* Write deflated file to zip file */
3188 crc = updcrc(0, 0);
3189
3190 bi_init(out);
3191 ct_init(&attr, &method);
3192 lm_init(&deflate_flags);
3193
3194 put_byte((uch)deflate_flags); /* extra flags */
3195 put_byte(OS_CODE); /* OS identifier */
3196
3197 header_bytes = (long)outcnt;
3198
3199 (void)deflate();
3200
3201 /* Write the crc and uncompressed size */
3202 put_long(crc);
3203 put_long(isize);
3204 header_bytes += 2*sizeof(long);
3205
3206 flush_outbuf();
3207 return OK;
3208}
3209
3210
3211/* ===========================================================================
3212 * Read a new buffer from the current input file, perform end-of-line
3213 * translation, and update the crc and input file size.
3214 * IN assertion: size >= 2 (for end-of-line translation)
3215 */
3216int file_read(buf, size)
3217 char *buf;
3218 unsigned size;
3219{
3220 unsigned len;
3221
3222 Assert(insize == 0, "inbuf not empty");
3223
3224 len = read(ifd, buf, size);
3225 if (len == (unsigned)(-1) || len == 0) return (int)len;
3226
3227 crc = updcrc((uch*)buf, len);
3228 isize += (ulg)len;
3229 return (int)len;
3230}
3231#endif
diff --git a/archival/tar.c b/archival/tar.c
new file mode 100644
index 000000000..03da96735
--- /dev/null
+++ b/archival/tar.c
@@ -0,0 +1,1425 @@
1/*
2 * Copyright (c) 1999 by David I. Bell
3 * Permission is granted to use, distribute, or modify this source,
4 * provided that this copyright notice remains intact.
5 *
6 * The "tar" command, taken from sash.
7 * This allows creation, extraction, and listing of tar files.
8 *
9 * Permission to distribute this code under the GPL has been granted.
10 * Modified for busybox by Erik Andersen <andersee@debian.org> <andersen@lineo.com>
11 */
12
13
14#include "internal.h"
15
16#ifdef BB_TAR
17
18const char tar_usage[] =
19"Create, extract, or list files from a TAR file\n\n"
20"usage: tar -[cxtvOf] [tarFileName] [FILE] ...\n"
21"\tc=create, x=extract, t=list contents, v=verbose,\n"
22"\tO=extract to stdout, f=tarfile or \"-\" for stdin\n";
23
24
25
26#include <stdio.h>
27#include <dirent.h>
28#include <errno.h>
29#include <fcntl.h>
30#include <signal.h>
31#include <time.h>
32
33/*
34 * Tar file constants.
35 */
36#define TAR_BLOCK_SIZE 512
37#define TAR_NAME_SIZE 100
38
39
40/*
41 * The POSIX (and basic GNU) tar header format.
42 * This structure is always embedded in a TAR_BLOCK_SIZE sized block
43 * with zero padding. We only process this information minimally.
44 */
45typedef struct
46{
47 char name[TAR_NAME_SIZE];
48 char mode[8];
49 char uid[8];
50 char gid[8];
51 char size[12];
52 char mtime[12];
53 char checkSum[8];
54 char typeFlag;
55 char linkName[TAR_NAME_SIZE];
56 char magic[6];
57 char version[2];
58 char uname[32];
59 char gname[32];
60 char devMajor[8];
61 char devMinor[8];
62 char prefix[155];
63} TarHeader;
64
65#define TAR_MAGIC "ustar"
66#define TAR_VERSION "00"
67
68#define TAR_TYPE_REGULAR '0'
69#define TAR_TYPE_HARD_LINK '1'
70#define TAR_TYPE_SOFT_LINK '2'
71
72
73/*
74 * Static data.
75 */
76static BOOL listFlag;
77static BOOL extractFlag;
78static BOOL createFlag;
79static BOOL verboseFlag;
80static BOOL tostdoutFlag;
81
82static BOOL inHeader;
83static BOOL badHeader;
84static BOOL errorFlag;
85static BOOL skipFileFlag;
86static BOOL warnedRoot;
87static BOOL eofFlag;
88static long dataCc;
89static int outFd;
90static char outName[TAR_NAME_SIZE];
91
92
93/*
94 * Static data associated with the tar file.
95 */
96static const char * tarName;
97static int tarFd;
98static dev_t tarDev;
99static ino_t tarInode;
100
101
102/*
103 * Local procedures to restore files from a tar file.
104 */
105static void readTarFile(int fileCount, char ** fileTable);
106static void readData(const char * cp, int count);
107static void createPath(const char * name, int mode);
108static long getOctal(const char * cp, int len);
109
110static void readHeader(const TarHeader * hp,
111 int fileCount, char ** fileTable);
112
113
114/*
115 * Local procedures to save files into a tar file.
116 */
117static void saveFile(const char * fileName, BOOL seeLinks);
118
119static void saveRegularFile(const char * fileName,
120 const struct stat * statbuf);
121
122static void saveDirectory(const char * fileName,
123 const struct stat * statbuf);
124
125static BOOL wantFileName(const char * fileName,
126 int fileCount, char ** fileTable);
127
128static void writeHeader(const char * fileName,
129 const struct stat * statbuf);
130
131static void writeTarFile(int fileCount, char ** fileTable);
132static void writeTarBlock(const char * buf, int len);
133static BOOL putOctal(char * cp, int len, long value);
134extern const char * modeString(int mode);
135extern const char * timeString(time_t timeVal);
136extern int fullWrite(int fd, const char * buf, int len);
137extern int fullRead(int fd, char * buf, int len);
138
139
140extern int
141tar_main(struct FileInfo *unused, int argc, char ** argv)
142{
143 const char * options;
144
145 argc--;
146 argv++;
147
148 if (argc < 1)
149 {
150 fprintf(stderr, "%s", tar_usage);
151 return 1;
152 }
153
154
155 errorFlag = FALSE;
156 extractFlag = FALSE;
157 createFlag = FALSE;
158 listFlag = FALSE;
159 verboseFlag = FALSE;
160 tostdoutFlag = FALSE;
161 tarName = NULL;
162 tarDev = 0;
163 tarInode = 0;
164 tarFd = -1;
165
166 /*
167 * Parse the options.
168 */
169 options = *argv++;
170 argc--;
171
172 if (**argv == '-') {
173 for (; *options; options++)
174 {
175 switch (*options)
176 {
177 case 'f':
178 if (tarName != NULL)
179 {
180 fprintf(stderr, "Only one 'f' option allowed\n");
181
182 return 1;
183 }
184
185 tarName = *argv++;
186 argc--;
187
188 break;
189
190 case 't':
191 listFlag = TRUE;
192 break;
193
194 case 'x':
195 extractFlag = TRUE;
196 break;
197
198 case 'c':
199 createFlag = TRUE;
200 break;
201
202 case 'v':
203 verboseFlag = TRUE;
204 break;
205
206 case 'O':
207 tostdoutFlag = TRUE;
208 break;
209
210 case '-':
211 break;
212
213 default:
214 fprintf(stderr, "Unknown tar flag '%c'\n", *options);
215
216 return 1;
217 }
218 }
219 }
220
221 /*
222 * Validate the options.
223 */
224 if (extractFlag + listFlag + createFlag != 1)
225 {
226 fprintf(stderr, "Exactly one of 'c', 'x' or 't' must be specified\n");
227
228 return 1;
229 }
230
231 /*
232 * Do the correct type of action supplying the rest of the
233 * command line arguments as the list of files to process.
234 */
235 if (createFlag)
236 writeTarFile(argc, argv);
237 else
238 readTarFile(argc, argv);
239 if (errorFlag)
240 fprintf(stderr, "\n");
241 return( errorFlag);
242}
243
244
245/*
246 * Read a tar file and extract or list the specified files within it.
247 * If the list is empty than all files are extracted or listed.
248 */
249static void
250readTarFile(int fileCount, char ** fileTable)
251{
252 const char * cp;
253 int cc;
254 int inCc;
255 int blockSize;
256 char buf[BUF_SIZE];
257
258 skipFileFlag = FALSE;
259 badHeader = FALSE;
260 warnedRoot = FALSE;
261 eofFlag = FALSE;
262 inHeader = TRUE;
263 inCc = 0;
264 dataCc = 0;
265 outFd = -1;
266 blockSize = sizeof(buf);
267 cp = buf;
268
269 /*
270 * Open the tar file for reading.
271 */
272 if ( (tarName==NULL) || !strcmp( tarName, "-") ) {
273 tarFd = STDIN;
274 }
275 else
276 tarFd = open(tarName, O_RDONLY);
277
278 if (tarFd < 0)
279 {
280 perror(tarName);
281 errorFlag = TRUE;
282 return;
283 }
284
285 /*
286 * Read blocks from the file until an end of file header block
287 * has been seen. (A real end of file from a read is an error.)
288 */
289 while (!eofFlag)
290 {
291 /*
292 * Read the next block of data if necessary.
293 * This will be a large block if possible, which we will
294 * then process in the small tar blocks.
295 */
296 if (inCc <= 0)
297 {
298 cp = buf;
299 inCc = fullRead(tarFd, buf, blockSize);
300
301 if (inCc < 0)
302 {
303 perror(tarName);
304 errorFlag=TRUE;
305 goto done;
306 }
307
308 if (inCc == 0)
309 {
310 fprintf(stderr,
311 "Unexpected end of file from \"%s\"",
312 tarName);
313 errorFlag=TRUE;
314 goto done;
315 }
316 }
317
318 /*
319 * If we are expecting a header block then examine it.
320 */
321 if (inHeader)
322 {
323 readHeader((const TarHeader *) cp, fileCount, fileTable);
324
325 cp += TAR_BLOCK_SIZE;
326 inCc -= TAR_BLOCK_SIZE;
327
328 continue;
329 }
330
331 /*
332 * We are currently handling the data for a file.
333 * Process the minimum of the amount of data we have available
334 * and the amount left to be processed for the file.
335 */
336 cc = inCc;
337
338 if (cc > dataCc)
339 cc = dataCc;
340
341 readData(cp, cc);
342
343 /*
344 * If the amount left isn't an exact multiple of the tar block
345 * size then round it up to the next block boundary since there
346 * is padding at the end of the file.
347 */
348 if (cc % TAR_BLOCK_SIZE)
349 cc += TAR_BLOCK_SIZE - (cc % TAR_BLOCK_SIZE);
350
351 cp += cc;
352 inCc -= cc;
353 }
354
355done:
356 /*
357 * Close the tar file if needed.
358 */
359 if ((tarFd >= 0) && (close(tarFd) < 0))
360 perror(tarName);
361
362 /*
363 * Close the output file if needed.
364 * This is only done here on a previous error and so no
365 * message is required on errors.
366 */
367 if (tostdoutFlag==FALSE) {
368 if (outFd >= 0)
369 (void) close(outFd);
370 }
371}
372
373
374/*
375 * Examine the header block that was just read.
376 * This can specify the information for another file, or it can mark
377 * the end of the tar file.
378 */
379static void
380readHeader(const TarHeader * hp, int fileCount, char ** fileTable)
381{
382 int mode;
383 int uid;
384 int gid;
385 int checkSum;
386 long size;
387 time_t mtime;
388 const char * name;
389 int cc;
390 BOOL hardLink;
391 BOOL softLink;
392
393 /*
394 * If the block is completely empty, then this is the end of the
395 * archive file. If the name is null, then just skip this header.
396 */
397 name = hp->name;
398
399 if (*name == '\0')
400 {
401 for (cc = TAR_BLOCK_SIZE; cc > 0; cc--)
402 {
403 if (*name++)
404 return;
405 }
406
407 eofFlag = TRUE;
408
409 return;
410 }
411
412 /*
413 * There is another file in the archive to examine.
414 * Extract the encoded information and check it.
415 */
416 mode = getOctal(hp->mode, sizeof(hp->mode));
417 uid = getOctal(hp->uid, sizeof(hp->uid));
418 gid = getOctal(hp->gid, sizeof(hp->gid));
419 size = getOctal(hp->size, sizeof(hp->size));
420 mtime = getOctal(hp->mtime, sizeof(hp->mtime));
421 checkSum = getOctal(hp->checkSum, sizeof(hp->checkSum));
422
423 if ((mode < 0) || (uid < 0) || (gid < 0) || (size < 0))
424 {
425 if (!badHeader)
426 fprintf(stderr, "Bad tar header, skipping\n");
427
428 badHeader = TRUE;
429
430 return;
431 }
432
433 badHeader = FALSE;
434 skipFileFlag = FALSE;
435
436 /*
437 * Check for the file modes.
438 */
439 hardLink = ((hp->typeFlag == TAR_TYPE_HARD_LINK) ||
440 (hp->typeFlag == TAR_TYPE_HARD_LINK - '0'));
441
442 softLink = ((hp->typeFlag == TAR_TYPE_SOFT_LINK) ||
443 (hp->typeFlag == TAR_TYPE_SOFT_LINK - '0'));
444
445 /*
446 * Check for a directory or a regular file.
447 */
448 if (name[strlen(name) - 1] == '/')
449 mode |= S_IFDIR;
450 else if ((mode & S_IFMT) == 0)
451 mode |= S_IFREG;
452
453 /*
454 * Check for absolute paths in the file.
455 * If we find any, then warn the user and make them relative.
456 */
457 if (*name == '/')
458 {
459 while (*name == '/')
460 name++;
461
462 if (!warnedRoot)
463 {
464 fprintf(stderr,
465 "Absolute path detected, removing leading slashes\n");
466 }
467
468 warnedRoot = TRUE;
469 }
470
471 /*
472 * See if we want this file to be restored.
473 * If not, then set up to skip it.
474 */
475 if (!wantFileName(name, fileCount, fileTable))
476 {
477 if (!hardLink && !softLink && S_ISREG(mode))
478 {
479 inHeader = (size == 0);
480 dataCc = size;
481 }
482
483 skipFileFlag = TRUE;
484
485 return;
486 }
487
488 /*
489 * This file is to be handled.
490 * If we aren't extracting then just list information about the file.
491 */
492 if (!extractFlag)
493 {
494 if (verboseFlag)
495 {
496 printf("%s %3d/%-d %9ld %s %s", modeString(mode),
497 uid, gid, size, timeString(mtime), name);
498 }
499 else
500 printf("%s", name);
501
502 if (hardLink)
503 printf(" (link to \"%s\")", hp->linkName);
504 else if (softLink)
505 printf(" (symlink to \"%s\")", hp->linkName);
506 else if (S_ISREG(mode))
507 {
508 inHeader = (size == 0);
509 dataCc = size;
510 }
511
512 printf("\n");
513
514 return;
515 }
516
517 /*
518 * We really want to extract the file.
519 */
520 if (verboseFlag)
521 printf("x %s\n", name);
522
523 if (hardLink)
524 {
525 if (link(hp->linkName, name) < 0)
526 perror(name);
527
528 return;
529 }
530
531 if (softLink)
532 {
533#ifdef S_ISLNK
534 if (symlink(hp->linkName, name) < 0)
535 perror(name);
536#else
537 fprintf(stderr, "Cannot create symbolic links\n");
538#endif
539 return;
540 }
541
542 /*
543 * If the file is a directory, then just create the path.
544 */
545 if (S_ISDIR(mode))
546 {
547 createPath(name, mode);
548
549 return;
550 }
551
552 /*
553 * There is a file to write.
554 * First create the path to it if necessary with a default permission.
555 */
556 createPath(name, 0777);
557
558 inHeader = (size == 0);
559 dataCc = size;
560
561 /*
562 * Start the output file.
563 */
564 if (tostdoutFlag==TRUE)
565 outFd = STDOUT;
566 else
567 outFd = open(name, O_WRONLY | O_CREAT | O_TRUNC, mode);
568
569 if (outFd < 0)
570 {
571 perror(name);
572 skipFileFlag = TRUE;
573 return;
574 }
575
576 /*
577 * If the file is empty, then that's all we need to do.
578 */
579 if (size == 0 && tostdoutFlag == FALSE)
580 {
581 (void) close(outFd);
582 outFd = -1;
583 }
584}
585
586
587/*
588 * Handle a data block of some specified size that was read.
589 */
590static void
591readData(const char * cp, int count)
592{
593 /*
594 * Reduce the amount of data left in this file.
595 * If there is no more data left, then we need to read
596 * the header again.
597 */
598 dataCc -= count;
599
600 if (dataCc <= 0)
601 inHeader = TRUE;
602
603 /*
604 * If we aren't extracting files or this file is being
605 * skipped then do nothing more.
606 */
607 if (!extractFlag || skipFileFlag)
608 return;
609
610 /*
611 * Write the data to the output file.
612 */
613 if (fullWrite(outFd, cp, count) < 0)
614 {
615 perror(outName);
616 if (tostdoutFlag==FALSE) {
617 (void) close(outFd);
618 outFd = -1;
619 }
620 skipFileFlag = TRUE;
621 return;
622 }
623
624 /*
625 * If the write failed, close the file and disable further
626 * writes to this file.
627 */
628 if (dataCc <= 0 && tostdoutFlag==FALSE)
629 {
630 if (close(outFd))
631 perror(outName);
632
633 outFd = -1;
634 }
635}
636
637
638/*
639 * Write a tar file containing the specified files.
640 */
641static void
642writeTarFile(int fileCount, char ** fileTable)
643{
644 struct stat statbuf;
645
646 /*
647 * Make sure there is at least one file specified.
648 */
649 if (fileCount <= 0)
650 {
651 fprintf(stderr, "No files specified to be saved\n");
652 errorFlag=TRUE;
653 }
654
655 /*
656 * Create the tar file for writing.
657 */
658 if ( (tarName==NULL) || !strcmp( tarName, "-") ) {
659 tostdoutFlag = TRUE;
660 tarFd = STDOUT;
661 }
662 else
663 tarFd = open(tarName, O_WRONLY | O_CREAT | O_TRUNC, 0666);
664
665 if (tarFd < 0)
666 {
667 perror(tarName);
668 errorFlag=TRUE;
669 return;
670 }
671
672 /*
673 * Get the device and inode of the tar file for checking later.
674 */
675 if (fstat(tarFd, &statbuf) < 0)
676 {
677 perror(tarName);
678 errorFlag = TRUE;
679 goto done;
680 }
681
682 tarDev = statbuf.st_dev;
683 tarInode = statbuf.st_ino;
684
685 /*
686 * Append each file name into the archive file.
687 * Follow symbolic links for these top level file names.
688 */
689 while (!errorFlag && (fileCount-- > 0))
690 {
691 saveFile(*fileTable++, FALSE);
692 }
693
694 /*
695 * Now write an empty block of zeroes to end the archive.
696 */
697 writeTarBlock("", 1);
698
699
700done:
701 /*
702 * Close the tar file and check for errors if it was opened.
703 */
704 if ( (tostdoutFlag==FALSE) && (tarFd >= 0) && (close(tarFd) < 0))
705 perror(tarName);
706}
707
708
709/*
710 * Save one file into the tar file.
711 * If the file is a directory, then this will recursively save all of
712 * the files and directories within the directory. The seeLinks
713 * flag indicates whether or not we want to see symbolic links as
714 * they really are, instead of blindly following them.
715 */
716static void
717saveFile(const char * fileName, BOOL seeLinks)
718{
719 int status;
720 int mode;
721 struct stat statbuf;
722
723 if (verboseFlag)
724 printf("a %s\n", fileName);
725
726 /*
727 * Check that the file name will fit in the header.
728 */
729 if (strlen(fileName) >= TAR_NAME_SIZE)
730 {
731 fprintf(stderr, "%s: File name is too long\n", fileName);
732
733 return;
734 }
735
736 /*
737 * Find out about the file.
738 */
739#ifdef S_ISLNK
740 if (seeLinks)
741 status = lstat(fileName, &statbuf);
742 else
743#endif
744 status = stat(fileName, &statbuf);
745
746 if (status < 0)
747 {
748 perror(fileName);
749
750 return;
751 }
752
753 /*
754 * Make sure we aren't trying to save our file into itself.
755 */
756 if ((statbuf.st_dev == tarDev) && (statbuf.st_ino == tarInode))
757 {
758 fprintf(stderr, "Skipping saving of archive file itself\n");
759
760 return;
761 }
762
763 /*
764 * Check the type of file.
765 */
766 mode = statbuf.st_mode;
767
768 if (S_ISDIR(mode))
769 {
770 saveDirectory(fileName, &statbuf);
771
772 return;
773 }
774
775 if (S_ISREG(mode))
776 {
777 saveRegularFile(fileName, &statbuf);
778
779 return;
780 }
781
782 /*
783 * The file is a strange type of file, ignore it.
784 */
785 fprintf(stderr, "%s: not a directory or regular file\n", fileName);
786}
787
788
789/*
790 * Save a regular file to the tar file.
791 */
792static void
793saveRegularFile(const char * fileName, const struct stat * statbuf)
794{
795 BOOL sawEof;
796 int fileFd;
797 int cc;
798 int dataCount;
799 long fullDataCount;
800 char data[TAR_BLOCK_SIZE * 16];
801
802 /*
803 * Open the file for reading.
804 */
805 fileFd = open(fileName, O_RDONLY);
806
807 if (fileFd < 0)
808 {
809 perror(fileName);
810
811 return;
812 }
813
814 /*
815 * Write out the header for the file.
816 */
817 writeHeader(fileName, statbuf);
818
819 /*
820 * Write the data blocks of the file.
821 * We must be careful to write the amount of data that the stat
822 * buffer indicated, even if the file has changed size. Otherwise
823 * the tar file will be incorrect.
824 */
825 fullDataCount = statbuf->st_size;
826 sawEof = FALSE;
827
828 while (fullDataCount > 0)
829 {
830 /*
831 * Get the amount to write this iteration which is
832 * the minumum of the amount left to write and the
833 * buffer size.
834 */
835 dataCount = sizeof(data);
836
837 if (dataCount > fullDataCount)
838 dataCount = (int) fullDataCount;
839
840 /*
841 * Read the data from the file if we haven't seen the
842 * end of file yet.
843 */
844 cc = 0;
845
846 if (!sawEof)
847 {
848 cc = fullRead(fileFd, data, dataCount);
849
850 if (cc < 0)
851 {
852 perror(fileName);
853
854 (void) close(fileFd);
855 errorFlag = TRUE;
856
857 return;
858 }
859
860 /*
861 * If the file ended too soon, complain and set
862 * a flag so we will zero fill the rest of it.
863 */
864 if (cc < dataCount)
865 {
866 fprintf(stderr,
867 "%s: Short read - zero filling",
868 fileName);
869
870 sawEof = TRUE;
871 }
872 }
873
874 /*
875 * Zero fill the rest of the data if necessary.
876 */
877 if (cc < dataCount)
878 memset(data + cc, 0, dataCount - cc);
879
880 /*
881 * Write the buffer to the TAR file.
882 */
883 writeTarBlock(data, dataCount);
884
885 fullDataCount -= dataCount;
886 }
887
888 /*
889 * Close the file.
890 */
891 if ( (tostdoutFlag==FALSE) && close(fileFd) < 0)
892 fprintf(stderr, "%s: close: %s\n", fileName, strerror(errno));
893}
894
895
896/*
897 * Save a directory and all of its files to the tar file.
898 */
899static void
900saveDirectory(const char * dirName, const struct stat * statbuf)
901{
902 DIR * dir;
903 struct dirent * entry;
904 BOOL needSlash;
905 char fullName[PATH_LEN];
906
907 /*
908 * Construct the directory name as used in the tar file by appending
909 * a slash character to it.
910 */
911 strcpy(fullName, dirName);
912 strcat(fullName, "/");
913
914 /*
915 * Write out the header for the directory entry.
916 */
917 writeHeader(fullName, statbuf);
918
919 /*
920 * Open the directory.
921 */
922 dir = opendir(dirName);
923
924 if (dir == NULL)
925 {
926 fprintf(stderr, "Cannot read directory \"%s\": %s\n",
927 dirName, strerror(errno));
928
929 return;
930 }
931
932 /*
933 * See if a slash is needed.
934 */
935 needSlash = (*dirName && (dirName[strlen(dirName) - 1] != '/'));
936
937 /*
938 * Read all of the directory entries and check them,
939 * except for the current and parent directory entries.
940 */
941 while (!errorFlag && ((entry = readdir(dir)) != NULL))
942 {
943 if ((strcmp(entry->d_name, ".") == 0) ||
944 (strcmp(entry->d_name, "..") == 0))
945 {
946 continue;
947 }
948
949 /*
950 * Build the full path name to the file.
951 */
952 strcpy(fullName, dirName);
953
954 if (needSlash)
955 strcat(fullName, "/");
956
957 strcat(fullName, entry->d_name);
958
959 /*
960 * Write this file to the tar file, noticing whether or not
961 * the file is a symbolic link.
962 */
963 saveFile(fullName, TRUE);
964 }
965
966 /*
967 * All done, close the directory.
968 */
969 closedir(dir);
970}
971
972
973/*
974 * Write a tar header for the specified file name and status.
975 * It is assumed that the file name fits.
976 */
977static void
978writeHeader(const char * fileName, const struct stat * statbuf)
979{
980 long checkSum;
981 const unsigned char * cp;
982 int len;
983 TarHeader header;
984
985 /*
986 * Zero the header block in preparation for filling it in.
987 */
988 memset((char *) &header, 0, sizeof(header));
989
990 /*
991 * Fill in the header.
992 */
993 strcpy(header.name, fileName);
994
995 strncpy(header.magic, TAR_MAGIC, sizeof(header.magic));
996 strncpy(header.version, TAR_VERSION, sizeof(header.version));
997
998 putOctal(header.mode, sizeof(header.mode), statbuf->st_mode & 0777);
999 putOctal(header.uid, sizeof(header.uid), statbuf->st_uid);
1000 putOctal(header.gid, sizeof(header.gid), statbuf->st_gid);
1001 putOctal(header.size, sizeof(header.size), statbuf->st_size);
1002 putOctal(header.mtime, sizeof(header.mtime), statbuf->st_mtime);
1003
1004 header.typeFlag = TAR_TYPE_REGULAR;
1005
1006 /*
1007 * Calculate and store the checksum.
1008 * This is the sum of all of the bytes of the header,
1009 * with the checksum field itself treated as blanks.
1010 */
1011 memset(header.checkSum, ' ', sizeof(header.checkSum));
1012
1013 cp = (const unsigned char *) &header;
1014 len = sizeof(header);
1015 checkSum = 0;
1016
1017 while (len-- > 0)
1018 checkSum += *cp++;
1019
1020 putOctal(header.checkSum, sizeof(header.checkSum), checkSum);
1021
1022 /*
1023 * Write the tar header.
1024 */
1025 writeTarBlock((const char *) &header, sizeof(header));
1026}
1027
1028
1029/*
1030 * Write data to one or more blocks of the tar file.
1031 * The data is always padded out to a multiple of TAR_BLOCK_SIZE.
1032 * The errorFlag static variable is set on an error.
1033 */
1034static void
1035writeTarBlock(const char * buf, int len)
1036{
1037 int partialLength;
1038 int completeLength;
1039 char fullBlock[TAR_BLOCK_SIZE];
1040
1041 /*
1042 * If we had a write error before, then do nothing more.
1043 */
1044 if (errorFlag)
1045 return;
1046
1047 /*
1048 * Get the amount of complete and partial blocks.
1049 */
1050 partialLength = len % TAR_BLOCK_SIZE;
1051 completeLength = len - partialLength;
1052
1053 /*
1054 * Write all of the complete blocks.
1055 */
1056 if ((completeLength > 0) && !fullWrite(tarFd, buf, completeLength))
1057 {
1058 perror(tarName);
1059
1060 errorFlag = TRUE;
1061
1062 return;
1063 }
1064
1065 /*
1066 * If there are no partial blocks left, we are done.
1067 */
1068 if (partialLength == 0)
1069 return;
1070
1071 /*
1072 * Copy the partial data into a complete block, and pad the rest
1073 * of it with zeroes.
1074 */
1075 memcpy(fullBlock, buf + completeLength, partialLength);
1076 memset(fullBlock + partialLength, 0, TAR_BLOCK_SIZE - partialLength);
1077
1078 /*
1079 * Write the last complete block.
1080 */
1081 if (!fullWrite(tarFd, fullBlock, TAR_BLOCK_SIZE))
1082 {
1083 perror(tarName);
1084
1085 errorFlag = TRUE;
1086 }
1087}
1088
1089
1090/*
1091 * Attempt to create the directories along the specified path, except for
1092 * the final component. The mode is given for the final directory only,
1093 * while all previous ones get default protections. Errors are not reported
1094 * here, as failures to restore files can be reported later.
1095 */
1096static void
1097createPath(const char * name, int mode)
1098{
1099 char * cp;
1100 char * cpOld;
1101 char buf[TAR_NAME_SIZE];
1102
1103 strcpy(buf, name);
1104
1105 cp = strchr(buf, '/');
1106
1107 while (cp)
1108 {
1109 cpOld = cp;
1110 cp = strchr(cp + 1, '/');
1111
1112 *cpOld = '\0';
1113
1114 if (mkdir(buf, cp ? 0777 : mode) == 0)
1115 printf("Directory \"%s\" created\n", buf);
1116
1117 *cpOld = '/';
1118 }
1119}
1120
1121
1122/*
1123 * Read an octal value in a field of the specified width, with optional
1124 * spaces on both sides of the number and with an optional null character
1125 * at the end. Returns -1 on an illegal format.
1126 */
1127static long
1128getOctal(const char * cp, int len)
1129{
1130 long val;
1131
1132 while ((len > 0) && (*cp == ' '))
1133 {
1134 cp++;
1135 len--;
1136 }
1137
1138 if ((len == 0) || !isOctal(*cp))
1139 return -1;
1140
1141 val = 0;
1142
1143 while ((len > 0) && isOctal(*cp))
1144 {
1145 val = val * 8 + *cp++ - '0';
1146 len--;
1147 }
1148
1149 while ((len > 0) && (*cp == ' '))
1150 {
1151 cp++;
1152 len--;
1153 }
1154
1155 if ((len > 0) && *cp)
1156 return -1;
1157
1158 return val;
1159}
1160
1161
1162/*
1163 * Put an octal string into the specified buffer.
1164 * The number is zero and space padded and possibly null padded.
1165 * Returns TRUE if successful.
1166 */
1167static BOOL
1168putOctal(char * cp, int len, long value)
1169{
1170 int tempLength;
1171 char * tempString;
1172 char tempBuffer[32];
1173
1174 /*
1175 * Create a string of the specified length with an initial space,
1176 * leading zeroes and the octal number, and a trailing null.
1177 */
1178 tempString = tempBuffer;
1179
1180 sprintf(tempString, " %0*lo", len - 2, value);
1181
1182 tempLength = strlen(tempString) + 1;
1183
1184 /*
1185 * If the string is too large, suppress the leading space.
1186 */
1187 if (tempLength > len)
1188 {
1189 tempLength--;
1190 tempString++;
1191 }
1192
1193 /*
1194 * If the string is still too large, suppress the trailing null.
1195 */
1196 if (tempLength > len)
1197 tempLength--;
1198
1199 /*
1200 * If the string is still too large, fail.
1201 */
1202 if (tempLength > len)
1203 return FALSE;
1204
1205 /*
1206 * Copy the string to the field.
1207 */
1208 memcpy(cp, tempString, len);
1209
1210 return TRUE;
1211}
1212
1213
1214/*
1215 * See if the specified file name belongs to one of the specified list
1216 * of path prefixes. An empty list implies that all files are wanted.
1217 * Returns TRUE if the file is selected.
1218 */
1219static BOOL
1220wantFileName(const char * fileName, int fileCount, char ** fileTable)
1221{
1222 const char * pathName;
1223 int fileLength;
1224 int pathLength;
1225
1226 /*
1227 * If there are no files in the list, then the file is wanted.
1228 */
1229 if (fileCount == 0)
1230 return TRUE;
1231
1232 fileLength = strlen(fileName);
1233
1234 /*
1235 * Check each of the test paths.
1236 */
1237 while (fileCount-- > 0)
1238 {
1239 pathName = *fileTable++;
1240
1241 pathLength = strlen(pathName);
1242
1243 if (fileLength < pathLength)
1244 continue;
1245
1246 if (memcmp(fileName, pathName, pathLength) != 0)
1247 continue;
1248
1249 if ((fileLength == pathLength) ||
1250 (fileName[pathLength] == '/'))
1251 {
1252 return TRUE;
1253 }
1254 }
1255
1256 return FALSE;
1257}
1258
1259
1260
1261/*
1262 * Return the standard ls-like mode string from a file mode.
1263 * This is static and so is overwritten on each call.
1264 */
1265const char *
1266modeString(int mode)
1267{
1268 static char buf[12];
1269
1270 strcpy(buf, "----------");
1271
1272 /*
1273 * Fill in the file type.
1274 */
1275 if (S_ISDIR(mode))
1276 buf[0] = 'd';
1277 if (S_ISCHR(mode))
1278 buf[0] = 'c';
1279 if (S_ISBLK(mode))
1280 buf[0] = 'b';
1281 if (S_ISFIFO(mode))
1282 buf[0] = 'p';
1283#ifdef S_ISLNK
1284 if (S_ISLNK(mode))
1285 buf[0] = 'l';
1286#endif
1287#ifdef S_ISSOCK
1288 if (S_ISSOCK(mode))
1289 buf[0] = 's';
1290#endif
1291
1292 /*
1293 * Now fill in the normal file permissions.
1294 */
1295 if (mode & S_IRUSR)
1296 buf[1] = 'r';
1297 if (mode & S_IWUSR)
1298 buf[2] = 'w';
1299 if (mode & S_IXUSR)
1300 buf[3] = 'x';
1301 if (mode & S_IRGRP)
1302 buf[4] = 'r';
1303 if (mode & S_IWGRP)
1304 buf[5] = 'w';
1305 if (mode & S_IXGRP)
1306 buf[6] = 'x';
1307 if (mode & S_IROTH)
1308 buf[7] = 'r';
1309 if (mode & S_IWOTH)
1310 buf[8] = 'w';
1311 if (mode & S_IXOTH)
1312 buf[9] = 'x';
1313
1314 /*
1315 * Finally fill in magic stuff like suid and sticky text.
1316 */
1317 if (mode & S_ISUID)
1318 buf[3] = ((mode & S_IXUSR) ? 's' : 'S');
1319 if (mode & S_ISGID)
1320 buf[6] = ((mode & S_IXGRP) ? 's' : 'S');
1321 if (mode & S_ISVTX)
1322 buf[9] = ((mode & S_IXOTH) ? 't' : 'T');
1323
1324 return buf;
1325}
1326
1327
1328/*
1329 * Get the time string to be used for a file.
1330 * This is down to the minute for new files, but only the date for old files.
1331 * The string is returned from a static buffer, and so is overwritten for
1332 * each call.
1333 */
1334const char *
1335timeString(time_t timeVal)
1336{
1337 time_t now;
1338 char * str;
1339 static char buf[26];
1340
1341 time(&now);
1342
1343 str = ctime(&timeVal);
1344
1345 strcpy(buf, &str[4]);
1346 buf[12] = '\0';
1347
1348 if ((timeVal > now) || (timeVal < now - 365*24*60*60L))
1349 {
1350 strcpy(&buf[7], &str[20]);
1351 buf[11] = '\0';
1352 }
1353
1354 return buf;
1355}
1356
1357
1358
1359/*
1360 * Write all of the supplied buffer out to a file.
1361 * This does multiple writes as necessary.
1362 * Returns the amount written, or -1 on an error.
1363 */
1364int
1365fullWrite(int fd, const char * buf, int len)
1366{
1367 int cc;
1368 int total;
1369
1370 total = 0;
1371
1372 while (len > 0)
1373 {
1374 cc = write(fd, buf, len);
1375
1376 if (cc < 0)
1377 return -1;
1378
1379 buf += cc;
1380 total+= cc;
1381 len -= cc;
1382 }
1383
1384 return total;
1385}
1386
1387
1388/*
1389 * Read all of the supplied buffer from a file.
1390 * This does multiple reads as necessary.
1391 * Returns the amount read, or -1 on an error.
1392 * A short read is returned on an end of file.
1393 */
1394int
1395fullRead(int fd, char * buf, int len)
1396{
1397 int cc;
1398 int total;
1399
1400 total = 0;
1401
1402 while (len > 0)
1403 {
1404 cc = read(fd, buf, len);
1405
1406 if (cc < 0)
1407 return -1;
1408
1409 if (cc == 0)
1410 break;
1411
1412 buf += cc;
1413 total+= cc;
1414 len -= cc;
1415 }
1416
1417 return total;
1418}
1419
1420
1421
1422#endif
1423/* END CODE */
1424
1425