]> git.ozlabs.org Git - ppp.git/blob - pppdump/bsd-comp.c
9d45f0bf610d8aa3a1da7e6f0c2f254bb1745578
[ppp.git] / pppdump / bsd-comp.c
1 /* Because this code is derived from the 4.3BSD compress source:
2  *
3  *
4  * Copyright (c) 1985, 1986 The Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * James A. Woods, derived from original work by Spencer Thomas
9  * and Joseph Orost.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  */
39
40 /*
41  * $Id: bsd-comp.c,v 1.4 2004/01/17 05:47:55 carlsonj Exp $
42  */
43
44 #include <sys/types.h>
45 #include <stdio.h>
46 #include <stddef.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include "ppp_defs.h"
50 #include "ppp-comp.h"
51
52 #if DO_BSD_COMPRESS
53
54 /*
55  * PPP "BSD compress" compression
56  *  The differences between this compression and the classic BSD LZW
57  *  source are obvious from the requirement that the classic code worked
58  *  with files while this handles arbitrarily long streams that
59  *  are broken into packets.  They are:
60  *
61  *      When the code size expands, a block of junk is not emitted by
62  *          the compressor and not expected by the decompressor.
63  *
64  *      New codes are not necessarily assigned every time an old
65  *          code is output by the compressor.  This is because a packet
66  *          end forces a code to be emitted, but does not imply that a
67  *          new sequence has been seen.
68  *
69  *      The compression ratio is checked at the first end of a packet
70  *          after the appropriate gap.  Besides simplifying and speeding
71  *          things up, this makes it more likely that the transmitter
72  *          and receiver will agree when the dictionary is cleared when
73  *          compression is not going well.
74  */
75
76 /*
77  * A dictionary for doing BSD compress.
78  */
79 struct bsd_db {
80     int     totlen;                     /* length of this structure */
81     u_int   hsize;                      /* size of the hash table */
82     u_char  hshift;                     /* used in hash function */
83     u_char  n_bits;                     /* current bits/code */
84     u_char  maxbits;
85     u_char  debug;
86     u_char  unit;
87     u_short seqno;                      /* sequence number of next packet */
88     u_int   hdrlen;                     /* header length to preallocate */
89     u_int   mru;
90     u_int   maxmaxcode;                 /* largest valid code */
91     u_int   max_ent;                    /* largest code in use */
92     u_int   in_count;                   /* uncompressed bytes, aged */
93     u_int   bytes_out;                  /* compressed bytes, aged */
94     u_int   ratio;                      /* recent compression ratio */
95     u_int   checkpoint;                 /* when to next check the ratio */
96     u_int   clear_count;                /* times dictionary cleared */
97     u_int   incomp_count;               /* incompressible packets */
98     u_int   incomp_bytes;               /* incompressible bytes */
99     u_int   uncomp_count;               /* uncompressed packets */
100     u_int   uncomp_bytes;               /* uncompressed bytes */
101     u_int   comp_count;                 /* compressed packets */
102     u_int   comp_bytes;                 /* compressed bytes */
103     u_short *lens;                      /* array of lengths of codes */
104     struct bsd_dict {
105         union {                         /* hash value */
106             u_int32_t   fcode;
107             struct {
108 #ifdef BSD_LITTLE_ENDIAN
109                 u_short prefix;         /* preceding code */
110                 u_char  suffix;         /* last character of new code */
111                 u_char  pad;
112 #else
113                 u_char  pad;
114                 u_char  suffix;         /* last character of new code */
115                 u_short prefix;         /* preceding code */
116 #endif
117             } hs;
118         } f;
119         u_short codem1;                 /* output of hash table -1 */
120         u_short cptr;                   /* map code to hash table entry */
121     } dict[1];
122 };
123
124 #define BSD_OVHD        2               /* BSD compress overhead/packet */
125 #define BSD_INIT_BITS   BSD_MIN_BITS
126
127 static void     *bsd_decomp_alloc(u_char *options, int opt_len);
128 static void     bsd_free(void *state);
129 static int      bsd_decomp_init(void *state, u_char *options, int opt_len,
130                                 int unit, int hdrlen, int mru, int debug);
131 static void     bsd_incomp(void *state, u_char *dmsg, int len);
132 static int      bsd_decompress(void *state, u_char *cmp, int inlen,
133                                u_char *dmp, int *outlen);
134 static void     bsd_reset(void *state);
135 static void     bsd_comp_stats(void *state, struct compstat *stats);
136
137 /*
138  * Exported procedures.
139  */
140 struct compressor ppp_bsd_compress = {
141     CI_BSD_COMPRESS,            /* compress_proto */
142     bsd_decomp_alloc,           /* decomp_alloc */
143     bsd_free,                   /* decomp_free */
144     bsd_decomp_init,            /* decomp_init */
145     bsd_reset,                  /* decomp_reset */
146     bsd_decompress,             /* decompress */
147     bsd_incomp,                 /* incomp */
148     bsd_comp_stats,             /* decomp_stat */
149 };
150
151 /*
152  * the next two codes should not be changed lightly, as they must not
153  * lie within the contiguous general code space.
154  */
155 #define CLEAR   256                     /* table clear output code */
156 #define FIRST   257                     /* first free entry */
157 #define LAST    255
158
159 #define MAXCODE(b)      ((1 << (b)) - 1)
160 #define BADCODEM1       MAXCODE(BSD_MAX_BITS)
161
162 #define BSD_HASH(prefix,suffix,hshift)  ((((u_int32_t)(suffix)) << (hshift)) \
163                                          ^ (u_int32_t)(prefix))
164 #define BSD_KEY(prefix,suffix)          ((((u_int32_t)(suffix)) << 16) \
165                                          + (u_int32_t)(prefix))
166
167 #define CHECK_GAP       10000           /* Ratio check interval */
168
169 #define RATIO_SCALE_LOG 8
170 #define RATIO_SCALE     (1<<RATIO_SCALE_LOG)
171 #define RATIO_MAX       (0x7fffffff>>RATIO_SCALE_LOG)
172
173 /*
174  * clear the dictionary
175  */
176 static void
177 bsd_clear(struct bsd_db *db)
178 {
179     db->clear_count++;
180     db->max_ent = FIRST-1;
181     db->n_bits = BSD_INIT_BITS;
182     db->ratio = 0;
183     db->bytes_out = 0;
184     db->in_count = 0;
185     db->checkpoint = CHECK_GAP;
186 }
187
188 /*
189  * If the dictionary is full, then see if it is time to reset it.
190  *
191  * Compute the compression ratio using fixed-point arithmetic
192  * with 8 fractional bits.
193  *
194  * Since we have an infinite stream instead of a single file,
195  * watch only the local compression ratio.
196  *
197  * Since both peers must reset the dictionary at the same time even in
198  * the absence of CLEAR codes (while packets are incompressible), they
199  * must compute the same ratio.
200  */
201 static int                              /* 1=output CLEAR */
202 bsd_check(struct bsd_db *db)
203 {
204     u_int new_ratio;
205
206     if (db->in_count >= db->checkpoint) {
207         /* age the ratio by limiting the size of the counts */
208         if (db->in_count >= RATIO_MAX
209             || db->bytes_out >= RATIO_MAX) {
210             db->in_count -= db->in_count/4;
211             db->bytes_out -= db->bytes_out/4;
212         }
213
214         db->checkpoint = db->in_count + CHECK_GAP;
215
216         if (db->max_ent >= db->maxmaxcode) {
217             /* Reset the dictionary only if the ratio is worse,
218              * or if it looks as if it has been poisoned
219              * by incompressible data.
220              *
221              * This does not overflow, because
222              *  db->in_count <= RATIO_MAX.
223              */
224             new_ratio = db->in_count << RATIO_SCALE_LOG;
225             if (db->bytes_out != 0)
226                 new_ratio /= db->bytes_out;
227
228             if (new_ratio < db->ratio || new_ratio < 1 * RATIO_SCALE) {
229                 bsd_clear(db);
230                 return 1;
231             }
232             db->ratio = new_ratio;
233         }
234     }
235     return 0;
236 }
237
238 /*
239  * Return statistics.
240  */
241 static void
242 bsd_comp_stats(void *state, struct compstat *stats)
243 {
244     struct bsd_db *db = (struct bsd_db *) state;
245     u_int out;
246
247     stats->unc_bytes = db->uncomp_bytes;
248     stats->unc_packets = db->uncomp_count;
249     stats->comp_bytes = db->comp_bytes;
250     stats->comp_packets = db->comp_count;
251     stats->inc_bytes = db->incomp_bytes;
252     stats->inc_packets = db->incomp_count;
253     stats->ratio = db->in_count;
254     out = db->bytes_out;
255     if (stats->ratio <= 0x7fffff)
256         stats->ratio <<= 8;
257     else
258         out >>= 8;
259     if (out != 0)
260         stats->ratio /= out;
261 }
262
263 /*
264  * Reset state, as on a CCP ResetReq.
265  */
266 static void
267 bsd_reset(void *state)
268 {
269     struct bsd_db *db = (struct bsd_db *) state;
270
271     db->seqno = 0;
272     bsd_clear(db);
273     db->clear_count = 0;
274 }
275
276 /*
277  * Allocate space for a (de) compressor.
278  */
279 static void *
280 bsd_alloc(u_char *options, int opt_len, int decomp)
281 {
282     int bits;
283     u_int newlen, hsize, hshift, maxmaxcode;
284     struct bsd_db *db;
285
286     if (opt_len != 3 || options[0] != CI_BSD_COMPRESS || options[1] != 3
287         || BSD_VERSION(options[2]) != BSD_CURRENT_VERSION)
288         return NULL;
289
290     bits = BSD_NBITS(options[2]);
291     switch (bits) {
292     case 9:                     /* needs 82152 for both directions */
293     case 10:                    /* needs 84144 */
294     case 11:                    /* needs 88240 */
295     case 12:                    /* needs 96432 */
296         hsize = 5003;
297         hshift = 4;
298         break;
299     case 13:                    /* needs 176784 */
300         hsize = 9001;
301         hshift = 5;
302         break;
303     case 14:                    /* needs 353744 */
304         hsize = 18013;
305         hshift = 6;
306         break;
307     case 15:                    /* needs 691440 */
308         hsize = 35023;
309         hshift = 7;
310         break;
311     case 16:                    /* needs 1366160--far too much, */
312         /* hsize = 69001; */    /* and 69001 is too big for cptr */
313         /* hshift = 8; */       /* in struct bsd_db */
314         /* break; */
315     default:
316         return NULL;
317     }
318
319     maxmaxcode = MAXCODE(bits);
320     newlen = sizeof(*db) + (hsize-1) * (sizeof(db->dict[0]));
321     db = (struct bsd_db *) malloc(newlen);
322     if (!db)
323         return NULL;
324     memset(db, 0, sizeof(*db) - sizeof(db->dict));
325
326     if (!decomp) {
327         db->lens = NULL;
328     } else {
329         db->lens = (u_short *) malloc((maxmaxcode+1) * sizeof(db->lens[0]));
330         if (!db->lens) {
331             free(db);
332             return NULL;
333         }
334     }
335
336     db->totlen = newlen;
337     db->hsize = hsize;
338     db->hshift = hshift;
339     db->maxmaxcode = maxmaxcode;
340     db->maxbits = bits;
341
342     return (void *) db;
343 }
344
345 static void
346 bsd_free(void *state)
347 {
348     struct bsd_db *db = (struct bsd_db *) state;
349
350     if (db->lens)
351         free(db->lens);
352     free(db);
353 }
354
355 static void *
356 bsd_decomp_alloc(u_char *options, int opt_len)
357 {
358     return bsd_alloc(options, opt_len, 1);
359 }
360
361 /*
362  * Initialize the database.
363  */
364 static int
365 bsd_init(struct bsd_db *db, u_char *options, int opt_len, int unit,
366          int hdrlen, int mru, int debug, int decomp)
367 {
368     int i;
369
370     if (opt_len < CILEN_BSD_COMPRESS
371         || options[0] != CI_BSD_COMPRESS || options[1] != CILEN_BSD_COMPRESS
372         || BSD_VERSION(options[2]) != BSD_CURRENT_VERSION
373         || BSD_NBITS(options[2]) != db->maxbits
374         || (decomp && db->lens == NULL))
375         return 0;
376
377     if (decomp) {
378         i = LAST+1;
379         while (i != 0)
380             db->lens[--i] = 1;
381     }
382     i = db->hsize;
383     while (i != 0) {
384         db->dict[--i].codem1 = BADCODEM1;
385         db->dict[i].cptr = 0;
386     }
387
388     db->unit = unit;
389     db->hdrlen = hdrlen;
390     db->mru = mru;
391     if (debug)
392         db->debug = 1;
393
394     bsd_reset(db);
395
396     return 1;
397 }
398
399 static int
400 bsd_decomp_init(void *state, u_char *options, int opt_len,
401                 int unit, int hdrlen, int mru, int debug)
402 {
403     return bsd_init((struct bsd_db *) state, options, opt_len,
404                     unit, hdrlen, mru, debug, 1);
405 }
406
407
408 /*
409  * Update the "BSD Compress" dictionary on the receiver for
410  * incompressible data by pretending to compress the incoming data.
411  */
412 static void
413 bsd_incomp(void *state, u_char *dmsg, int mlen)
414 {
415     struct bsd_db *db = (struct bsd_db *) state;
416     u_int hshift = db->hshift;
417     u_int max_ent = db->max_ent;
418     u_int n_bits = db->n_bits;
419     struct bsd_dict *dictp;
420     u_int32_t fcode;
421     u_char c;
422     long hval, disp;
423     int slen, ilen;
424     u_int bitno = 7;
425     u_char *rptr;
426     u_int ent;
427
428     rptr = dmsg;
429     ent = rptr[0];              /* get the protocol */
430     if (ent == 0) {
431         ++rptr;
432         --mlen;
433         ent = rptr[0];
434     }
435     if ((ent & 1) == 0 || ent < 0x21 || ent > 0xf9)
436         return;
437
438     db->seqno++;
439     ilen = 1;           /* count the protocol as 1 byte */
440     ++rptr;
441     slen = dmsg + mlen - rptr;
442     ilen += slen;
443     for (; slen > 0; --slen) {
444         c = *rptr++;
445         fcode = BSD_KEY(ent, c);
446         hval = BSD_HASH(ent, c, hshift);
447         dictp = &db->dict[hval];
448
449         /* validate and then check the entry */
450         if (dictp->codem1 >= max_ent)
451             goto nomatch;
452         if (dictp->f.fcode == fcode) {
453             ent = dictp->codem1+1;
454             continue;   /* found (prefix,suffix) */
455         }
456
457         /* continue probing until a match or invalid entry */
458         disp = (hval == 0) ? 1 : hval;
459         do {
460             hval += disp;
461             if (hval >= db->hsize)
462                 hval -= db->hsize;
463             dictp = &db->dict[hval];
464             if (dictp->codem1 >= max_ent)
465                 goto nomatch;
466         } while (dictp->f.fcode != fcode);
467         ent = dictp->codem1+1;
468         continue;       /* finally found (prefix,suffix) */
469
470     nomatch:            /* output (count) the prefix */
471         bitno += n_bits;
472
473         /* code -> hashtable */
474         if (max_ent < db->maxmaxcode) {
475             struct bsd_dict *dictp2;
476             /* expand code size if needed */
477             if (max_ent >= MAXCODE(n_bits))
478                 db->n_bits = ++n_bits;
479
480             /* Invalidate previous hash table entry
481              * assigned this code, and then take it over.
482              */
483             dictp2 = &db->dict[max_ent+1];
484             if (db->dict[dictp2->cptr].codem1 == max_ent)
485                 db->dict[dictp2->cptr].codem1 = BADCODEM1;
486             dictp2->cptr = hval;
487             dictp->codem1 = max_ent;
488             dictp->f.fcode = fcode;
489
490             db->max_ent = ++max_ent;
491             db->lens[max_ent] = db->lens[ent]+1;
492         }
493         ent = c;
494     }
495     bitno += n_bits;            /* output (count) the last code */
496     db->bytes_out += bitno/8;
497     db->in_count += ilen;
498     (void)bsd_check(db);
499
500     ++db->incomp_count;
501     db->incomp_bytes += ilen;
502     ++db->uncomp_count;
503     db->uncomp_bytes += ilen;
504
505     /* Increase code size if we would have without the packet
506      * boundary and as the decompressor will.
507      */
508     if (max_ent >= MAXCODE(n_bits) && max_ent < db->maxmaxcode)
509         db->n_bits++;
510 }
511
512
513 /*
514  * Decompress "BSD Compress"
515  *
516  * Because of patent problems, we return DECOMP_ERROR for errors
517  * found by inspecting the input data and for system problems, but
518  * DECOMP_FATALERROR for any errors which could possibly be said to
519  * be being detected "after" decompression.  For DECOMP_ERROR,
520  * we can issue a CCP reset-request; for DECOMP_FATALERROR, we may be
521  * infringing a patent of Motorola's if we do, so we take CCP down
522  * instead.
523  *
524  * Given that the frame has the correct sequence number and a good FCS,
525  * errors such as invalid codes in the input most likely indicate a
526  * bug, so we return DECOMP_FATALERROR for them in order to turn off
527  * compression, even though they are detected by inspecting the input.
528  */
529 static int
530 bsd_decompress(void *state, u_char *cmsg, int inlen, u_char *dmp, int *outlenp)
531 {
532     struct bsd_db *db = (struct bsd_db *) state;
533     u_int max_ent = db->max_ent;
534     u_int32_t accm = 0;
535     u_int bitno = 32;           /* 1st valid bit in accm */
536     u_int n_bits = db->n_bits;
537     u_int tgtbitno = 32-n_bits; /* bitno when we have a code */
538     struct bsd_dict *dictp;
539     int explen, seq, len;
540     u_int incode, oldcode, finchar;
541     u_char *p, *rptr, *wptr;
542     int ilen;
543     int codelen, extra;
544
545     rptr = cmsg;
546     if (*rptr == 0)
547         ++rptr;
548     ++rptr;                     /* skip protocol (assumed 0xfd) */
549     seq = (rptr[0] << 8) + rptr[1];
550     rptr += BSD_OVHD;
551     ilen = len = cmsg + inlen - rptr;
552
553     /*
554      * Check the sequence number and give up if it is not what we expect.
555      */
556     if (seq != db->seqno++) {
557         if (db->debug)
558             printf("bsd_decomp%d: bad sequence # %d, expected %d\n",
559                    db->unit, seq, db->seqno - 1);
560         return DECOMP_ERROR;
561     }
562
563     wptr = dmp + db->hdrlen;
564
565     oldcode = CLEAR;
566     explen = 0;
567     while (len > 0) {
568         /*
569          * Accumulate bytes until we have a complete code.
570          * Then get the next code, relying on the 32-bit,
571          * unsigned accm to mask the result.
572          */
573         bitno -= 8;
574         accm |= *rptr++ << bitno;
575         --len;
576         if (tgtbitno < bitno)
577             continue;
578         incode = accm >> tgtbitno;
579         accm <<= n_bits;
580         bitno += n_bits;
581
582         if (incode == CLEAR) {
583             /*
584              * The dictionary must only be cleared at
585              * the end of a packet.  But there could be an
586              * empty message block at the end.
587              */
588             if (len > 0) {
589                 if (db->debug)
590                     printf("bsd_decomp%d: bad CLEAR\n", db->unit);
591                 return DECOMP_FATALERROR;
592             }
593             bsd_clear(db);
594             explen = ilen = 0;
595             break;
596         }
597
598         if (incode > max_ent + 2 || incode > db->maxmaxcode
599             || (incode > max_ent && oldcode == CLEAR)) {
600             if (db->debug) {
601                 printf("bsd_decomp%d: bad code 0x%x oldcode=0x%x ",
602                        db->unit, incode, oldcode);
603                 printf("max_ent=0x%x seqno=%d\n",
604                        max_ent, db->seqno);
605             }
606             return DECOMP_FATALERROR;   /* probably a bug */
607         }
608
609         /* Special case for KwKwK string. */
610         if (incode > max_ent) {
611             finchar = oldcode;
612             extra = 1;
613         } else {
614             finchar = incode;
615             extra = 0;
616         }
617
618         codelen = db->lens[finchar];
619         explen += codelen + extra;
620         if (explen > db->mru + 1) {
621             if (db->debug)
622                 printf("bsd_decomp%d: ran out of mru\n", db->unit);
623             return DECOMP_FATALERROR;
624         }
625
626         /*
627          * Decode this code and install it in the decompressed buffer.
628          */
629         p = (wptr += codelen);
630         while (finchar > LAST) {
631             dictp = &db->dict[db->dict[finchar].cptr];
632 #ifdef DEBUG
633             --codelen;
634             if (codelen <= 0) {
635                 printf("bsd_decomp%d: fell off end of chain ", db->unit);
636                 printf("0x%x at 0x%x by 0x%x, max_ent=0x%x\n",
637                        incode, finchar, db->dict[finchar].cptr, max_ent);
638                 return DECOMP_FATALERROR;
639             }
640             if (dictp->codem1 != finchar-1) {
641                 printf("bsd_decomp%d: bad code chain 0x%x finchar=0x%x ",
642                        db->unit, incode, finchar);
643                 printf("oldcode=0x%x cptr=0x%x codem1=0x%x\n", oldcode,
644                        db->dict[finchar].cptr, dictp->codem1);
645                 return DECOMP_FATALERROR;
646             }
647 #endif
648             *--p = dictp->f.hs.suffix;
649             finchar = dictp->f.hs.prefix;
650         }
651         *--p = finchar;
652
653 #ifdef DEBUG
654         if (--codelen != 0)
655             printf("bsd_decomp%d: short by %d after code 0x%x, max_ent=0x%x\n",
656                    db->unit, codelen, incode, max_ent);
657 #endif
658
659         if (extra)              /* the KwKwK case again */
660             *wptr++ = finchar;
661
662         /*
663          * If not first code in a packet, and
664          * if not out of code space, then allocate a new code.
665          *
666          * Keep the hash table correct so it can be used
667          * with uncompressed packets.
668          */
669         if (oldcode != CLEAR && max_ent < db->maxmaxcode) {
670             struct bsd_dict *dictp2;
671             u_int32_t fcode;
672             int hval, disp;
673
674             fcode = BSD_KEY(oldcode,finchar);
675             hval = BSD_HASH(oldcode,finchar,db->hshift);
676             dictp = &db->dict[hval];
677
678             /* look for a free hash table entry */
679             if (dictp->codem1 < max_ent) {
680                 disp = (hval == 0) ? 1 : hval;
681                 do {
682                     hval += disp;
683                     if (hval >= db->hsize)
684                         hval -= db->hsize;
685                     dictp = &db->dict[hval];
686                 } while (dictp->codem1 < max_ent);
687             }
688
689             /*
690              * Invalidate previous hash table entry
691              * assigned this code, and then take it over
692              */
693             dictp2 = &db->dict[max_ent+1];
694             if (db->dict[dictp2->cptr].codem1 == max_ent) {
695                 db->dict[dictp2->cptr].codem1 = BADCODEM1;
696             }
697             dictp2->cptr = hval;
698             dictp->codem1 = max_ent;
699             dictp->f.fcode = fcode;
700
701             db->max_ent = ++max_ent;
702             db->lens[max_ent] = db->lens[oldcode]+1;
703
704             /* Expand code size if needed. */
705             if (max_ent >= MAXCODE(n_bits) && max_ent < db->maxmaxcode) {
706                 db->n_bits = ++n_bits;
707                 tgtbitno = 32-n_bits;
708             }
709         }
710         oldcode = incode;
711     }
712     *outlenp = wptr - (dmp + db->hdrlen);
713
714     /*
715      * Keep the checkpoint right so that incompressible packets
716      * clear the dictionary at the right times.
717      */
718     db->bytes_out += ilen;
719     db->in_count += explen;
720     if (bsd_check(db) && db->debug) {
721         printf("bsd_decomp%d: peer should have cleared dictionary\n",
722                db->unit);
723     }
724
725     ++db->comp_count;
726     db->comp_bytes += ilen + BSD_OVHD;
727     ++db->uncomp_count;
728     db->uncomp_bytes += explen;
729
730     return DECOMP_OK;
731 }
732 #endif /* DO_BSD_COMPRESS */