1c3fb4252SPedro F. Giffuni /*-
2c3fb4252SPedro F. Giffuni * Copyright (c) 2002-2004 Jan Dubiec <jdx@slackware.pl>
3c3fb4252SPedro F. Giffuni * Copyright (c) 2007 Alexander Motin <mav@freebsd.org>
4c3fb4252SPedro F. Giffuni * All rights reserved.
5c3fb4252SPedro F. Giffuni *
6c3fb4252SPedro F. Giffuni * Redistribution and use in source and binary forms, with or without
7c3fb4252SPedro F. Giffuni * modification, are permitted provided that the following conditions
8c3fb4252SPedro F. Giffuni * are met:
9c3fb4252SPedro F. Giffuni * 1. Redistributions of source code must retain the above copyright
10c3fb4252SPedro F. Giffuni * notice unmodified, this list of conditions, and the following
11c3fb4252SPedro F. Giffuni * disclaimer.
12c3fb4252SPedro F. Giffuni * 2. Redistributions in binary form must reproduce the above copyright
13c3fb4252SPedro F. Giffuni * notice, this list of conditions and the following disclaimer in the
14c3fb4252SPedro F. Giffuni * documentation and/or other materials provided with the distribution.
15c3fb4252SPedro F. Giffuni *
16c3fb4252SPedro F. Giffuni * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17c3fb4252SPedro F. Giffuni * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18c3fb4252SPedro F. Giffuni * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19c3fb4252SPedro F. Giffuni * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20c3fb4252SPedro F. Giffuni * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21c3fb4252SPedro F. Giffuni * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22c3fb4252SPedro F. Giffuni * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23c3fb4252SPedro F. Giffuni * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24c3fb4252SPedro F. Giffuni * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25c3fb4252SPedro F. Giffuni * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26c3fb4252SPedro F. Giffuni * SUCH DAMAGE.
27c3fb4252SPedro F. Giffuni */
28c3fb4252SPedro F. Giffuni
29c3fb4252SPedro F. Giffuni /*
30c3fb4252SPedro F. Giffuni * MPPC decompression library.
31c3fb4252SPedro F. Giffuni * Version 1.0
32c3fb4252SPedro F. Giffuni *
33c3fb4252SPedro F. Giffuni * Note that Hi/Fn (later acquired by Exar Corporation) held US patents
34c3fb4252SPedro F. Giffuni * on some implementation-critical aspects of MPPC compression.
35c3fb4252SPedro F. Giffuni * These patents lapsed due to non-payment of fees in 2007 and by 2015
36c3fb4252SPedro F. Giffuni * expired altogether.
37c3fb4252SPedro F. Giffuni */
38c3fb4252SPedro F. Giffuni
39c3fb4252SPedro F. Giffuni #include <sys/param.h>
40c3fb4252SPedro F. Giffuni #include <sys/systm.h>
41c3fb4252SPedro F. Giffuni
42c3fb4252SPedro F. Giffuni #include <net/mppc.h>
43c3fb4252SPedro F. Giffuni
44c3fb4252SPedro F. Giffuni #define MPPE_HIST_LEN 8192
45c3fb4252SPedro F. Giffuni
46c3fb4252SPedro F. Giffuni struct MPPC_decomp_state {
47c3fb4252SPedro F. Giffuni uint8_t hist[2*MPPE_HIST_LEN];
48c3fb4252SPedro F. Giffuni uint16_t histptr;
49c3fb4252SPedro F. Giffuni };
50c3fb4252SPedro F. Giffuni
51c3fb4252SPedro F. Giffuni static uint32_t __inline
getbits(const uint8_t * buf,const uint32_t n,uint32_t * i,uint32_t * l)52c3fb4252SPedro F. Giffuni getbits(const uint8_t *buf, const uint32_t n, uint32_t *i, uint32_t *l)
53c3fb4252SPedro F. Giffuni {
54c3fb4252SPedro F. Giffuni static const uint32_t m[] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff};
55c3fb4252SPedro F. Giffuni uint32_t res, ol;
56c3fb4252SPedro F. Giffuni
57c3fb4252SPedro F. Giffuni ol = *l;
58c3fb4252SPedro F. Giffuni if (*l >= n) {
59c3fb4252SPedro F. Giffuni *l = (*l) - n;
60c3fb4252SPedro F. Giffuni res = (buf[*i] & m[ol]) >> (*l);
61c3fb4252SPedro F. Giffuni if (*l == 0) {
62c3fb4252SPedro F. Giffuni *l = 8;
63c3fb4252SPedro F. Giffuni (*i)++;
64c3fb4252SPedro F. Giffuni }
65c3fb4252SPedro F. Giffuni } else {
66c3fb4252SPedro F. Giffuni *l = 8 - n + (*l);
67c3fb4252SPedro F. Giffuni res = (buf[(*i)++] & m[ol]) << 8;
68c3fb4252SPedro F. Giffuni res = (res | buf[*i]) >> (*l);
69c3fb4252SPedro F. Giffuni }
70c3fb4252SPedro F. Giffuni
71c3fb4252SPedro F. Giffuni return (res);
72c3fb4252SPedro F. Giffuni }
73c3fb4252SPedro F. Giffuni
74c3fb4252SPedro F. Giffuni static uint32_t __inline
getbyte(const uint8_t * buf,const uint32_t i,const uint32_t l)75c3fb4252SPedro F. Giffuni getbyte(const uint8_t *buf, const uint32_t i, const uint32_t l)
76c3fb4252SPedro F. Giffuni {
77c3fb4252SPedro F. Giffuni if (l == 8) {
78c3fb4252SPedro F. Giffuni return (buf[i]);
79c3fb4252SPedro F. Giffuni } else {
80c3fb4252SPedro F. Giffuni return ((((buf[i] << 8) | buf[i+1]) >> l) & 0xff);
81c3fb4252SPedro F. Giffuni }
82c3fb4252SPedro F. Giffuni }
83c3fb4252SPedro F. Giffuni
84c3fb4252SPedro F. Giffuni static void __inline
lamecopy(uint8_t * dst,uint8_t * src,uint32_t len)85c3fb4252SPedro F. Giffuni lamecopy(uint8_t *dst, uint8_t *src, uint32_t len)
86c3fb4252SPedro F. Giffuni {
87c3fb4252SPedro F. Giffuni while (len--)
88c3fb4252SPedro F. Giffuni *dst++ = *src++;
89c3fb4252SPedro F. Giffuni }
90c3fb4252SPedro F. Giffuni
MPPC_SizeOfDecompressionHistory(void)91c3fb4252SPedro F. Giffuni size_t MPPC_SizeOfDecompressionHistory(void)
92c3fb4252SPedro F. Giffuni {
93c3fb4252SPedro F. Giffuni return (sizeof(struct MPPC_decomp_state));
94c3fb4252SPedro F. Giffuni }
95c3fb4252SPedro F. Giffuni
MPPC_InitDecompressionHistory(char * history)96c3fb4252SPedro F. Giffuni void MPPC_InitDecompressionHistory(char *history)
97c3fb4252SPedro F. Giffuni {
98c3fb4252SPedro F. Giffuni struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history;
99c3fb4252SPedro F. Giffuni
100c3fb4252SPedro F. Giffuni bzero(history, sizeof(struct MPPC_decomp_state));
101c3fb4252SPedro F. Giffuni state->histptr = MPPE_HIST_LEN;
102c3fb4252SPedro F. Giffuni }
103c3fb4252SPedro F. Giffuni
MPPC_Decompress(u_char ** src,u_char ** dst,u_long * srcCnt,u_long * dstCnt,char * history,int flags)104c3fb4252SPedro F. Giffuni int MPPC_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int flags)
105c3fb4252SPedro F. Giffuni {
106c3fb4252SPedro F. Giffuni struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history;
107c3fb4252SPedro F. Giffuni uint32_t olen, off, len, bits, val, sig, i, l;
108c3fb4252SPedro F. Giffuni uint8_t *hist, *s;
109c3fb4252SPedro F. Giffuni u_char *isrc = *src;
110c3fb4252SPedro F. Giffuni int rtn = MPPC_OK;
111c3fb4252SPedro F. Giffuni
112c3fb4252SPedro F. Giffuni if ((flags & MPPC_RESTART_HISTORY) != 0) {
113c3fb4252SPedro F. Giffuni memcpy(state->hist, state->hist + MPPE_HIST_LEN, MPPE_HIST_LEN);
114c3fb4252SPedro F. Giffuni state->histptr = MPPE_HIST_LEN;
115c3fb4252SPedro F. Giffuni }
116c3fb4252SPedro F. Giffuni
117c3fb4252SPedro F. Giffuni hist = state->hist + state->histptr;
118c3fb4252SPedro F. Giffuni olen = len = i = 0;
119c3fb4252SPedro F. Giffuni l = 8;
120c3fb4252SPedro F. Giffuni bits = *srcCnt * 8;
121c3fb4252SPedro F. Giffuni while (bits >= 8) {
122c3fb4252SPedro F. Giffuni val = getbyte(isrc, i++, l);
123c3fb4252SPedro F. Giffuni if (val < 0x80) { /* literal byte < 0x80 */
124c3fb4252SPedro F. Giffuni if (state->histptr < 2*MPPE_HIST_LEN) {
125c3fb4252SPedro F. Giffuni /* Copy uncompressed byte to the history. */
126c3fb4252SPedro F. Giffuni (state->hist)[(state->histptr)++] = (uint8_t) val;
127c3fb4252SPedro F. Giffuni } else {
128c3fb4252SPedro F. Giffuni /* Buffer overflow; drop packet. */
129c3fb4252SPedro F. Giffuni rtn &= ~MPPC_OK;
130c3fb4252SPedro F. Giffuni return rtn;
131c3fb4252SPedro F. Giffuni }
132c3fb4252SPedro F. Giffuni olen++;
133c3fb4252SPedro F. Giffuni bits -= 8;
134c3fb4252SPedro F. Giffuni continue;
135c3fb4252SPedro F. Giffuni }
136c3fb4252SPedro F. Giffuni
137c3fb4252SPedro F. Giffuni sig = val & 0xc0;
138c3fb4252SPedro F. Giffuni if (sig == 0x80) { /* literal byte >= 0x80 */
139c3fb4252SPedro F. Giffuni if (state->histptr < 2*MPPE_HIST_LEN) {
140c3fb4252SPedro F. Giffuni /* Copy uncompressed byte to the history. */
141c3fb4252SPedro F. Giffuni (state->hist)[(state->histptr)++] =
142c3fb4252SPedro F. Giffuni (uint8_t) (0x80|((val&0x3f)<<1)|getbits(isrc, 1 , &i ,&l));
143c3fb4252SPedro F. Giffuni } else {
144c3fb4252SPedro F. Giffuni /* buffer overflow; drop packet */
145c3fb4252SPedro F. Giffuni rtn &= ~MPPC_OK;
146c3fb4252SPedro F. Giffuni return (rtn);
147c3fb4252SPedro F. Giffuni }
148c3fb4252SPedro F. Giffuni olen++;
149c3fb4252SPedro F. Giffuni bits -= 9;
150c3fb4252SPedro F. Giffuni continue;
151c3fb4252SPedro F. Giffuni }
152c3fb4252SPedro F. Giffuni
153c3fb4252SPedro F. Giffuni /* Not a literal byte so it must be an (offset,length) pair */
154c3fb4252SPedro F. Giffuni /* decode offset */
155c3fb4252SPedro F. Giffuni sig = val & 0xf0;
156c3fb4252SPedro F. Giffuni if (sig == 0xf0) { /* 10-bit offset; 0 <= offset < 64 */
157c3fb4252SPedro F. Giffuni off = (((val&0x0f)<<2)|getbits(isrc, 2 , &i ,&l));
158c3fb4252SPedro F. Giffuni bits -= 10;
159c3fb4252SPedro F. Giffuni } else {
160c3fb4252SPedro F. Giffuni if (sig == 0xe0) { /* 12-bit offset; 64 <= offset < 320 */
161c3fb4252SPedro F. Giffuni off = ((((val&0x0f)<<4)|getbits(isrc, 4 , &i ,&l))+64);
162c3fb4252SPedro F. Giffuni bits -= 12;
163c3fb4252SPedro F. Giffuni } else {
164c3fb4252SPedro F. Giffuni if ((sig&0xe0) == 0xc0) {/* 16-bit offset; 320 <= offset < 8192 */
165c3fb4252SPedro F. Giffuni off = ((((val&0x1f)<<8)|getbyte(isrc, i++, l))+320);
166c3fb4252SPedro F. Giffuni bits -= 16;
167c3fb4252SPedro F. Giffuni if (off > MPPE_HIST_LEN - 1) {
168c3fb4252SPedro F. Giffuni rtn &= ~MPPC_OK;
169c3fb4252SPedro F. Giffuni return (rtn);
170c3fb4252SPedro F. Giffuni }
171*a4bf2e2dSPedro F. Giffuni } else { /* This shouldn't happen. */
172c3fb4252SPedro F. Giffuni rtn &= ~MPPC_OK;
173c3fb4252SPedro F. Giffuni return (rtn);
174c3fb4252SPedro F. Giffuni }
175c3fb4252SPedro F. Giffuni }
176c3fb4252SPedro F. Giffuni }
177c3fb4252SPedro F. Giffuni /* Decode length of match. */
178c3fb4252SPedro F. Giffuni val = getbyte(isrc, i, l);
179c3fb4252SPedro F. Giffuni if ((val & 0x80) == 0x00) { /* len = 3 */
180c3fb4252SPedro F. Giffuni len = 3;
181c3fb4252SPedro F. Giffuni bits--;
182c3fb4252SPedro F. Giffuni getbits(isrc, 1 , &i ,&l);
183c3fb4252SPedro F. Giffuni } else if ((val & 0xc0) == 0x80) { /* 4 <= len < 8 */
184c3fb4252SPedro F. Giffuni len = 0x04 | ((val>>4) & 0x03);
185c3fb4252SPedro F. Giffuni bits -= 4;
186c3fb4252SPedro F. Giffuni getbits(isrc, 4 , &i ,&l);
187c3fb4252SPedro F. Giffuni } else if ((val & 0xe0) == 0xc0) { /* 8 <= len < 16 */
188c3fb4252SPedro F. Giffuni len = 0x08 | ((val>>2) & 0x07);
189c3fb4252SPedro F. Giffuni bits -= 6;
190c3fb4252SPedro F. Giffuni getbits(isrc, 6 , &i ,&l);
191c3fb4252SPedro F. Giffuni } else if ((val & 0xf0) == 0xe0) { /* 16 <= len < 32 */
192c3fb4252SPedro F. Giffuni len = 0x10 | (val & 0x0f);
193c3fb4252SPedro F. Giffuni bits -= 8;
194c3fb4252SPedro F. Giffuni i++;
195c3fb4252SPedro F. Giffuni } else {
196c3fb4252SPedro F. Giffuni bits -= 8;
197c3fb4252SPedro F. Giffuni val = (val << 8) | getbyte(isrc, ++i, l);
198c3fb4252SPedro F. Giffuni if ((val & 0xf800) == 0xf000) { /* 32 <= len < 64 */
199c3fb4252SPedro F. Giffuni len = 0x0020 | ((val >> 6) & 0x001f);
200c3fb4252SPedro F. Giffuni bits -= 2;
201c3fb4252SPedro F. Giffuni getbits(isrc, 2 , &i ,&l);
202c3fb4252SPedro F. Giffuni } else if ((val & 0xfc00) == 0xf800) { /* 64 <= len < 128 */
203c3fb4252SPedro F. Giffuni len = 0x0040 | ((val >> 4) & 0x003f);
204c3fb4252SPedro F. Giffuni bits -= 4;
205c3fb4252SPedro F. Giffuni getbits(isrc, 4 , &i ,&l);
206c3fb4252SPedro F. Giffuni } else if ((val & 0xfe00) == 0xfc00) { /* 128 <= len < 256 */
207c3fb4252SPedro F. Giffuni len = 0x0080 | ((val >> 2) & 0x007f);
208c3fb4252SPedro F. Giffuni bits -= 6;
209c3fb4252SPedro F. Giffuni getbits(isrc, 6 , &i ,&l);
210c3fb4252SPedro F. Giffuni } else if ((val & 0xff00) == 0xfe00) { /* 256 <= len < 512 */
211c3fb4252SPedro F. Giffuni len = 0x0100 | (val & 0x00ff);
212c3fb4252SPedro F. Giffuni bits -= 8;
213c3fb4252SPedro F. Giffuni i++;
214c3fb4252SPedro F. Giffuni } else {
215c3fb4252SPedro F. Giffuni bits -= 8;
216c3fb4252SPedro F. Giffuni val = (val << 8) | getbyte(isrc, ++i, l);
217c3fb4252SPedro F. Giffuni if ((val & 0xff8000) == 0xff0000) { /* 512 <= len < 1024 */
218c3fb4252SPedro F. Giffuni len = 0x000200 | ((val >> 6) & 0x0001ff);
219c3fb4252SPedro F. Giffuni bits -= 2;
220c3fb4252SPedro F. Giffuni getbits(isrc, 2 , &i ,&l);
221c3fb4252SPedro F. Giffuni } else if ((val & 0xffc000) == 0xff8000) {/* 1024 <= len < 2048 */
222c3fb4252SPedro F. Giffuni len = 0x000400 | ((val >> 4) & 0x0003ff);
223c3fb4252SPedro F. Giffuni bits -= 4;
224c3fb4252SPedro F. Giffuni getbits(isrc, 4 , &i ,&l);
225c3fb4252SPedro F. Giffuni } else if ((val & 0xffe000) == 0xffc000) {/* 2048 <= len < 4096 */
226c3fb4252SPedro F. Giffuni len = 0x000800 | ((val >> 2) & 0x0007ff);
227c3fb4252SPedro F. Giffuni bits -= 6;
228c3fb4252SPedro F. Giffuni getbits(isrc, 6 , &i ,&l);
229c3fb4252SPedro F. Giffuni } else if ((val & 0xfff000) == 0xffe000) {/* 4096 <= len < 8192 */
230c3fb4252SPedro F. Giffuni len = 0x001000 | (val & 0x000fff);
231c3fb4252SPedro F. Giffuni bits -= 8;
232c3fb4252SPedro F. Giffuni i++;
233c3fb4252SPedro F. Giffuni } else { /* NOTREACHED */
234c3fb4252SPedro F. Giffuni rtn &= ~MPPC_OK;
235c3fb4252SPedro F. Giffuni return (rtn);
236c3fb4252SPedro F. Giffuni }
237c3fb4252SPedro F. Giffuni }
238c3fb4252SPedro F. Giffuni }
239c3fb4252SPedro F. Giffuni
240c3fb4252SPedro F. Giffuni s = state->hist + state->histptr;
241c3fb4252SPedro F. Giffuni state->histptr += len;
242c3fb4252SPedro F. Giffuni olen += len;
243c3fb4252SPedro F. Giffuni if (state->histptr < 2*MPPE_HIST_LEN) {
244c3fb4252SPedro F. Giffuni /* Copy uncompressed bytes to the history. */
245c3fb4252SPedro F. Giffuni
246c3fb4252SPedro F. Giffuni /*
247c3fb4252SPedro F. Giffuni * In some cases len may be greater than off. It means that memory
248c3fb4252SPedro F. Giffuni * areas pointed by s and s-off overlap. To decode that strange case
249c3fb4252SPedro F. Giffuni * data should be copied exactly by address increasing to make
250c3fb4252SPedro F. Giffuni * some data repeated.
251c3fb4252SPedro F. Giffuni */
252c3fb4252SPedro F. Giffuni lamecopy(s, s - off, len);
253c3fb4252SPedro F. Giffuni } else {
254c3fb4252SPedro F. Giffuni /* Buffer overflow; drop packet. */
255c3fb4252SPedro F. Giffuni rtn &= ~MPPC_OK;
256c3fb4252SPedro F. Giffuni return (rtn);
257c3fb4252SPedro F. Giffuni }
258c3fb4252SPedro F. Giffuni }
259c3fb4252SPedro F. Giffuni
260c3fb4252SPedro F. Giffuni /* Do PFC decompression. */
261c3fb4252SPedro F. Giffuni len = olen;
262c3fb4252SPedro F. Giffuni if ((hist[0] & 0x01) != 0) {
263c3fb4252SPedro F. Giffuni (*dst)[0] = 0;
264c3fb4252SPedro F. Giffuni (*dst)++;
265c3fb4252SPedro F. Giffuni len++;
266c3fb4252SPedro F. Giffuni }
267c3fb4252SPedro F. Giffuni
268c3fb4252SPedro F. Giffuni if (len <= *dstCnt) {
269c3fb4252SPedro F. Giffuni /* Copy uncompressed packet to the output buffer. */
270c3fb4252SPedro F. Giffuni memcpy(*dst, hist, olen);
271c3fb4252SPedro F. Giffuni } else {
272c3fb4252SPedro F. Giffuni /* Buffer overflow; drop packet. */
273c3fb4252SPedro F. Giffuni rtn |= MPPC_DEST_EXHAUSTED;
274c3fb4252SPedro F. Giffuni }
275c3fb4252SPedro F. Giffuni
276c3fb4252SPedro F. Giffuni *src += *srcCnt;
277c3fb4252SPedro F. Giffuni *srcCnt = 0;
278c3fb4252SPedro F. Giffuni *dst += len;
279c3fb4252SPedro F. Giffuni *dstCnt -= len;
280c3fb4252SPedro F. Giffuni
281c3fb4252SPedro F. Giffuni return (rtn);
282c3fb4252SPedro F. Giffuni }
283