1 /* Because this code is derived from the 4.3BSD compress source:
4 * Copyright (c) 1985, 1986 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
8 * James A. Woods, derived from original work by Spencer Thomas
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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
41 * This version is for use with STREAMS under SunOS 4.x,
42 * Digital UNIX, AIX 4.x, and SVR4 systems including Solaris 2.
44 * $Id: bsd-comp.c,v 1.1.1.4 2003/10/14 08:09:53 sparq Exp $
48 #include <net/net_globals.h>
50 #include <sys/param.h>
51 #include <sys/types.h>
52 #include <sys/stream.h>
53 #include <net/ppp_defs.h>
57 #include <sys/byteorder.h>
59 #define BSD_LITTLE_ENDIAN
66 #define BSD_LITTLE_ENDIAN
69 #define PACKETPTR mblk_t *
70 #include <net/ppp-comp.h>
75 * PPP "BSD compress" compression
76 * The differences between this compression and the classic BSD LZW
77 * source are obvious from the requirement that the classic code worked
78 * with files while this handles arbitrarily long streams that
79 * are broken into packets. They are:
81 * When the code size expands, a block of junk is not emitted by
82 * the compressor and not expected by the decompressor.
84 * New codes are not necessarily assigned every time an old
85 * code is output by the compressor. This is because a packet
86 * end forces a code to be emitted, but does not imply that a
87 * new sequence has been seen.
89 * The compression ratio is checked at the first end of a packet
90 * after the appropriate gap. Besides simplifying and speeding
91 * things up, this makes it more likely that the transmitter
92 * and receiver will agree when the dictionary is cleared when
93 * compression is not going well.
97 * A dictionary for doing BSD compress.
100 int totlen
; /* length of this structure */
101 u_int hsize
; /* size of the hash table */
102 u_char hshift
; /* used in hash function */
103 u_char n_bits
; /* current bits/code */
107 u_short seqno
; /* sequence number of next packet */
108 u_int hdrlen
; /* header length to preallocate */
110 u_int maxmaxcode
; /* largest valid code */
111 u_int max_ent
; /* largest code in use */
112 u_int in_count
; /* uncompressed bytes, aged */
113 u_int bytes_out
; /* compressed bytes, aged */
114 u_int ratio
; /* recent compression ratio */
115 u_int checkpoint
; /* when to next check the ratio */
116 u_int clear_count
; /* times dictionary cleared */
117 u_int incomp_count
; /* incompressible packets */
118 u_int incomp_bytes
; /* incompressible bytes */
119 u_int uncomp_count
; /* uncompressed packets */
120 u_int uncomp_bytes
; /* uncompressed bytes */
121 u_int comp_count
; /* compressed packets */
122 u_int comp_bytes
; /* compressed bytes */
123 u_short
*lens
; /* array of lengths of codes */
125 union { /* hash value */
128 #ifdef BSD_LITTLE_ENDIAN
129 u_short prefix
; /* preceding code */
130 u_char suffix
; /* last character of new code */
134 u_char suffix
; /* last character of new code */
135 u_short prefix
; /* preceding code */
139 u_short codem1
; /* output of hash table -1 */
140 u_short cptr
; /* map code to hash table entry */
144 #define BSD_OVHD 2 /* BSD compress overhead/packet */
145 #define BSD_INIT_BITS BSD_MIN_BITS
147 static void *bsd_comp_alloc
__P((u_char
*options
, int opt_len
));
148 static void *bsd_decomp_alloc
__P((u_char
*options
, int opt_len
));
149 static void bsd_free
__P((void *state
));
150 static int bsd_comp_init
__P((void *state
, u_char
*options
, int opt_len
,
151 int unit
, int hdrlen
, int debug
));
152 static int bsd_decomp_init
__P((void *state
, u_char
*options
, int opt_len
,
153 int unit
, int hdrlen
, int mru
, int debug
));
154 static int bsd_compress
__P((void *state
, mblk_t
**mret
,
155 mblk_t
*mp
, int slen
, int maxolen
));
156 static void bsd_incomp
__P((void *state
, mblk_t
*dmsg
));
157 static int bsd_decompress
__P((void *state
, mblk_t
*cmp
, mblk_t
**dmpp
));
158 static void bsd_reset
__P((void *state
));
159 static void bsd_comp_stats
__P((void *state
, struct compstat
*stats
));
162 * Procedures exported to ppp_comp.c.
164 struct compressor ppp_bsd_compress
= {
165 CI_BSD_COMPRESS
, /* compress_proto */
166 bsd_comp_alloc
, /* comp_alloc */
167 bsd_free
, /* comp_free */
168 bsd_comp_init
, /* comp_init */
169 bsd_reset
, /* comp_reset */
170 bsd_compress
, /* compress */
171 bsd_comp_stats
, /* comp_stat */
172 bsd_decomp_alloc
, /* decomp_alloc */
173 bsd_free
, /* decomp_free */
174 bsd_decomp_init
, /* decomp_init */
175 bsd_reset
, /* decomp_reset */
176 bsd_decompress
, /* decompress */
177 bsd_incomp
, /* incomp */
178 bsd_comp_stats
, /* decomp_stat */
182 * the next two codes should not be changed lightly, as they must not
183 * lie within the contiguous general code space.
185 #define CLEAR 256 /* table clear output code */
186 #define FIRST 257 /* first free entry */
189 #define MAXCODE(b) ((1 << (b)) - 1)
190 #define BADCODEM1 MAXCODE(BSD_MAX_BITS)
192 #define BSD_HASH(prefix,suffix,hshift) ((((u_int32_t)(suffix)) << (hshift)) \
193 ^ (u_int32_t)(prefix))
194 #define BSD_KEY(prefix,suffix) ((((u_int32_t)(suffix)) << 16) \
195 + (u_int32_t)(prefix))
197 #define CHECK_GAP 10000 /* Ratio check interval */
199 #define RATIO_SCALE_LOG 8
200 #define RATIO_SCALE (1<<RATIO_SCALE_LOG)
201 #define RATIO_MAX (0x7fffffff>>RATIO_SCALE_LOG)
203 #define DECOMP_CHUNK 256
206 * clear the dictionary
213 db
->max_ent
= FIRST
-1;
214 db
->n_bits
= BSD_INIT_BITS
;
218 db
->checkpoint
= CHECK_GAP
;
222 * If the dictionary is full, then see if it is time to reset it.
224 * Compute the compression ratio using fixed-point arithmetic
225 * with 8 fractional bits.
227 * Since we have an infinite stream instead of a single file,
228 * watch only the local compression ratio.
230 * Since both peers must reset the dictionary at the same time even in
231 * the absence of CLEAR codes (while packets are incompressible), they
232 * must compute the same ratio.
234 static int /* 1=output CLEAR */
240 if (db
->in_count
>= db
->checkpoint
) {
241 /* age the ratio by limiting the size of the counts */
242 if (db
->in_count
>= RATIO_MAX
243 || db
->bytes_out
>= RATIO_MAX
) {
244 db
->in_count
-= db
->in_count
/4;
245 db
->bytes_out
-= db
->bytes_out
/4;
248 db
->checkpoint
= db
->in_count
+ CHECK_GAP
;
250 if (db
->max_ent
>= db
->maxmaxcode
) {
251 /* Reset the dictionary only if the ratio is worse,
252 * or if it looks as if it has been poisoned
253 * by incompressible data.
255 * This does not overflow, because
256 * db->in_count <= RATIO_MAX.
258 new_ratio
= db
->in_count
<< RATIO_SCALE_LOG
;
259 if (db
->bytes_out
!= 0)
260 new_ratio
/= db
->bytes_out
;
262 if (new_ratio
< db
->ratio
|| new_ratio
< 1 * RATIO_SCALE
) {
266 db
->ratio
= new_ratio
;
276 bsd_comp_stats(state
, stats
)
278 struct compstat
*stats
;
280 struct bsd_db
*db
= (struct bsd_db
*) state
;
283 stats
->unc_bytes
= db
->uncomp_bytes
;
284 stats
->unc_packets
= db
->uncomp_count
;
285 stats
->comp_bytes
= db
->comp_bytes
;
286 stats
->comp_packets
= db
->comp_count
;
287 stats
->inc_bytes
= db
->incomp_bytes
;
288 stats
->inc_packets
= db
->incomp_count
;
289 stats
->ratio
= db
->in_count
;
291 if (stats
->ratio
<= 0x7fffff)
300 * Reset state, as on a CCP ResetReq.
306 struct bsd_db
*db
= (struct bsd_db
*) state
;
314 * Allocate space for a (de) compressor.
317 bsd_alloc(options
, opt_len
, decomp
)
322 u_int newlen
, hsize
, hshift
, maxmaxcode
;
325 if (opt_len
!= 3 || options
[0] != CI_BSD_COMPRESS
|| options
[1] != 3
326 || BSD_VERSION(options
[2]) != BSD_CURRENT_VERSION
)
329 bits
= BSD_NBITS(options
[2]);
331 case 9: /* needs 82152 for both directions */
332 case 10: /* needs 84144 */
333 case 11: /* needs 88240 */
334 case 12: /* needs 96432 */
338 case 13: /* needs 176784 */
342 case 14: /* needs 353744 */
346 case 15: /* needs 691440 */
350 case 16: /* needs 1366160--far too much, */
351 /* hsize = 69001; */ /* and 69001 is too big for cptr */
352 /* hshift = 8; */ /* in struct bsd_db */
358 maxmaxcode
= MAXCODE(bits
);
359 newlen
= sizeof(*db
) + (hsize
-1) * (sizeof(db
->dict
[0]));
361 db
= (struct bsd_db
*) ALLOC_SLEEP(newlen
);
363 db
= (struct bsd_db
*) ALLOC_NOSLEEP(newlen
);
367 bzero(db
, sizeof(*db
) - sizeof(db
->dict
));
373 db
->lens
= (u_short
*) ALLOC_SLEEP((maxmaxcode
+1) * sizeof(db
->lens
[0]));
375 db
->lens
= (u_short
*) ALLOC_NOSLEEP((maxmaxcode
+1) * sizeof(db
->lens
[0]));
386 db
->maxmaxcode
= maxmaxcode
;
396 struct bsd_db
*db
= (struct bsd_db
*) state
;
399 FREE(db
->lens
, (db
->maxmaxcode
+1) * sizeof(db
->lens
[0]));
400 FREE(db
, db
->totlen
);
404 bsd_comp_alloc(options
, opt_len
)
408 return bsd_alloc(options
, opt_len
, 0);
412 bsd_decomp_alloc(options
, opt_len
)
416 return bsd_alloc(options
, opt_len
, 1);
420 * Initialize the database.
423 bsd_init(db
, options
, opt_len
, unit
, hdrlen
, mru
, debug
, decomp
)
426 int opt_len
, unit
, hdrlen
, mru
, debug
, decomp
;
430 if (opt_len
< CILEN_BSD_COMPRESS
431 || options
[0] != CI_BSD_COMPRESS
|| options
[1] != CILEN_BSD_COMPRESS
432 || BSD_VERSION(options
[2]) != BSD_CURRENT_VERSION
433 || BSD_NBITS(options
[2]) != db
->maxbits
434 || decomp
&& db
->lens
== NULL
)
444 db
->dict
[--i
].codem1
= BADCODEM1
;
445 db
->dict
[i
].cptr
= 0;
460 bsd_comp_init(state
, options
, opt_len
, unit
, hdrlen
, debug
)
463 int opt_len
, unit
, hdrlen
, debug
;
465 return bsd_init((struct bsd_db
*) state
, options
, opt_len
,
466 unit
, hdrlen
, 0, debug
, 0);
470 bsd_decomp_init(state
, options
, opt_len
, unit
, hdrlen
, mru
, debug
)
473 int opt_len
, unit
, hdrlen
, mru
, debug
;
475 return bsd_init((struct bsd_db
*) state
, options
, opt_len
,
476 unit
, hdrlen
, mru
, debug
, 1);
482 * One change from the BSD compress command is that when the
483 * code size expands, we do not output a bunch of padding.
485 * N.B. at present, we ignore the hdrlen specified in the comp_init call.
487 static int /* new slen */
488 bsd_compress(state
, mretp
, mp
, slen
, maxolen
)
490 mblk_t
**mretp
; /* return compressed mbuf chain here */
491 mblk_t
*mp
; /* from here */
492 int slen
; /* uncompressed length */
493 int maxolen
; /* max compressed length */
495 struct bsd_db
*db
= (struct bsd_db
*) state
;
496 int hshift
= db
->hshift
;
497 u_int max_ent
= db
->max_ent
;
498 u_int n_bits
= db
->n_bits
;
500 u_int32_t accm
= 0, fcode
;
501 struct bsd_dict
*dictp
;
503 int hval
, disp
, ent
, ilen
;
510 #define PUTBYTE(v) { \
513 if (wptr >= cp_end) { \
518 cp_end = m->b_datap->db_lim; \
526 #define OUTPUT(ent) { \
528 accm |= ((ent) << bitno); \
530 PUTBYTE(accm >> 24); \
533 } while (bitno <= 24); \
537 * First get the protocol and check that we're
538 * interested in this packet.
542 if (rptr
+ PPP_HDRLEN
> mp
->b_wptr
) {
543 if (!pullupmsg(mp
, PPP_HDRLEN
))
547 ent
= PPP_PROTOCOL(rptr
); /* get the protocol */
548 if (ent
< 0x21 || ent
> 0xf9)
551 /* Don't generate compressed packets which are larger than
552 the uncompressed packet. */
556 /* Allocate enough message blocks to give maxolen total space. */
558 for (olen
= maxolen
; olen
> 0; ) {
559 m
= allocb((olen
< 4096? olen
: 4096), BPRI_MED
);
569 olen
-= m
->b_datap
->db_lim
- m
->b_wptr
;
573 if ((m
= mret
) != NULL
) {
575 cp_end
= m
->b_datap
->db_lim
;
577 wptr
= cp_end
= NULL
;
581 * Copy the PPP header over, changing the protocol,
582 * and install the 2-byte sequence number.
585 wptr
[0] = PPP_ADDRESS(rptr
);
586 wptr
[1] = PPP_CONTROL(rptr
);
587 wptr
[2] = 0; /* change the protocol */
589 wptr
[4] = db
->seqno
>> 8;
591 wptr
+= PPP_HDRLEN
+ BSD_OVHD
;
596 slen
= mp
->b_wptr
- rptr
;
604 slen
= np
->b_wptr
- rptr
;
607 continue; /* handle 0-length buffers */
613 fcode
= BSD_KEY(ent
, c
);
614 hval
= BSD_HASH(ent
, c
, hshift
);
615 dictp
= &db
->dict
[hval
];
617 /* Validate and then check the entry. */
618 if (dictp
->codem1
>= max_ent
)
620 if (dictp
->f
.fcode
== fcode
) {
621 ent
= dictp
->codem1
+1;
622 continue; /* found (prefix,suffix) */
625 /* continue probing until a match or invalid entry */
626 disp
= (hval
== 0) ? 1 : hval
;
629 if (hval
>= db
->hsize
)
631 dictp
= &db
->dict
[hval
];
632 if (dictp
->codem1
>= max_ent
)
634 } while (dictp
->f
.fcode
!= fcode
);
635 ent
= dictp
->codem1
+ 1; /* finally found (prefix,suffix) */
639 OUTPUT(ent
); /* output the prefix */
641 /* code -> hashtable */
642 if (max_ent
< db
->maxmaxcode
) {
643 struct bsd_dict
*dictp2
;
644 /* expand code size if needed */
645 if (max_ent
>= MAXCODE(n_bits
))
646 db
->n_bits
= ++n_bits
;
648 /* Invalidate old hash table entry using
649 * this code, and then take it over.
651 dictp2
= &db
->dict
[max_ent
+1];
652 if (db
->dict
[dictp2
->cptr
].codem1
== max_ent
)
653 db
->dict
[dictp2
->cptr
].codem1
= BADCODEM1
;
655 dictp
->codem1
= max_ent
;
656 dictp
->f
.fcode
= fcode
;
658 db
->max_ent
= ++max_ent
;
663 OUTPUT(ent
); /* output the last code */
664 db
->bytes_out
+= olen
;
665 db
->in_count
+= ilen
;
667 ++db
->bytes_out
; /* count complete bytes */
670 OUTPUT(CLEAR
); /* do not count the CLEAR */
673 * Pad dribble bits of last code with ones.
674 * Do not emit a completely useless byte of ones.
677 PUTBYTE((accm
| (0xff << (bitno
-8))) >> 24);
680 * Increase code size if we would have without the packet
681 * boundary and as the decompressor will.
683 if (max_ent
>= MAXCODE(n_bits
) && max_ent
< db
->maxmaxcode
)
686 db
->uncomp_bytes
+= ilen
;
688 if (olen
+ PPP_HDRLEN
+ BSD_OVHD
> maxolen
&& mret
!= NULL
) {
689 /* throw away the compressed stuff if it is longer than uncompressed */
693 db
->incomp_bytes
+= ilen
;
694 } else if (wptr
!= NULL
) {
701 db
->comp_bytes
+= olen
+ BSD_OVHD
;
705 return olen
+ PPP_HDRLEN
+ BSD_OVHD
;
712 * Update the "BSD Compress" dictionary on the receiver for
713 * incompressible data by pretending to compress the incoming data.
716 bsd_incomp(state
, dmsg
)
720 struct bsd_db
*db
= (struct bsd_db
*) state
;
721 u_int hshift
= db
->hshift
;
722 u_int max_ent
= db
->max_ent
;
723 u_int n_bits
= db
->n_bits
;
724 struct bsd_dict
*dictp
;
734 if (rptr
+ PPP_HDRLEN
> dmsg
->b_wptr
) {
735 if (!pullupmsg(dmsg
, PPP_HDRLEN
))
739 ent
= PPP_PROTOCOL(rptr
); /* get the protocol */
740 if (ent
< 0x21 || ent
> 0xf9)
744 ilen
= 1; /* count the protocol as 1 byte */
747 slen
= dmsg
->b_wptr
- rptr
;
753 continue; /* skip zero-length buffers */
759 fcode
= BSD_KEY(ent
, c
);
760 hval
= BSD_HASH(ent
, c
, hshift
);
761 dictp
= &db
->dict
[hval
];
763 /* validate and then check the entry */
764 if (dictp
->codem1
>= max_ent
)
766 if (dictp
->f
.fcode
== fcode
) {
767 ent
= dictp
->codem1
+1;
768 continue; /* found (prefix,suffix) */
771 /* continue probing until a match or invalid entry */
772 disp
= (hval
== 0) ? 1 : hval
;
775 if (hval
>= db
->hsize
)
777 dictp
= &db
->dict
[hval
];
778 if (dictp
->codem1
>= max_ent
)
780 } while (dictp
->f
.fcode
!= fcode
);
781 ent
= dictp
->codem1
+1;
782 continue; /* finally found (prefix,suffix) */
784 nomatch
: /* output (count) the prefix */
787 /* code -> hashtable */
788 if (max_ent
< db
->maxmaxcode
) {
789 struct bsd_dict
*dictp2
;
790 /* expand code size if needed */
791 if (max_ent
>= MAXCODE(n_bits
))
792 db
->n_bits
= ++n_bits
;
794 /* Invalidate previous hash table entry
795 * assigned this code, and then take it over.
797 dictp2
= &db
->dict
[max_ent
+1];
798 if (db
->dict
[dictp2
->cptr
].codem1
== max_ent
)
799 db
->dict
[dictp2
->cptr
].codem1
= BADCODEM1
;
801 dictp
->codem1
= max_ent
;
802 dictp
->f
.fcode
= fcode
;
804 db
->max_ent
= ++max_ent
;
805 db
->lens
[max_ent
] = db
->lens
[ent
]+1;
808 } while (--slen
!= 0);
810 bitno
+= n_bits
; /* output (count) the last code */
811 db
->bytes_out
+= bitno
/8;
812 db
->in_count
+= ilen
;
816 db
->incomp_bytes
+= ilen
;
818 db
->uncomp_bytes
+= ilen
;
820 /* Increase code size if we would have without the packet
821 * boundary and as the decompressor will.
823 if (max_ent
>= MAXCODE(n_bits
) && max_ent
< db
->maxmaxcode
)
829 * Decompress "BSD Compress"
831 * Because of patent problems, we return DECOMP_ERROR for errors
832 * found by inspecting the input data and for system problems, but
833 * DECOMP_FATALERROR for any errors which could possibly be said to
834 * be being detected "after" decompression. For DECOMP_ERROR,
835 * we can issue a CCP reset-request; for DECOMP_FATALERROR, we may be
836 * infringing a patent of Motorola's if we do, so we take CCP down
839 * Given that the frame has the correct sequence number and a good FCS,
840 * errors such as invalid codes in the input most likely indicate a
841 * bug, so we return DECOMP_FATALERROR for them in order to turn off
842 * compression, even though they are detected by inspecting the input.
845 bsd_decompress(state
, cmsg
, dmpp
)
847 mblk_t
*cmsg
, **dmpp
;
849 struct bsd_db
*db
= (struct bsd_db
*) state
;
850 u_int max_ent
= db
->max_ent
;
852 u_int bitno
= 32; /* 1st valid bit in accm */
853 u_int n_bits
= db
->n_bits
;
854 u_int tgtbitno
= 32-n_bits
; /* bitno when we have a code */
855 struct bsd_dict
*dictp
;
856 int explen
, i
, seq
, len
;
857 u_int incode
, oldcode
, finchar
;
858 u_char
*p
, *rptr
, *wptr
;
860 int adrs
, ctrl
, ilen
;
861 int dlen
, space
, codelen
, extra
;
864 * Get at least the BSD Compress header in the first buffer
867 if (rptr
+ PPP_HDRLEN
+ BSD_OVHD
>= cmsg
->b_wptr
) {
868 if (!pullupmsg(cmsg
, PPP_HDRLEN
+ BSD_OVHD
+ 1)) {
870 printf("bsd_decomp%d: failed to pullup\n", db
->unit
);
877 * Save the address/control from the PPP header
878 * and then get the sequence number.
880 adrs
= PPP_ADDRESS(rptr
);
881 ctrl
= PPP_CONTROL(rptr
);
883 seq
= (rptr
[0] << 8) + rptr
[1];
885 ilen
= len
= cmsg
->b_wptr
- rptr
;
888 * Check the sequence number and give up if it is not what we expect.
890 if (seq
!= db
->seqno
++) {
892 printf("bsd_decomp%d: bad sequence # %d, expected %d\n",
893 db
->unit
, seq
, db
->seqno
- 1);
898 * Allocate one message block to start with.
900 if ((dmsg
= allocb(DECOMP_CHUNK
+ db
->hdrlen
, BPRI_MED
)) == NULL
)
903 dmsg
->b_wptr
+= db
->hdrlen
;
904 dmsg
->b_rptr
= wptr
= dmsg
->b_wptr
;
906 /* Fill in the ppp header, but not the last byte of the protocol
907 (that comes from the decompressed data). */
911 wptr
+= PPP_HDRLEN
- 1;
912 space
= dmsg
->b_datap
->db_lim
- wptr
;
919 if (!cmsg
) /* quit at end of message */
922 len
= cmsg
->b_wptr
- rptr
;
924 continue; /* handle 0-length buffers */
928 * Accumulate bytes until we have a complete code.
929 * Then get the next code, relying on the 32-bit,
930 * unsigned accm to mask the result.
933 accm
|= *rptr
++ << bitno
;
935 if (tgtbitno
< bitno
)
937 incode
= accm
>> tgtbitno
;
941 if (incode
== CLEAR
) {
943 * The dictionary must only be cleared at
944 * the end of a packet. But there could be an
945 * empty message block at the end.
947 if (len
> 0 || cmsg
->b_cont
!= 0) {
949 len
+= msgdsize(cmsg
->b_cont
);
953 printf("bsd_decomp%d: bad CLEAR\n", db
->unit
);
954 return DECOMP_FATALERROR
;
962 if (incode
> max_ent
+ 2 || incode
> db
->maxmaxcode
963 || incode
> max_ent
&& oldcode
== CLEAR
) {
966 printf("bsd_decomp%d: bad code 0x%x oldcode=0x%x ",
967 db
->unit
, incode
, oldcode
);
968 printf("max_ent=0x%x dlen=%d seqno=%d\n",
969 max_ent
, dlen
, db
->seqno
);
971 return DECOMP_FATALERROR
; /* probably a bug */
974 /* Special case for KwKwK string. */
975 if (incode
> max_ent
) {
983 codelen
= db
->lens
[finchar
];
984 explen
+= codelen
+ extra
;
985 if (explen
> db
->mru
+ 1) {
988 printf("bsd_decomp%d: ran out of mru\n", db
->unit
);
989 return DECOMP_FATALERROR
;
993 * Decode this code and install it in the decompressed buffer.
995 space
-= codelen
+ extra
;
997 /* Allocate another message block. */
999 dlen
= codelen
+ extra
;
1000 if (dlen
< DECOMP_CHUNK
)
1001 dlen
= DECOMP_CHUNK
;
1002 if ((dmsg
->b_cont
= allocb(dlen
, BPRI_MED
)) == NULL
) {
1004 return DECOMP_ERROR
;
1006 dmsg
= dmsg
->b_cont
;
1007 wptr
= dmsg
->b_wptr
;
1008 space
= dmsg
->b_datap
->db_lim
- wptr
- codelen
- extra
;
1010 p
= (wptr
+= codelen
);
1011 while (finchar
> LAST
) {
1012 dictp
= &db
->dict
[db
->dict
[finchar
].cptr
];
1017 printf("bsd_decomp%d: fell off end of chain ", db
->unit
);
1018 printf("0x%x at 0x%x by 0x%x, max_ent=0x%x\n",
1019 incode
, finchar
, db
->dict
[finchar
].cptr
, max_ent
);
1020 return DECOMP_FATALERROR
;
1022 if (dictp
->codem1
!= finchar
-1) {
1024 printf("bsd_decomp%d: bad code chain 0x%x finchar=0x%x ",
1025 db
->unit
, incode
, finchar
);
1026 printf("oldcode=0x%x cptr=0x%x codem1=0x%x\n", oldcode
,
1027 db
->dict
[finchar
].cptr
, dictp
->codem1
);
1028 return DECOMP_FATALERROR
;
1031 *--p
= dictp
->f
.hs
.suffix
;
1032 finchar
= dictp
->f
.hs
.prefix
;
1038 printf("bsd_decomp%d: short by %d after code 0x%x, max_ent=0x%x\n",
1039 db
->unit
, codelen
, incode
, max_ent
);
1042 if (extra
) /* the KwKwK case again */
1046 * If not first code in a packet, and
1047 * if not out of code space, then allocate a new code.
1049 * Keep the hash table correct so it can be used
1050 * with uncompressed packets.
1052 if (oldcode
!= CLEAR
&& max_ent
< db
->maxmaxcode
) {
1053 struct bsd_dict
*dictp2
;
1057 fcode
= BSD_KEY(oldcode
,finchar
);
1058 hval
= BSD_HASH(oldcode
,finchar
,db
->hshift
);
1059 dictp
= &db
->dict
[hval
];
1061 /* look for a free hash table entry */
1062 if (dictp
->codem1
< max_ent
) {
1063 disp
= (hval
== 0) ? 1 : hval
;
1066 if (hval
>= db
->hsize
)
1068 dictp
= &db
->dict
[hval
];
1069 } while (dictp
->codem1
< max_ent
);
1073 * Invalidate previous hash table entry
1074 * assigned this code, and then take it over
1076 dictp2
= &db
->dict
[max_ent
+1];
1077 if (db
->dict
[dictp2
->cptr
].codem1
== max_ent
) {
1078 db
->dict
[dictp2
->cptr
].codem1
= BADCODEM1
;
1080 dictp2
->cptr
= hval
;
1081 dictp
->codem1
= max_ent
;
1082 dictp
->f
.fcode
= fcode
;
1084 db
->max_ent
= ++max_ent
;
1085 db
->lens
[max_ent
] = db
->lens
[oldcode
]+1;
1087 /* Expand code size if needed. */
1088 if (max_ent
>= MAXCODE(n_bits
) && max_ent
< db
->maxmaxcode
) {
1089 db
->n_bits
= ++n_bits
;
1090 tgtbitno
= 32-n_bits
;
1095 dmsg
->b_wptr
= wptr
;
1098 * Keep the checkpoint right so that incompressible packets
1099 * clear the dictionary at the right times.
1101 db
->bytes_out
+= ilen
;
1102 db
->in_count
+= explen
;
1103 if (bsd_check(db
) && db
->debug
) {
1104 printf("bsd_decomp%d: peer should have cleared dictionary\n",
1109 db
->comp_bytes
+= ilen
+ BSD_OVHD
;
1111 db
->uncomp_bytes
+= explen
;
1116 #endif /* DO_BSD_COMPRESS */