home *** CD-ROM | disk | FTP | other *** search
- /*
- * rnews.c - rnews v1.4
- * Copyright 1989 Jon Zeeff <zeeff@b-tech.ann-arbor.mi.us>
- *
- * rnews.c - rnews v1.5 - 11/04/90
- * - changed the include & struct setup for the statfs() call for
- * BSD systems that don't have proper calls (e.g. Ultrix)
- * kehoe@scotty.dccs.upenn.edu -or- brendan@cs.widener.edu (Brendan Kehoe)
- */
-
- #include <stdio.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #include "rnews.h"
-
- /* external declarations */
- extern char **environ;
- extern FILE *popen();
- void perror();
- void exit();
- unsigned sleep();
-
- /* forward declarations */
- void copyout();
-
- FILE *relaynews;
-
- main()
- {
- char buffer[20];
- int ret;
-
- #ifdef USG
- ulimit(2,60000L); /* in case the ulimit was too low */
- #endif
-
- /* get rid of our suid root status completely */
- if (setgid(NEWS_GROUP) || setuid(NEWS_UID)) {
- perror("can't set uid or gid\n");
- exit(1); /* */
- }
-
- /* replace environment with a clean one */
- environ[0] = "IFS= \t\n";
- environ[1] = "PATH=/bin:/usr/bin";
- /*environ[2] = "TZ=EST5EDT"; /* some people need this */
- environ[2] = 0;
-
- (void) umask(022);
- #ifdef NICE
- (void) nice(5);
- #endif
-
- /* Do we have a reasonable number of free blocks? */
- /* Eliminate this test if you don't have disk space problems */
-
- if (!have_space(SPOOL_MNT,SPOOL_FREE))
- (void) make_space();
-
- if (!have_space(LIB_MNT,LIB_FREE)||!have_space(SPOOL_MNT,SPOOL_FREE)) {
- fprintf(stderr,"Not enough space to run rnews\n");
-
- /* Why 75? Because, I use 75 to indicate a temporary
- error that the program calling rnews (eg. uuxqt with
- the right modification) may be able to use to try again
- later. */
-
- exit(75);
- }
-
- (void) fclose(stdout);
- #ifdef NICE
- (void) sleep(2);
- #endif
- relaynews = popen(RELAYNEWS,"w");
- if (relaynews == NULL) {
- perror("can't popen relaynews");
- exit(3);
- }
- #ifdef NICE
- (void) sleep(2);
- #endif
-
- if (fread(buffer, 1, 13, stdin) != 13) {
- fprintf(stderr, "could not read in first 13 characters\n");
- exit(4);
- }
-
- if (strncmp(buffer, "#! cunbatch\n",12) == 0) {
- (void) ungetc(buffer[12], stdin);
- uncompress();
- }
- #ifdef C7
- else if (strncmp(buffer, "#! c7unbatch\n",13) == 0)
- do_c7();
- #endif
- else if (buffer[0] == 0x1f) { /* compressed w/o cunbatch */
- rewind(stdin); /* won't work on a pipe */
- uncompress();
- }
- else { /* plain text */
- if (fwrite(buffer,1,13,relaynews) != 13) {
- fprintf(stderr, "error writing first 13 characters\n");
- exit(5);
- }
- copyout();
- }
-
- if ((ret = pclose(relaynews)) != 0) {
- perror("pclose of relaynews failed");
- exit(ret);
- }
-
- /* Leave enough space for local people to post news */
-
- if (!have_space(SPOOL_MNT,SPOOL_FREE))
- (void) make_space();
-
- exit(0);
- return 0; /* keep lint happy */
- }
-
- /* Copy stdin to relaynews */
-
- void
- copyout()
- {
- int count;
- char buf[8192];
-
- while ((count = fread(buf,1,8192,stdin)) > 0) {
- (void) fwrite(buf,1,count,relaynews);
- #ifdef NICE
- (void) sleep(2); /* reduce system load (for uncompressed) */
- #endif
- }
-
- }
-
- /*
- Run progressive expires until there is enough space.
- Steve Schonberger gave me the idea of doing this in rnews.
- */
-
- /* Create these files in EXPIRE_DIR and modify them to suit your system */
-
- char *days[]={"explist.A","explist.B","explist.C","explist.D","explist.E"};
-
- #define LOCK_FILE "LOCK.rnews"
-
- make_space()
- {
- register int i;
- int ret;
- char string[sizeof(EXPIRE) + 20];
-
- (void) chdir(EXPIRE_DIR);
-
- /* Get a lock file to prevent another rnews from wasting cpu time */
- /* It's not a disaster if we don't, so blow it away after awhile */
-
- for (i = 0; i < 1000; i++) {
- if (open(LOCK_FILE, O_CREAT | O_EXCL | O_WRONLY, 0777) >= 0)
- break;
- else
- (void) sleep(5);
- }
-
- if (have_space(SPOOL_MNT,SPOOL_FREE))
- ret = 0; /* space appeared while waiting for lock */
- else
- for (ret = 2,i = 0; i < sizeof(days) / sizeof(char *); ++i) {
- sprintf(string,"%s %s",EXPIRE,days[i]);
- if (system(string)) {
- fprintf(stderr,"Error in running expire to get space\n");
- ret = 1;
- break;
- }
-
- if (have_space(SPOOL_MNT,SPOOL_FREE)) {
- ret = 0;
- break;
- }
- } /* for */
-
- (void) unlink(LOCK_FILE);
- return ret;
-
- }
-
- /*
-
- Space checker. Based on code by:
-
- denny@mcmi.uucp (Denny Page)
-
- */
-
- /*
- * Changed this so it'll deal with BSD systems that don't have proper
- * statfs() syscalls (e.g. Ultrix).
- *
- * kehoe@scotty.dccs.upenn.edu -or- brendan@cs.widener.edu (Brendan Kehoe)
- */
- #ifdef HAVE_STATFS
- # ifdef USG
- # include <sys/statfs.h>
- # define FREEBLOCKS statfsb.f_bfree
- # define FREENODES statfsb.f_ffree
- # else /* !USG */
- # include <sys/vfs.h>
- # define FREEBLOCKS statfsb.f_bavail
- # define FREENODES statfsb.f_ffree
- # endif /* USG */
- struct statfs statfsb;
- #else /* !HAVE_STATFS */
- # include <sys/stat.h>
- # include <ustat.h>
- # define FREEBLOCKS ustatb.f_tfree
- # define FREENODES ustatb.f_tinode
- struct stat statb;
- struct ustat ustatb;
- #endif /* HAVE_STATFS */
-
- have_space(dirname, minblocks)
- char *dirname;
- int minblocks;
- {
-
- #ifndef BSD
- #ifndef USG
- return 1;
- #endif
- #endif
-
-
- #ifdef HAVE_STATFS
- if (statfs(dirname, &statfsb, sizeof(statfsb), 0) != 0) {
- perror("statfs failed");
- return(1);
- }
- #else /* HAVE_STATFS */
- if (stat(dirname, &statb) != 0) {
- perror("stat failed");
- return(1);
- }
- if (ustat(statb.st_dev, &ustatb) != 0) {
- perror("ustat failed");
- return(1);
- }
- #endif /* HAVE_STATFS */
-
- if (FREEBLOCKS > minblocks && FREENODES > MIN_INODES)
- return 1;
- else
- return 0;
-
- }
-
- /* The following is a slightly hacked up version of compress */
- /* It reads from stdin and writes to stdout */
-
- /*
- * Compress - data compression program
- */
-
- #define UNCOMPRESS_ONLY
-
- #define min(a,b) ((a>b) ? b : a)
- extern char *strcpy(), *strcat();
- /*
- * machine variants which require cc -Dmachine: pdp11, z8000, pcxt
- */
- /*
- * Set USERMEM to the maximum amount of physical user memory available
- * in bytes. USERMEM is used to determine the maximum BITS that can be used
- * for compression.
- *
- * SACREDMEM is the amount of physical memory saved for others; compress
- * will hog the rest.
- */
- #ifndef SACREDMEM
- #define SACREDMEM 0
- #endif
-
- #ifndef USERMEM
- # define USERMEM 450000 /* default user memory */
- #endif
-
- #ifdef interdata /* (Perkin-Elmer) */
- #define SIGNED_COMPARE_SLOW /* signed compare is slower than unsigned */
- #endif
-
- #ifdef pdp11
- # define NO_UCHAR /* also if "unsigned char" functions as signed char */
- # undef USERMEM
- #endif /* pdp11 */ /* don't forget to compile with -i */
-
- #ifdef z8000
- # undef vax /* weird preprocessor */
- # undef USERMEM
- #endif /* z8000 */
-
- #ifdef pcxt
- # undef USERMEM
- #endif /* pcxt */
-
- #ifdef USERMEM
- # if USERMEM >= (433484+SACREDMEM)
- # define PBITS 16
- # else
- # if USERMEM >= (229600+SACREDMEM)
- # define PBITS 15
- # else
- # if USERMEM >= (127536+SACREDMEM)
- # define PBITS 14
- # else
- # if USERMEM >= (73464+SACREDMEM)
- # define PBITS 13
- # else
- # define PBITS 12
- # endif
- # endif
- # endif
- # endif
- # undef USERMEM
- #endif /* USERMEM */
-
- /* Preferred BITS for this memory size */
-
- #ifdef PBITS
- # ifndef BITS
- # define BITS PBITS
- # endif
- #endif
-
- #if BITS == 16
- # define HSIZE 69001 /* 95% occupancy */
- #endif
- #if BITS == 15
- # define HSIZE 35023 /* 94% occupancy */
- #endif
- #if BITS == 14
- # define HSIZE 18013 /* 91% occupancy */
- #endif
- #if BITS == 13
- # define HSIZE 9001 /* 91% occupancy */
- #endif
- #if BITS <= 12
- # define HSIZE 5003 /* 80% occupancy */
- #endif
-
- #ifdef M_XENIX /* Stupid compiler can't handle arrays with */
- # if BITS == 16 /* more than 65535 bytes - so we fake it */
- # define XENIX_16
- # else
- # if BITS > 13 /* Code only handles BITS = 12, 13, or 16 */
- # define BITS 13
- # endif
- # endif
- #endif
-
- /*
- * a code_int must be able to hold 2**BITS values of type int, and also -1
- */
- #if BITS > 15
- typedef long int code_int;
- #else
- typedef int code_int;
- #endif
-
- #ifdef SIGNED_COMPARE_SLOW
- typedef unsigned long int count_int;
- typedef unsigned short int count_short;
- #else
- typedef long int count_int;
- #endif
-
- #ifdef NO_UCHAR
- typedef char char_type;
- #else
- typedef unsigned char char_type;
- #endif /* UCHAR */
- char_type magic_header[] = { "\037\235" }; /* 1F 9D */
-
- /* Defines for third byte of header */
- #define BIT_MASK 0x1f
- #define BLOCK_MASK 0x80
- /* Masks 0x40 and 0x20 are free. I think 0x20 should mean that there is
- a fourth header byte (for expansion).
- */
- #define INIT_BITS 9 /* initial number of bits/code */
-
- /*
- * compress.c - File compression ala IEEE Computer, June 1984.
- *
- * Authors: Spencer W. Thomas (decvax!harpo!utah-cs!utah-gr!thomas)
- * Jim McKie (decvax!mcvax!jim)
- * Steve Davies (decvax!vax135!petsd!peora!srd)
- * Ken Turkowski (decvax!decwrl!turtlevax!ken)
- * James A. Woods (decvax!ihnp4!ames!jaw)
- * Joe Orost (decvax!vax135!petsd!joe)
- */
-
- /* $Log: rnews.c,v $
- * Revision 1.1 90/10/12 14:24:34 zeeff
- * Initial revision
- *
- * Revision 4.0 85/07/30 12:50:00 joe
- * Removed ferror() calls in output routine on every output except first.
- * Prepared for release to the world.
- *
- * Revision 3.6 85/07/04 01:22:21 joe
- * Remove much wasted storage by overlaying hash table with the tables
- * used by decompress: tab_suffix[1<<BITS], stack[8000]. Updated USERMEM
- * computations. Fixed dump_tab() DEBUG routine.
- *
- * Revision 3.5 85/06/30 20:47:21 jaw
- * Change hash function to use exclusive-or. Rip out hash cache. These
- * speedups render the megamemory version defunct, for now. Make decoder
- * stack global. Parts of the RCS trunks 2.7, 2.6, and 2.1 no longer apply.
- *
- * Revision 3.4 85/06/27 12:00:00 ken
- * Get rid of all floating-point calculations by doing all compression ratio
- * calculations in fixed point.
- *
- * Revision 3.3 85/06/24 21:53:24 joe
- * Incorporate portability suggestion for M_XENIX. Got rid of text on #else
- * and #endif lines. Cleaned up #ifdefs for vax and interdata.
- *
- * Revision 3.2 85/06/06 21:53:24 jaw
- * Incorporate portability suggestions for Z8000, IBM PC/XT from mailing list.
- * Default to "quiet" output (no compression statistics).
- *
- * Revision 3.1 85/05/12 18:56:13 jaw
- * Integrate decompress() stack speedups (from early pointer mods by McKie).
- * Repair multi-file USERMEM gaffe. Unify 'force' flags to mimic semantics
- * of SVR2 'pack'. Streamline block-compress table clear logic. Increase
- * output byte count by magic number size.
- *
- * Revision 3.0 84/11/27 11:50:00 petsd!joe
- * Set HSIZE depending on BITS. Set BITS depending on USERMEM. Unrolled
- * loops in clear routines. Added "-C" flag for 2.0 compatibility. Used
- * unsigned compares on Perkin-Elmer. Fixed foreground check.
- *
- * Revision 2.7 84/11/16 19:35:39 ames!jaw
- * Cache common hash codes based on input statistics; this improves
- * performance for low-density raster images. Pass on #ifdef bundle
- * from Turkowski.
- *
- * Revision 2.6 84/11/05 19:18:21 ames!jaw
- * Vary size of hash tables to reduce time for small files.
- * Tune PDP-11 hash function.
- *
- * Revision 2.5 84/10/30 20:15:14 ames!jaw
- * Junk chaining; replace with the simpler (and, on the VAX, faster)
- * double hashing, discussed within. Make block compression standard.
- *
- * Revision 2.4 84/10/16 11:11:11 ames!jaw
- * Introduce adaptive reset for block compression, to boost the rate
- * another several percent. (See mailing list notes.)
- *
- * Revision 2.3 84/09/22 22:00:00 petsd!joe
- * Implemented "-B" block compress. Implemented REVERSE sorting of tab_next.
- * Bug fix for last bits. Changed fwrite to putchar loop everywhere.
- *
- * Revision 2.2 84/09/18 14:12:21 ames!jaw
- * Fold in news changes, small machine typedef from thomas,
- * #ifdef interdata from joe.
- *
- * Revision 2.1 84/09/10 12:34:56 ames!jaw
- * Configured fast table lookup for 32-bit machines.
- * This cuts user time in half for b <= FBITS, and is useful for news batching
- * from VAX to PDP sites. Also sped up decompress() [fwrite->putc] and
- * added signal catcher [plus beef in writeerr()] to delete effluvia.
- *
- * Revision 2.0 84/08/28 22:00:00 petsd!joe
- * Add check for foreground before prompting user. Insert maxbits into
- * compressed file. Force file being uncompressed to end with ".Z".
- * Added "-c" flag and "zcat". Prepared for release.
- *
- * Revision 1.10 84/08/24 18:28:00 turtlevax!ken
- * Will only compress regular files (no directories), added a magic number
- * header (plus an undocumented -n flag to handle old files without headers),
- * added -f flag to force overwriting of possibly existing destination file,
- * otherwise the user is prompted for a response. Will tack on a .Z to a
- * filename if it doesn't have one when decompressing. Will only replace
- * file if it was compressed.
- *
- * Revision 1.9 84/08/16 17:28:00 turtlevax!ken
- * Removed scanargs(), getopt(), added .Z extension and unlimited number of
- * filenames to compress. Flags may be clustered (-Ddvb12) or separated
- * (-D -d -v -b 12), or combination thereof. Modes and other status is
- * copied with copystat(). -O bug for 4.2 seems to have disappeared with
- * 1.8.
- *
- * Revision 1.8 84/08/09 23:15:00 joe
- * Made it compatible with vax version, installed jim's fixes/enhancements
- *
- * Revision 1.6 84/08/01 22:08:00 joe
- * Sped up algorithm significantly by sorting the compress chain.
- *
- * Revision 1.5 84/07/13 13:11:00 srd
- * Added C version of vax asm routines. Changed structure to arrays to
- * save much memory. Do unsigned compares where possible (faster on
- * Perkin-Elmer)
- *
- * Revision 1.4 84/07/05 03:11:11 thomas
- * Clean up the code a little and lint it. (Lint complains about all
- * the regs used in the asm, but I'm not going to "fix" this.)
- *
- * Revision 1.3 84/07/05 02:06:54 thomas
- * Minor fixes.
- *
- * Revision 1.2 84/07/05 00:27:27 thomas
- * Add variable bit length output.
- *
- */
- #include <ctype.h>
- #include <signal.h>
- /* #include <sys/stat.h> */
-
- #define ARGVAL() (*++(*argv) || (--argc && *++argv))
-
- int n_bits; /* number of bits/code */
- int maxbits = BITS; /* user settable max # bits/code */
- code_int maxcode; /* maximum code, given n_bits */
- code_int maxmaxcode = 1L << BITS; /* should NEVER generate this code */
- #ifdef COMPATIBLE /* But wrong! */
- # define MAXCODE(n_bits) (1L << (n_bits) - 1)
- #else
- # define MAXCODE(n_bits) ((1L << (n_bits)) - 1)
- #endif /* COMPATIBLE */
-
- #ifdef XENIX_16
- count_int htab0[8192];
- count_int htab1[8192];
- count_int htab2[8192];
- count_int htab3[8192];
- count_int htab4[8192];
- count_int htab5[8192];
- count_int htab6[8192];
- count_int htab7[8192];
- count_int htab8[HSIZE-65536];
- count_int * htab[9] = {
- htab0, htab1, htab2, htab3, htab4, htab5, htab6, htab7, htab8 };
-
- #define htabof(i) (htab[(i) >> 13][(i) & 0x1fff])
- unsigned short code0tab[16384];
- unsigned short code1tab[16384];
- unsigned short code2tab[16384];
- unsigned short code3tab[16384];
- unsigned short code4tab[16384];
- unsigned short * codetab[5] = {
- code0tab, code1tab, code2tab, code3tab, code4tab };
-
- #define codetabof(i) (codetab[(i) >> 14][(i) & 0x3fff])
-
- #else /* Normal machine */
- /* save some memory if only doing uncompress */
- #ifdef UNCOMPRESS_ONLY
- /* should be (2 ** BITS + 8000) bytes */
- count_int htab[((1L << BITS) + 8000) / sizeof(count_int)];
- #else
- count_int htab [HSIZE];
- #endif
- unsigned short codetab [HSIZE];
- #define htabof(i) htab[i]
- #define codetabof(i) codetab[i]
- #endif /* XENIX_16 */
- code_int hsize = HSIZE; /* for dynamic table sizing */
- count_int fsize;
-
- /*
- * To save much memory, we overlay the table used by compress() with those
- * used by decompress(). The tab_prefix table is the same size and type
- * as the codetab. The tab_suffix table needs 2**BITS characters. We
- * get this from the beginning of htab. The output stack uses the rest
- * of htab, and contains characters. There is plenty of room for any
- * possible stack (stack used to be 8000 characters).
- */
-
- #define tab_prefixof(i) codetabof(i)
- #ifdef XENIX_16
- # define tab_suffixof(i) ((char_type *)htab[(i)>>15])[(i) & 0x7fff]
- # define de_stack ((char_type *)(htab2))
- #else /* Normal machine */
- # define tab_suffixof(i) ((char_type *)(htab))[i]
- # define de_stack ((char_type *)&tab_suffixof(1L<<BITS))
- #endif /* XENIX_16 */
-
- code_int free_ent = 0; /* first unused entry */
- int exit_stat = 0;
-
- code_int getcode();
-
- Usage() {
- #ifdef DEBUG
- (void)fprintf(stderr,"Usage: compress [-dDVfc] [-b maxbits] [file ...]\n");
- }
- int debug = 0;
- #else
- (void)fprintf(stderr,"Usage: compress [-dfvcV] [-b maxbits] [file ...]\n");
- }
- #endif /* DEBUG */
- int nomagic = 0; /* Use a 3-byte magic number header, unless old file */
- int zcat_flg = 0; /* Write output on stdout, suppress messages */
- int quiet = 1; /* don't tell me about compression */
-
- /*
- * block compression parameters -- after all codes are used up,
- * and compression rate changes, start over.
- */
- int block_compress = BLOCK_MASK;
- int clear_flg = 0;
- long int ratio = 0;
- #define CHECK_GAP 10000 /* ratio check interval */
- count_int checkpoint = CHECK_GAP;
- /*
- * the next two codes should not be changed lightly, as they must not
- * lie within the contiguous general code space.
- */
- #define FIRST 257 /* first free entry */
- #define CLEAR 256 /* table clear output code */
-
- int force = 0;
- char ofname [100];
- int oktozap = 0; /* true if unlink(ofname) won't lose data */
-
- #ifdef DEBUG
- int verbose = 0;
- #endif /* DEBUG */
- void (*bgnd_flag)();
-
- int do_decomp = 0;
-
- /*****************************************************************
- * TAG( main )
- *
- * Algorithm from "A Technique for High Performance Data Compression",
- * Terry A. Welch, IEEE Computer Vol 17, No 6 (June 1984), pp 8-19.
- *
- * Usage: compress [-dfvc] [-b bits] [file ...]
- * Inputs:
- * -d: If given, decompression is done instead.
- *
- * -c: Write output on stdout, don't remove original.
- *
- * -b: Parameter limits the max number of bits/code.
- *
- * -f: Forces output file to be generated, even if one already
- * exists, and even if no space is saved by compressing.
- * If -f is not used, the user will be prompted if stdin is
- * a tty, otherwise, the output file will not be overwritten.
- *
- * -v: Write compression statistics
- *
- * file ...: Files to be compressed. If none specified, stdin
- * is used.
- * Outputs:
- * file.Z: Compressed form of file with same mode, owner, and utimes
- * or stdout (if stdin used as input)
- *
- * Assumptions:
- * When filenames are given, replaces with the compressed version
- * (.Z suffix) only if the file decreases in size.
- * Algorithm:
- * Modified Lempel-Ziv method (LZW). Basically finds common
- * substrings and replaces them with a variable size code. This is
- * deterministic, and can be done on the fly. Thus, the decompression
- * procedure needs no input table, but tracks the way the table was built.
- */
-
- uncompress()
- {
- char tempname[100];
- char *cp, *rindex(), *malloc();
- extern onintr(), oops();
-
- if(maxbits < INIT_BITS) maxbits = INIT_BITS;
- if (maxbits > BITS) maxbits = BITS;
- maxmaxcode = 1L << maxbits;
-
- /* Check the magic number */
- if ((getchar()!=(magic_header[0] & 0xFF))
- || (getchar()!=(magic_header[1] & 0xFF))) {
- (void)fprintf(stderr, "stdin: not in compressed format\n");
- exit(20);
- }
- maxbits = getchar(); /* set -b from file */
- block_compress = maxbits & BLOCK_MASK;
- maxbits &= BIT_MASK;
- maxmaxcode = 1L << maxbits;
- fsize = 100000; /* assume stdin large for USERMEM */
- if(maxbits > BITS) {
- (void)fprintf(stderr,
- "stdin: compressed with %d bits, can only handle %d bits\n",
- maxbits, BITS);
- exit(21);
- }
- decompress();
- }
-
- static int offset;
- long int in_count = 1; /* length of input */
- long int bytes_out; /* length of compressed output */
- long int out_count = 0; /* # of codes output (for debugging) */
-
- /*****************************************************************
- * TAG( output )
- *
- * Output the given code.
- * Inputs:
- * code: A n_bits-bit integer. If == -1, then EOF. This assumes
- * that n_bits =< (long)wordsize - 1.
- * Outputs:
- * Outputs code to the file.
- * Assumptions:
- * Chars are 8 bits long.
- * Algorithm:
- * Maintain a BITS character long buffer (so that 8 codes will
- * fit in it exactly). Use the VAX insv instruction to insert each
- * code in turn. When the buffer fills up empty it and start over.
- */
-
- static char buf[BITS];
-
- #ifndef vax
- char_type lmask[9] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80, 0x00};
- char_type rmask[9] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
- #endif /* vax */
-
- output( code )
- code_int code;
- {
- #ifdef DEBUG
- static int col = 0;
- #endif /* DEBUG */
-
- /*
- * On the VAX, it is important to have the register declarations
- * in exactly the order given, or the asm will break.
- */
- register int r_off = offset, bits= n_bits;
- register char * bp = buf;
-
- #ifdef DEBUG
- if ( verbose )
- (void)fprintf( stderr, "%5d%c", code,
- (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
- #endif /* DEBUG */
- if ( code >= 0 ) {
- #ifdef vax
- /* VAX DEPENDENT!! Implementation on other machines is below.
- *
- * Translation: Insert BITS bits from the argument starting at
- * offset bits from the beginning of buf.
- */
- 0; /* Work around for pcc -O bug with asm and if stmt */
- asm( "insv 4(ap),r11,r10,(r9)" );
- #else /* not a vax */
- /*
- * byte/bit numbering on the VAX is simulated by the following code
- */
- /*
- * Get to the first byte.
- */
- bp += (r_off >> 3);
- r_off &= 7;
- /*
- * Since code is always >= 8 bits, only need to mask the first
- * hunk on the left.
- */
- *bp = (*bp & rmask[r_off]) | ((long)code << r_off) & lmask[r_off];
- bp++;
- bits -= (8 - r_off);
- code >>= 8 - r_off;
- /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
- if ( bits >= 8 ) {
- *bp++ = code;
- code >>= 8;
- bits -= 8;
- }
- /* Last bits. */
- if(bits)
- *bp = code;
- #endif /* vax */
- offset += n_bits;
- if ( offset == ((long)n_bits << 3) ) {
- bp = buf;
- bits = n_bits;
- bytes_out += bits;
- do
- putchar(*bp++);
- while(--bits);
- offset = 0;
- }
-
- /*
- * If the next entry is going to be too big for the code size,
- * then increase it, if possible.
- */
- if ( free_ent > maxcode || (clear_flg > 0))
- {
- /*
- * Write the whole buffer, because the input side won't
- * discover the size increase until after it has read it.
- */
- if ( offset > 0 ) {
- if( fwrite( buf, 1, n_bits, stdout ) != n_bits)
- writeerr();
- bytes_out += n_bits;
- }
- offset = 0;
-
- if ( clear_flg ) {
- maxcode = MAXCODE (n_bits = INIT_BITS);
- clear_flg = 0;
- }
- else {
- n_bits++;
- if ( n_bits == maxbits )
- maxcode = maxmaxcode;
- else
- maxcode = MAXCODE(n_bits);
- }
- #ifdef DEBUG
- if ( debug ) {
- (void)fprintf( stderr, "\nChange to %d bits\n", n_bits );
- col = 0;
- }
- #endif /* DEBUG */
- }
- } else {
- /*
- * At EOF, write the rest of the buffer.
- */
- if ( offset > 0 )
- (void)fwrite( buf, 1, (offset + 7) / 8, stdout );
- bytes_out += (offset + 7) / 8;
- offset = 0;
- (void)fflush( stdout );
- #ifdef DEBUG
- if ( verbose )
- (void)fprintf( stderr, "\n" );
- #endif /* DEBUG */
- if( ferror( stdout ) )
- writeerr();
- }
- }
-
- /*
- * Decompress stdin to stdout. This routine adapts to the codes in the
- * file building the "string" table on-the-fly; requiring no table to
- * be stored in the compressed file. The tables used herein are shared
- * with those of the compress() routine. See the definitions above.
- */
-
- decompress() {
- register char_type *stackp;
- register int finchar;
- register code_int code, oldcode, incode;
-
- /*
- * As above, initialize the first 256 entries in the table.
- */
- maxcode = MAXCODE(n_bits = INIT_BITS);
- for ( code = 255; code >= 0; code-- ) {
- tab_prefixof(code) = 0;
- tab_suffixof(code) = (char_type)code;
- }
- free_ent = ((block_compress) ? FIRST : 256 );
-
- finchar = oldcode = getcode();
- if(oldcode == -1) /* EOF already? */
- return; /* Get out of here */
- putchar( (char)finchar ); /* first code must be 8 bits = char */
- if(ferror(stdout)) /* Crash if can't write */
- writeerr();
- stackp = de_stack;
-
- while ( (code = getcode()) > -1 ) {
-
- if ( (code == CLEAR) && block_compress ) {
- for ( code = 255; code >= 0; code-- )
- tab_prefixof(code) = 0;
- clear_flg = 1;
- free_ent = FIRST - 1;
- if ( (code = getcode ()) == -1 ) /* O, untimely death! */
- break;
- }
- incode = code;
- /*
- * Special case for KwKwK string.
- */
- if ( code >= free_ent ) {
- *stackp++ = finchar;
- code = oldcode;
- }
-
- /*
- * Generate output characters in reverse order
- */
- #ifdef SIGNED_COMPARE_SLOW
- while ( ((unsigned long)code) >= ((unsigned long)256) ) {
- #else
- while ( code >= 256 ) {
- #endif
- *stackp++ = tab_suffixof(code);
- code = tab_prefixof(code);
- }
- *stackp++ = finchar = tab_suffixof(code);
-
- /*
- * And put them out in forward order
- */
- do
- putchar ((char) *--stackp );
- while ( stackp > de_stack );
-
- /*
- * Generate the new entry.
- */
- if ( (code=free_ent) < maxmaxcode ) {
- tab_prefixof(code) = (unsigned short)oldcode;
- tab_suffixof(code) = finchar;
- free_ent = code+1;
- }
- /*
- * Remember previous code.
- */
- oldcode = incode;
- }
- (void)fflush( stdout );
- if(ferror(stdout))
- writeerr();
- }
-
- /*****************************************************************
- * TAG( getcode )
- *
- * Read one code from the standard input. If EOF, return -1.
- * Inputs:
- * stdin
- * Outputs:
- * code or -1 is returned.
- */
-
- code_int
- getcode() {
- /*
- * On the VAX, it is important to have the register declarations
- * in exactly the order given, or the asm will break.
- */
- register code_int code;
- static int poffset = 0, size = 0;
- static char_type pbuf[BITS];
- register int r_off, bits;
- register char_type *bp = pbuf;
-
- if ( clear_flg > 0 || poffset >= size || free_ent > maxcode ) {
- /*
- * If the next entry will be too big for the current code
- * size, then we must increase the size. This implies reading
- * a new pbuffer full, too.
- */
- if ( free_ent > maxcode ) {
- n_bits++;
- if ( n_bits == maxbits )
- maxcode = maxmaxcode; /* won't get any bigger now */
- else
- maxcode = MAXCODE(n_bits);
- }
- if ( clear_flg > 0) {
- maxcode = MAXCODE (n_bits = INIT_BITS);
- clear_flg = 0;
- }
- size = fread((char *) pbuf, 1, n_bits, stdin );
- if ( size <= 0 )
- return -1; /* end of file */
- poffset = 0;
- /* Round size down to integral number of codes */
- size = ((long)size << 3) - (n_bits - 1);
- }
- r_off = poffset;
- bits = n_bits;
- #ifdef vax
- asm( "extzv r10,r9,(r8),r11" );
- #else /* not a vax */
- /*
- * Get to the first byte.
- */
- bp += (r_off >> 3);
- r_off &= 7;
- /* Get first part (low order bits) */
- #ifdef NO_UCHAR
- code = ((*bp++ >> r_off) & rmask[8 - r_off]) & 0xff;
- #else
- code = (*bp++ >> r_off);
- #endif /* NO_UCHAR */
- bits -= (8 - r_off);
- r_off = 8 - r_off; /* now, poffset into code word */
- /* Get any 8 bit parts in the middle (<=1 for up to 16 bits). */
- if ( bits >= 8 ) {
- #ifdef NO_UCHAR
- code |= (*bp++ & 0xff) << r_off;
- #else
- code |= *bp++ << r_off;
- #endif /* NO_UCHAR */
- r_off += 8;
- bits -= 8;
- }
- /* high order bits. */
- code |= (*bp & rmask[bits]) << r_off;
- #endif /* vax */
- poffset += n_bits;
-
- return code;
- }
-
- char *
- rindex(s, c) /* For those who don't have it in libc.a */
- register char *s, c;
- {
- char *p;
- for (p = NULL; *s; s++)
- if (*s == c)
- p = s;
- return(p);
- }
-
- #ifdef DEBUG
- printcodes()
- {
- /*
- * Just print out codes from input file. For debugging.
- */
- code_int code;
- int col = 0, bits;
-
- bits = n_bits = INIT_BITS;
- maxcode = MAXCODE(n_bits);
- free_ent = ((block_compress) ? FIRST : 256 );
- while ( ( code = getcode() ) >= 0 ) {
- if ( (code == CLEAR) && block_compress ) {
- free_ent = FIRST - 1;
- clear_flg = 1;
- }
- else if ( free_ent < maxmaxcode )
- free_ent++;
- if ( bits != n_bits ) {
- (void)fprintf(stderr, "\nChange to %d bits\n", n_bits );
- bits = n_bits;
- col = 0;
- }
- (void)fprintf(stderr, "%5d%c", code, (col+=6) >= 74 ? (col = 0, '\n') : ' ' );
- }
- putc( '\n', stderr );
- exit( 0 );
- }
-
- code_int sorttab[1L<<BITS]; /* sorted pointers into htab */
-
- dump_tab() /* dump string table */
- {
- register int i, first;
- register ent;
- #define STACK_SIZE 15000
- int stack_top = STACK_SIZE;
- register c;
-
- if(do_decomp == 0) { /* compressing */
- register int flag = 1;
-
- for(i=0; i<hsize; i++) { /* build sort pointers */
- if((long)htabof(i) >= 0) {
- sorttab[codetabof(i)] = i;
- }
- }
- first = block_compress ? FIRST : 256;
- for(i = first; i < free_ent; i++) {
- (void)fprintf(stderr, "%5d: \"", i);
- de_stack[--stack_top] = '\n';
- de_stack[--stack_top] = '"';
- stack_top = in_stack((htabof(sorttab[i])>>maxbits)&0xff,
- stack_top);
- for(ent=htabof(sorttab[i]) & ((1<<maxbits)-1);
- ent > 256;
- ent=htabof(sorttab[ent]) & ((1<<maxbits)-1)) {
- stack_top = in_stack(htabof(sorttab[ent]) >> maxbits,
- stack_top);
- }
- stack_top = in_stack(ent, stack_top);
- (void)fwrite( &de_stack[stack_top], 1, STACK_SIZE-stack_top, stderr);
- stack_top = STACK_SIZE;
- }
- } else if(!debug) { /* decompressing */
-
- for ( i = 0; i < free_ent; i++ ) {
- ent = i;
- c = tab_suffixof(ent);
- if ( isascii(c) && isprint(c) )
- (void)fprintf( stderr, "%5d: %5d/'%c' \"",
- ent, tab_prefixof(ent), c );
- else
- (void)fprintf( stderr, "%5d: %5d/\\%03o \"",
- ent, tab_prefixof(ent), c );
- de_stack[--stack_top] = '\n';
- de_stack[--stack_top] = '"';
- for ( ; ent != NULL;
- ent = (ent >= FIRST ? tab_prefixof(ent) : NULL) ) {
- stack_top = in_stack(tab_suffixof(ent), stack_top);
- }
- (void)fwrite( &de_stack[stack_top], 1, STACK_SIZE - stack_top, stderr );
- stack_top = STACK_SIZE;
- }
- }
- }
-
- int
- in_stack(c, stack_top)
- register c, stack_top;
- {
- if ( (isascii(c) && isprint(c) && c != '\\') || c == ' ' ) {
- de_stack[--stack_top] = c;
- } else {
- switch( c ) {
- case '\n': de_stack[--stack_top] = 'n'; break;
- case '\t': de_stack[--stack_top] = 't'; break;
- case '\b': de_stack[--stack_top] = 'b'; break;
- case '\f': de_stack[--stack_top] = 'f'; break;
- case '\r': de_stack[--stack_top] = 'r'; break;
- case '\\': de_stack[--stack_top] = '\\'; break;
- default:
- de_stack[--stack_top] = '0' + c % 8;
- de_stack[--stack_top] = '0' + (c / 8) % 8;
- de_stack[--stack_top] = '0' + c / 64;
- break;
- }
- de_stack[--stack_top] = '\\';
- }
- return stack_top;
- }
- #endif /* DEBUG */
-
- writeerr()
- {
- perror ( ofname );
- (void)unlink ( ofname );
- exit ( 22 );
- }
-
- /*
- * This routine returns 1 if we are running in the foreground and stderr
- * is a tty.
- */
- foreground()
- {
- if(bgnd_flag) { /* background? */
- return(0);
- } else { /* foreground */
- if(isatty(2)) { /* and stderr is a tty */
- return(1);
- } else {
- return(0);
- }
- }
- }
-
- onintr ( )
- {
- if (oktozap) (void)unlink ( ofname );
- exit ( 23 );
- }
-
- oops ( ) /* wild pointer -- assume bad input */
- {
- if ( do_decomp == 1 )
- (void)fprintf ( stderr, "uncompress: corrupt input\n" );
- if (oktozap) (void)unlink ( ofname );
- exit ( 24 );
- }
-
- cl_block () /* table clear for block compress */
- {
- register long int rat;
-
- checkpoint = in_count + CHECK_GAP;
- #ifdef DEBUG
- if ( debug ) {
- (void)fprintf ( stderr, "count: %ld, ratio: ", in_count );
- prratio ( stderr, in_count, bytes_out );
- (void)fprintf ( stderr, "\n");
- }
- #endif /* DEBUG */
-
- if(in_count > 0x007fffff) { /* shift will overflow */
- rat = bytes_out >> 8;
- if(rat == 0) { /* Don't divide by zero */
- rat = 0x7fffffff;
- } else {
- rat = in_count / rat;
- }
- } else {
- rat = (in_count << 8) / bytes_out; /* 8 fractional bits */
- }
- if ( rat > ratio ) {
- ratio = rat;
- } else {
- ratio = 0;
- #ifdef DEBUG
- if(verbose)
- dump_tab(); /* dump string table */
- #endif
- cl_hash ( (count_int) hsize );
- free_ent = FIRST;
- clear_flg = 1;
- output ( (code_int) CLEAR );
- #ifdef DEBUG
- if(debug)
- (void)fprintf ( stderr, "clear\n" );
- #endif /* DEBUG */
- }
- }
-
- cl_hash(phsize) /* reset code table */
- register count_int phsize;
- {
- #ifndef XENIX_16 /* Normal machine */
- register count_int *htab_p = htab+phsize;
- #else
- register j;
- register long k = phsize;
- register count_int *htab_p;
- #endif
- register long i;
- register long m1 = -1;
-
- #ifdef XENIX_16
- for(j=0; j<=8 && k>=0; j++,k-=8192) {
- i = 8192;
- if(k < 8192) {
- i = k;
- }
- htab_p = &(htab[j][i]);
- i -= 16;
- if(i > 0) {
- #else
- i = phsize - 16;
- #endif
- do { /* might use Sys V memset(3) here */
- *(htab_p-16) = m1;
- *(htab_p-15) = m1;
- *(htab_p-14) = m1;
- *(htab_p-13) = m1;
- *(htab_p-12) = m1;
- *(htab_p-11) = m1;
- *(htab_p-10) = m1;
- *(htab_p-9) = m1;
- *(htab_p-8) = m1;
- *(htab_p-7) = m1;
- *(htab_p-6) = m1;
- *(htab_p-5) = m1;
- *(htab_p-4) = m1;
- *(htab_p-3) = m1;
- *(htab_p-2) = m1;
- *(htab_p-1) = m1;
- htab_p -= 16;
- } while ((i -= 16) >= 0);
- #ifdef XENIX_16
- }
- }
- #endif
- for ( i += 16; i > 0; i-- )
- *--htab_p = m1;
- }
-
- prratio(stream, num, den)
- FILE *stream;
- long int num, den;
- {
- register int q; /* Doesn't need to be long */
-
- if(num > 214748L) { /* 2147483647/10000 */
- q = num / (den / 10000L);
- } else {
- q = 10000L * num / den; /* Long calculations, though */
- }
- if (q < 0) {
- putc('-', stream);
- q = -q;
- }
- (void)fprintf(stream, "%d.%02d%%", q / 100, q % 100);
- }
-
- #ifdef C7
-
- /* C7 code by Uwe Doering (gemini@netmbx.uucp) */
-
- do_c7()
- {
- int pid,wpid,pfildes[2],exit_stat = 0;
- FILE *rnews_pipe;
-
-
- if (pipe(pfildes) != 0) {
- fprintf(stderr, "could not open interprocess pipe\n");
- exit(7);
- }
- if ((pid = fork()) == -1) {
- fprintf(stderr, "could not fork\n");
- exit(8);
- }
- if (pid) {
- (void) fclose(stdin);
- if ((rnews_pipe = fdopen(pfildes[0],"r")) == NULL) {
- fprintf(stderr, "could not open rnews_pipe for input\n");
- exit(9);
- }
- (void) close(pfildes[1]);
- uncompress();
- (void) fclose(rnews_pipe);
- (void) close(pfildes[0]);
- while ((wpid = wait(&exit_stat)) != pid && wpid != -1)
- ;
- if (exit_stat)
- exit(10);
- }
- else {
- int result;
-
- (void) fclose(relaynews);
- if ((rnews_pipe = fdopen(pfildes[1],"w")) == NULL) {
- fprintf(stderr, "could not open rnews_pipe for output\n");
- exit(11);
- }
- (void) close(pfildes[0]);
- result = c7decode();
- (void) fclose(rnews_pipe);
- (void) close(pfildes[1]);
- exit(result);
- }
-
- } /* do_c7 */
-
- /* c7decode */
-
- /*
- * This program is the inverse of encode
- *
- * It collects runs of 12 characters, combines pairs of those
- * to form 6 13 bit numbers, extracts the top bit of each of
- * those to make a 13th 6 bit character, and splits each of
- * the remaining 6 12 bit numbers to form 12 6 bit ones.
- *
- * The strings of 6 bit numbers are collected into groups of
- * 4 and converted into 3 8 bit characters.
- *
- * Now all that would be trivial, if we didn't need to worry
- * about ending all this correctly. About 1/2 of the following
- * program wouldn't be here if the ending didn't matter....
- */
-
- /*
- * the following pair of characters can never occur as a pair
- * in legal input (since (90 * 91 + 90) > 2^13) - they are
- * noticed at the beginning of a 12 char block, and serve to
- * indicate that this block is the terminator. The character
- * immediately following is the (expanded) terminator length.
- */
- #define ENDMARK1 ((90*91 + 90) / 91)
- #define ENDMARK2 ((90*91 + 90) % 91)
-
- int errcnt = 0;
-
- c7decode()
- {
- register c;
- register char *p;
- register i;
- register first = 1;
- register cnt = 0;
- char b12[12];
- char c12[12];
-
- p = b12;
- i = 12;
-
- while ((c = getchar()) != EOF) {
- if (c < ' ' || c >= (' ' + 91)) {
- if (errcnt++ == 0)
- fprintf(stderr, "c7decode: Bad data\n");
- continue;
- }
- if (i == 10 && p[-1] == ENDMARK1 && p[-2] == ENDMARK2) {
- cnt = c - ' ';
- i = 12;
- p -= 2;
- continue;
- }
- *p++ = c - ' ';
- if (--i == 0) {
- if (p == &b12[12]) {
- if (!first)
- pack12(c12, 12, 0);
- else
- first = 0;
- p = c12;
- } else {
- pack12(b12, 12, 0);
- p = b12;
- }
- i = 12;
- }
- }
-
- if (p >= &b12[0] && p < &b12[12]) {
- if (!first)
- pack12(c12, 12, i == 12 ? cnt : 0);
- } else
- pack12(b12, 12, i == 12 ? cnt : 0);
-
- if (i != 12) {
- if (p >= &b12[0] && p < &b12[12])
- pack12(b12, 12-i, cnt);
- else
- pack12(c12, 12-i, cnt);
- }
-
- return((errcnt > 0) ? 1 : 0);
- }
-
- static char b4[4];
- static int cnt = 0;
-
- pack12(p, n, last)
- register char *p;
- register n;
- int last;
- {
- register i;
- register char *q;
- char b13[13];
-
- {
- register c;
- register c13;
-
- q = b13;
- c13 = 0;
-
- for (i = 0; i < n; i += 2) {
- c = *p++ * 91;
- c += *p++;
- c13 <<= 1;
- if (c & (1 << 12))
- c13 |= 1;
- *q++ = (c >> 6) & 0x3f;
- *q++ = c & 0x3f;
- }
- *q++ = c13;
- if (last)
- q = &b13[last];
- }
-
- p = b13;
- n = q - p;
- i = cnt;
- q = &b4[cnt];
-
- while (--n > 0) {
- *q++ = *p++;
- if (++i == 4) {
- char b3[3];
- register char *b = b4;
-
- /* inline expansion of pack6bit, to save calls ... */
-
- q = b3;
- *q++ = (b[0] << 2) | ((b[1] >> 4) & 0x3);
- *q++ = (b[1] << 4) | ((b[2] >> 2) & 0xf);
- *q = (b[2] << 6) | (b[3] & 0x3f);
-
- q = b3;
- while (--i > 0)
- putchar(*q++);
-
- q = b4;
- }
- }
-
- *q++ = *p++; /* the last octet */
- ++i;
-
- if (last || i == 4) {
- pack6bit(b4, i, last);
- i = 0;
- }
-
- cnt = i;
- }
-
- pack6bit(p, n, last)
- register char *p;
- register int n;
- int last;
- {
- register char *q;
- register i = 3;
- char b3[3];
-
- if (last) {
- i = p[n-1];
- if (i >= 3) {
- fprintf(stderr, "c7decode: Badly encoded file\n");
- errcnt++;
- i = 3; /* do the best we can */
- }
- }
-
- q = b3;
- *q++ = (p[0] << 2) | ((p[1] >> 4) & 0x3);
- *q++ = (p[1] << 4) | ((p[2] >> 2) & 0xf);
- *q = (p[2] << 6) | (p[3] & 0x3f);
-
- q = b3;
-
- while (--i >= 0)
- putchar(*q++);
- }
-
- #endif
-