xref: /freebsd/sys/net/slcompress.c (revision 0fc7bdc978366abb4351b0b76b50a5848cc5d982)
1df8bae1dSRodney W. Grimes /*-
251369649SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1989, 1993, 1994
5df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes  * are met:
10df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
16df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
17df8bae1dSRodney W. Grimes  *    without specific prior written permission.
18df8bae1dSRodney W. Grimes  *
19df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
30df8bae1dSRodney W. Grimes  */
31df8bae1dSRodney W. Grimes 
32df8bae1dSRodney W. Grimes /*
33df8bae1dSRodney W. Grimes  * Routines to compress and uncompess tcp packets (for transmission
34df8bae1dSRodney W. Grimes  * over low speed serial lines.
35df8bae1dSRodney W. Grimes  *
36df8bae1dSRodney W. Grimes  * Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989:
37df8bae1dSRodney W. Grimes  *	- Initial distribution.
38df8bae1dSRodney W. Grimes  *
39df8bae1dSRodney W. Grimes  */
40df8bae1dSRodney W. Grimes 
41df8bae1dSRodney W. Grimes #include <sys/param.h>
42df8bae1dSRodney W. Grimes #include <sys/mbuf.h>
432d4b190bSPeter Wemm #include <sys/systm.h>
44df8bae1dSRodney W. Grimes 
45df8bae1dSRodney W. Grimes #include <netinet/in.h>
46df8bae1dSRodney W. Grimes #include <netinet/in_systm.h>
47df8bae1dSRodney W. Grimes #include <netinet/ip.h>
48df8bae1dSRodney W. Grimes #include <netinet/tcp.h>
49df8bae1dSRodney W. Grimes 
50df8bae1dSRodney W. Grimes #include <net/slcompress.h>
51df8bae1dSRodney W. Grimes 
52df8bae1dSRodney W. Grimes #ifndef SL_NO_STATS
53df8bae1dSRodney W. Grimes #define INCR(counter) ++comp->counter;
54df8bae1dSRodney W. Grimes #else
55df8bae1dSRodney W. Grimes #define INCR(counter)
56df8bae1dSRodney W. Grimes #endif
57df8bae1dSRodney W. Grimes 
587283c975SDag-Erling Smørgrav #define BCMP(p1, p2, n) bcmp((void *)(p1), (void *)(p2), (int)(n))
597283c975SDag-Erling Smørgrav #define BCOPY(p1, p2, n) bcopy((void *)(p1), (void *)(p2), (int)(n))
60df8bae1dSRodney W. Grimes 
61df8bae1dSRodney W. Grimes void
sl_compress_init(struct slcompress * comp,int max_state)623e85b721SEd Maste sl_compress_init(struct slcompress *comp, int max_state)
63df8bae1dSRodney W. Grimes {
643e85b721SEd Maste 	u_int i;
653e85b721SEd Maste 	struct cstate *tstate = comp->tstate;
66df8bae1dSRodney W. Grimes 
672d4b190bSPeter Wemm 	if (max_state == -1) {
6871b9cf73SPeter Wemm 		max_state = MAX_STATES - 1;
69df8bae1dSRodney W. Grimes 		bzero((char *)comp, sizeof(*comp));
702d4b190bSPeter Wemm 	} else {
712d4b190bSPeter Wemm 		/* Don't reset statistics */
722d4b190bSPeter Wemm 		bzero((char *)comp->tstate, sizeof(comp->tstate));
732d4b190bSPeter Wemm 		bzero((char *)comp->rstate, sizeof(comp->rstate));
742d4b190bSPeter Wemm 	}
7571b9cf73SPeter Wemm   	for (i = max_state; i > 0; --i) {
76df8bae1dSRodney W. Grimes 		tstate[i].cs_id = i;
77df8bae1dSRodney W. Grimes 		tstate[i].cs_next = &tstate[i - 1];
78df8bae1dSRodney W. Grimes 	}
7971b9cf73SPeter Wemm 	tstate[0].cs_next = &tstate[max_state];
80df8bae1dSRodney W. Grimes 	tstate[0].cs_id = 0;
81df8bae1dSRodney W. Grimes 	comp->last_cs = &tstate[0];
82df8bae1dSRodney W. Grimes 	comp->last_recv = 255;
83df8bae1dSRodney W. Grimes 	comp->last_xmit = 255;
84df8bae1dSRodney W. Grimes 	comp->flags = SLF_TOSS;
85df8bae1dSRodney W. Grimes }
86df8bae1dSRodney W. Grimes 
87df8bae1dSRodney W. Grimes /* ENCODE encodes a number that is known to be non-zero.  ENCODEZ
88df8bae1dSRodney W. Grimes  * checks for zero (since zero has to be encoded in the long, 3 byte
89df8bae1dSRodney W. Grimes  * form).
90df8bae1dSRodney W. Grimes  */
91df8bae1dSRodney W. Grimes #define ENCODE(n) { \
922d4b190bSPeter Wemm 	if ((u_int16_t)(n) >= 256) { \
93df8bae1dSRodney W. Grimes 		*cp++ = 0; \
94df8bae1dSRodney W. Grimes 		cp[1] = (n); \
95df8bae1dSRodney W. Grimes 		cp[0] = (n) >> 8; \
96df8bae1dSRodney W. Grimes 		cp += 2; \
97df8bae1dSRodney W. Grimes 	} else { \
98df8bae1dSRodney W. Grimes 		*cp++ = (n); \
99df8bae1dSRodney W. Grimes 	} \
100df8bae1dSRodney W. Grimes }
101df8bae1dSRodney W. Grimes #define ENCODEZ(n) { \
1022d4b190bSPeter Wemm 	if ((u_int16_t)(n) >= 256 || (u_int16_t)(n) == 0) { \
103df8bae1dSRodney W. Grimes 		*cp++ = 0; \
104df8bae1dSRodney W. Grimes 		cp[1] = (n); \
105df8bae1dSRodney W. Grimes 		cp[0] = (n) >> 8; \
106df8bae1dSRodney W. Grimes 		cp += 2; \
107df8bae1dSRodney W. Grimes 	} else { \
108df8bae1dSRodney W. Grimes 		*cp++ = (n); \
109df8bae1dSRodney W. Grimes 	} \
110df8bae1dSRodney W. Grimes }
111df8bae1dSRodney W. Grimes 
112df8bae1dSRodney W. Grimes #define DECODEL(f) { \
113df8bae1dSRodney W. Grimes 	if (*cp == 0) {\
114df8bae1dSRodney W. Grimes 		(f) = htonl(ntohl(f) + ((cp[1] << 8) | cp[2])); \
115df8bae1dSRodney W. Grimes 		cp += 3; \
116df8bae1dSRodney W. Grimes 	} else { \
1172d4b190bSPeter Wemm 		(f) = htonl(ntohl(f) + (u_int32_t)*cp++); \
118df8bae1dSRodney W. Grimes 	} \
119df8bae1dSRodney W. Grimes }
120df8bae1dSRodney W. Grimes 
121df8bae1dSRodney W. Grimes #define DECODES(f) { \
122df8bae1dSRodney W. Grimes 	if (*cp == 0) {\
123df8bae1dSRodney W. Grimes 		(f) = htons(ntohs(f) + ((cp[1] << 8) | cp[2])); \
124df8bae1dSRodney W. Grimes 		cp += 3; \
125df8bae1dSRodney W. Grimes 	} else { \
1262d4b190bSPeter Wemm 		(f) = htons(ntohs(f) + (u_int32_t)*cp++); \
127df8bae1dSRodney W. Grimes 	} \
128df8bae1dSRodney W. Grimes }
129df8bae1dSRodney W. Grimes 
130df8bae1dSRodney W. Grimes #define DECODEU(f) { \
131df8bae1dSRodney W. Grimes 	if (*cp == 0) {\
132df8bae1dSRodney W. Grimes 		(f) = htons((cp[1] << 8) | cp[2]); \
133df8bae1dSRodney W. Grimes 		cp += 3; \
134df8bae1dSRodney W. Grimes 	} else { \
1352d4b190bSPeter Wemm 		(f) = htons((u_int32_t)*cp++); \
136df8bae1dSRodney W. Grimes 	} \
137df8bae1dSRodney W. Grimes }
138df8bae1dSRodney W. Grimes 
1393893348eSArchie Cobbs /*
140da8c951dSArchie Cobbs  * Attempt to compress an outgoing TCP packet and return the type of
141da8c951dSArchie Cobbs  * the result.  The caller must have already verified that the protocol
142da8c951dSArchie Cobbs  * is TCP.  The first mbuf must contain the complete IP and TCP headers,
143da8c951dSArchie Cobbs  * and "ip" must be == mtod(m, struct ip *).  "comp" supplies the
144da8c951dSArchie Cobbs  * compression state, and "compress_cid" tells us whether it is OK
145da8c951dSArchie Cobbs  * to leave out the CID field when feasible.
146da8c951dSArchie Cobbs  *
147da8c951dSArchie Cobbs  * The caller is responsible for adjusting m->m_pkthdr.len upon return,
148da8c951dSArchie Cobbs  * if m is an M_PKTHDR mbuf.
1493893348eSArchie Cobbs  */
150df8bae1dSRodney W. Grimes u_int
sl_compress_tcp(struct mbuf * m,struct ip * ip,struct slcompress * comp,int compress_cid)1513e85b721SEd Maste sl_compress_tcp(struct mbuf *m, struct ip *ip, struct slcompress *comp,
1523e85b721SEd Maste     int compress_cid)
153df8bae1dSRodney W. Grimes {
1543e85b721SEd Maste 	struct cstate *cs = comp->last_cs->cs_next;
1553e85b721SEd Maste 	u_int hlen = ip->ip_hl;
1563e85b721SEd Maste 	struct tcphdr *oth;
1573e85b721SEd Maste 	struct tcphdr *th;
1583e85b721SEd Maste 	u_int deltaS, deltaA;
1593e85b721SEd Maste 	u_int changes = 0;
160df8bae1dSRodney W. Grimes 	u_char new_seq[16];
1613e85b721SEd Maste 	u_char *cp = new_seq;
162df8bae1dSRodney W. Grimes 
163df8bae1dSRodney W. Grimes 	/*
164df8bae1dSRodney W. Grimes 	 * Bail if this is an IP fragment or if the TCP packet isn't
165df8bae1dSRodney W. Grimes 	 * `compressible' (i.e., ACK isn't set or some other control bit is
166df8bae1dSRodney W. Grimes 	 * set).  (We assume that the caller has already made sure the
167df8bae1dSRodney W. Grimes 	 * packet is IP proto TCP).
168df8bae1dSRodney W. Grimes 	 */
169df8bae1dSRodney W. Grimes 	if ((ip->ip_off & htons(0x3fff)) || m->m_len < 40)
170df8bae1dSRodney W. Grimes 		return (TYPE_IP);
171df8bae1dSRodney W. Grimes 
1722d4b190bSPeter Wemm 	th = (struct tcphdr *)&((int32_t *)ip)[hlen];
173*0fc7bdc9SRichard Scheffenegger 	if ((tcp_get_flags(th) & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK)
174df8bae1dSRodney W. Grimes 		return (TYPE_IP);
175df8bae1dSRodney W. Grimes 	/*
176df8bae1dSRodney W. Grimes 	 * Packet is compressible -- we're going to send either a
177df8bae1dSRodney W. Grimes 	 * COMPRESSED_TCP or UNCOMPRESSED_TCP packet.  Either way we need
178df8bae1dSRodney W. Grimes 	 * to locate (or create) the connection state.  Special case the
179df8bae1dSRodney W. Grimes 	 * most recently used connection since it's most likely to be used
180df8bae1dSRodney W. Grimes 	 * again & we don't have to do any reordering if it's used.
181df8bae1dSRodney W. Grimes 	 */
182df8bae1dSRodney W. Grimes 	INCR(sls_packets)
183df8bae1dSRodney W. Grimes 	if (ip->ip_src.s_addr != cs->cs_ip.ip_src.s_addr ||
184df8bae1dSRodney W. Grimes 	    ip->ip_dst.s_addr != cs->cs_ip.ip_dst.s_addr ||
1852d4b190bSPeter Wemm 	    *(int32_t *)th != ((int32_t *)&cs->cs_ip)[cs->cs_ip.ip_hl]) {
186df8bae1dSRodney W. Grimes 		/*
187df8bae1dSRodney W. Grimes 		 * Wasn't the first -- search for it.
188df8bae1dSRodney W. Grimes 		 *
189df8bae1dSRodney W. Grimes 		 * States are kept in a circularly linked list with
190df8bae1dSRodney W. Grimes 		 * last_cs pointing to the end of the list.  The
191df8bae1dSRodney W. Grimes 		 * list is kept in lru order by moving a state to the
192df8bae1dSRodney W. Grimes 		 * head of the list whenever it is referenced.  Since
193df8bae1dSRodney W. Grimes 		 * the list is short and, empirically, the connection
194df8bae1dSRodney W. Grimes 		 * we want is almost always near the front, we locate
195df8bae1dSRodney W. Grimes 		 * states via linear search.  If we don't find a state
196df8bae1dSRodney W. Grimes 		 * for the datagram, the oldest state is (re-)used.
197df8bae1dSRodney W. Grimes 		 */
1983e85b721SEd Maste 		struct cstate *lcs;
1993e85b721SEd Maste 		struct cstate *lastcs = comp->last_cs;
200df8bae1dSRodney W. Grimes 
201df8bae1dSRodney W. Grimes 		do {
202df8bae1dSRodney W. Grimes 			lcs = cs; cs = cs->cs_next;
203df8bae1dSRodney W. Grimes 			INCR(sls_searches)
204df8bae1dSRodney W. Grimes 			if (ip->ip_src.s_addr == cs->cs_ip.ip_src.s_addr
205df8bae1dSRodney W. Grimes 			    && ip->ip_dst.s_addr == cs->cs_ip.ip_dst.s_addr
2062d4b190bSPeter Wemm 			    && *(int32_t *)th ==
2072d4b190bSPeter Wemm 			    ((int32_t *)&cs->cs_ip)[cs->cs_ip.ip_hl])
208df8bae1dSRodney W. Grimes 				goto found;
209df8bae1dSRodney W. Grimes 		} while (cs != lastcs);
210df8bae1dSRodney W. Grimes 
211df8bae1dSRodney W. Grimes 		/*
212df8bae1dSRodney W. Grimes 		 * Didn't find it -- re-use oldest cstate.  Send an
213df8bae1dSRodney W. Grimes 		 * uncompressed packet that tells the other side what
214df8bae1dSRodney W. Grimes 		 * connection number we're using for this conversation.
215df8bae1dSRodney W. Grimes 		 * Note that since the state list is circular, the oldest
216df8bae1dSRodney W. Grimes 		 * state points to the newest and we only need to set
217df8bae1dSRodney W. Grimes 		 * last_cs to update the lru linkage.
218df8bae1dSRodney W. Grimes 		 */
219df8bae1dSRodney W. Grimes 		INCR(sls_misses)
220df8bae1dSRodney W. Grimes 		comp->last_cs = lcs;
221df8bae1dSRodney W. Grimes 		hlen += th->th_off;
222df8bae1dSRodney W. Grimes 		hlen <<= 2;
2233bb3b046SBrian Somers 		if (hlen > m->m_len)
2243bb3b046SBrian Somers 		    return TYPE_IP;
225df8bae1dSRodney W. Grimes 		goto uncompressed;
226df8bae1dSRodney W. Grimes 
227df8bae1dSRodney W. Grimes 	found:
228df8bae1dSRodney W. Grimes 		/*
229df8bae1dSRodney W. Grimes 		 * Found it -- move to the front on the connection list.
230df8bae1dSRodney W. Grimes 		 */
231df8bae1dSRodney W. Grimes 		if (cs == lastcs)
232df8bae1dSRodney W. Grimes 			comp->last_cs = lcs;
233df8bae1dSRodney W. Grimes 		else {
234df8bae1dSRodney W. Grimes 			lcs->cs_next = cs->cs_next;
235df8bae1dSRodney W. Grimes 			cs->cs_next = lastcs->cs_next;
236df8bae1dSRodney W. Grimes 			lastcs->cs_next = cs;
237df8bae1dSRodney W. Grimes 		}
238df8bae1dSRodney W. Grimes 	}
239df8bae1dSRodney W. Grimes 
240df8bae1dSRodney W. Grimes 	/*
241df8bae1dSRodney W. Grimes 	 * Make sure that only what we expect to change changed. The first
242df8bae1dSRodney W. Grimes 	 * line of the `if' checks the IP protocol version, header length &
243df8bae1dSRodney W. Grimes 	 * type of service.  The 2nd line checks the "Don't fragment" bit.
244df8bae1dSRodney W. Grimes 	 * The 3rd line checks the time-to-live and protocol (the protocol
245df8bae1dSRodney W. Grimes 	 * check is unnecessary but costless).  The 4th line checks the TCP
246df8bae1dSRodney W. Grimes 	 * header length.  The 5th line checks IP options, if any.  The 6th
247df8bae1dSRodney W. Grimes 	 * line checks TCP options, if any.  If any of these things are
248df8bae1dSRodney W. Grimes 	 * different between the previous & current datagram, we send the
249df8bae1dSRodney W. Grimes 	 * current datagram `uncompressed'.
250df8bae1dSRodney W. Grimes 	 */
2512d4b190bSPeter Wemm 	oth = (struct tcphdr *)&((int32_t *)&cs->cs_ip)[hlen];
252df8bae1dSRodney W. Grimes 	deltaS = hlen;
253df8bae1dSRodney W. Grimes 	hlen += th->th_off;
254df8bae1dSRodney W. Grimes 	hlen <<= 2;
2553bb3b046SBrian Somers 	if (hlen > m->m_len)
2563bb3b046SBrian Somers 	    return TYPE_IP;
257df8bae1dSRodney W. Grimes 
2582d4b190bSPeter Wemm 	if (((u_int16_t *)ip)[0] != ((u_int16_t *)&cs->cs_ip)[0] ||
2592d4b190bSPeter Wemm 	    ((u_int16_t *)ip)[3] != ((u_int16_t *)&cs->cs_ip)[3] ||
2602d4b190bSPeter Wemm 	    ((u_int16_t *)ip)[4] != ((u_int16_t *)&cs->cs_ip)[4] ||
261df8bae1dSRodney W. Grimes 	    th->th_off != oth->th_off ||
262df8bae1dSRodney W. Grimes 	    (deltaS > 5 &&
263df8bae1dSRodney W. Grimes 	     BCMP(ip + 1, &cs->cs_ip + 1, (deltaS - 5) << 2)) ||
264df8bae1dSRodney W. Grimes 	    (th->th_off > 5 &&
265df8bae1dSRodney W. Grimes 	     BCMP(th + 1, oth + 1, (th->th_off - 5) << 2)))
266df8bae1dSRodney W. Grimes 		goto uncompressed;
267df8bae1dSRodney W. Grimes 
268df8bae1dSRodney W. Grimes 	/*
269df8bae1dSRodney W. Grimes 	 * Figure out which of the changing fields changed.  The
270df8bae1dSRodney W. Grimes 	 * receiver expects changes in the order: urgent, window,
271df8bae1dSRodney W. Grimes 	 * ack, seq (the order minimizes the number of temporaries
272df8bae1dSRodney W. Grimes 	 * needed in this section of code).
273df8bae1dSRodney W. Grimes 	 */
274*0fc7bdc9SRichard Scheffenegger 	if (tcp_get_flags(th) & TH_URG) {
275df8bae1dSRodney W. Grimes 		deltaS = ntohs(th->th_urp);
276df8bae1dSRodney W. Grimes 		ENCODEZ(deltaS);
277df8bae1dSRodney W. Grimes 		changes |= NEW_U;
278df8bae1dSRodney W. Grimes 	} else if (th->th_urp != oth->th_urp)
279df8bae1dSRodney W. Grimes 		/* argh! URG not set but urp changed -- a sensible
280df8bae1dSRodney W. Grimes 		 * implementation should never do this but RFC793
281df8bae1dSRodney W. Grimes 		 * doesn't prohibit the change so we have to deal
282df8bae1dSRodney W. Grimes 		 * with it. */
283df8bae1dSRodney W. Grimes 		 goto uncompressed;
284df8bae1dSRodney W. Grimes 
2852d4b190bSPeter Wemm 	deltaS = (u_int16_t)(ntohs(th->th_win) - ntohs(oth->th_win));
286df440948SPoul-Henning Kamp 	if (deltaS) {
287df8bae1dSRodney W. Grimes 		ENCODE(deltaS);
288df8bae1dSRodney W. Grimes 		changes |= NEW_W;
289df8bae1dSRodney W. Grimes 	}
290df8bae1dSRodney W. Grimes 
291df440948SPoul-Henning Kamp 	deltaA = ntohl(th->th_ack) - ntohl(oth->th_ack);
292df440948SPoul-Henning Kamp 	if (deltaA) {
293df8bae1dSRodney W. Grimes 		if (deltaA > 0xffff)
294df8bae1dSRodney W. Grimes 			goto uncompressed;
295df8bae1dSRodney W. Grimes 		ENCODE(deltaA);
296df8bae1dSRodney W. Grimes 		changes |= NEW_A;
297df8bae1dSRodney W. Grimes 	}
298df8bae1dSRodney W. Grimes 
299df440948SPoul-Henning Kamp 	deltaS = ntohl(th->th_seq) - ntohl(oth->th_seq);
300df440948SPoul-Henning Kamp 	if (deltaS) {
301df8bae1dSRodney W. Grimes 		if (deltaS > 0xffff)
302df8bae1dSRodney W. Grimes 			goto uncompressed;
303df8bae1dSRodney W. Grimes 		ENCODE(deltaS);
304df8bae1dSRodney W. Grimes 		changes |= NEW_S;
305df8bae1dSRodney W. Grimes 	}
306df8bae1dSRodney W. Grimes 
307df8bae1dSRodney W. Grimes 	switch(changes) {
308df8bae1dSRodney W. Grimes 	case 0:
309df8bae1dSRodney W. Grimes 		/*
310df8bae1dSRodney W. Grimes 		 * Nothing changed. If this packet contains data and the
311df8bae1dSRodney W. Grimes 		 * last one didn't, this is probably a data packet following
312df8bae1dSRodney W. Grimes 		 * an ack (normal on an interactive connection) and we send
313df8bae1dSRodney W. Grimes 		 * it compressed.  Otherwise it's probably a retransmit,
314df8bae1dSRodney W. Grimes 		 * retransmitted ack or window probe.  Send it uncompressed
315df8bae1dSRodney W. Grimes 		 * in case the other side missed the compressed version.
316df8bae1dSRodney W. Grimes 		 */
317df8bae1dSRodney W. Grimes 		if (ip->ip_len != cs->cs_ip.ip_len &&
318df8bae1dSRodney W. Grimes 		    ntohs(cs->cs_ip.ip_len) == hlen)
319df8bae1dSRodney W. Grimes 			break;
320df8bae1dSRodney W. Grimes 
32193b0017fSPhilippe Charnier 		/* FALLTHROUGH */
322df8bae1dSRodney W. Grimes 
323df8bae1dSRodney W. Grimes 	case SPECIAL_I:
324df8bae1dSRodney W. Grimes 	case SPECIAL_D:
325df8bae1dSRodney W. Grimes 		/*
326df8bae1dSRodney W. Grimes 		 * actual changes match one of our special case encodings --
327df8bae1dSRodney W. Grimes 		 * send packet uncompressed.
328df8bae1dSRodney W. Grimes 		 */
329df8bae1dSRodney W. Grimes 		goto uncompressed;
330df8bae1dSRodney W. Grimes 
331df8bae1dSRodney W. Grimes 	case NEW_S|NEW_A:
332df8bae1dSRodney W. Grimes 		if (deltaS == deltaA &&
333df8bae1dSRodney W. Grimes 		    deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
334df8bae1dSRodney W. Grimes 			/* special case for echoed terminal traffic */
335df8bae1dSRodney W. Grimes 			changes = SPECIAL_I;
336df8bae1dSRodney W. Grimes 			cp = new_seq;
337df8bae1dSRodney W. Grimes 		}
338df8bae1dSRodney W. Grimes 		break;
339df8bae1dSRodney W. Grimes 
340df8bae1dSRodney W. Grimes 	case NEW_S:
341df8bae1dSRodney W. Grimes 		if (deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
342df8bae1dSRodney W. Grimes 			/* special case for data xfer */
343df8bae1dSRodney W. Grimes 			changes = SPECIAL_D;
344df8bae1dSRodney W. Grimes 			cp = new_seq;
345df8bae1dSRodney W. Grimes 		}
346df8bae1dSRodney W. Grimes 		break;
347df8bae1dSRodney W. Grimes 	}
348df8bae1dSRodney W. Grimes 
349df8bae1dSRodney W. Grimes 	deltaS = ntohs(ip->ip_id) - ntohs(cs->cs_ip.ip_id);
350df8bae1dSRodney W. Grimes 	if (deltaS != 1) {
351df8bae1dSRodney W. Grimes 		ENCODEZ(deltaS);
352df8bae1dSRodney W. Grimes 		changes |= NEW_I;
353df8bae1dSRodney W. Grimes 	}
354*0fc7bdc9SRichard Scheffenegger 	if (tcp_get_flags(th) & TH_PUSH)
355df8bae1dSRodney W. Grimes 		changes |= TCP_PUSH_BIT;
356df8bae1dSRodney W. Grimes 	/*
357df8bae1dSRodney W. Grimes 	 * Grab the cksum before we overwrite it below.  Then update our
358df8bae1dSRodney W. Grimes 	 * state with this packet's header.
359df8bae1dSRodney W. Grimes 	 */
360df8bae1dSRodney W. Grimes 	deltaA = ntohs(th->th_sum);
361df8bae1dSRodney W. Grimes 	BCOPY(ip, &cs->cs_ip, hlen);
362df8bae1dSRodney W. Grimes 
363df8bae1dSRodney W. Grimes 	/*
364df8bae1dSRodney W. Grimes 	 * We want to use the original packet as our compressed packet.
365df8bae1dSRodney W. Grimes 	 * (cp - new_seq) is the number of bytes we need for compressed
366df8bae1dSRodney W. Grimes 	 * sequence numbers.  In addition we need one byte for the change
367df8bae1dSRodney W. Grimes 	 * mask, one for the connection id and two for the tcp checksum.
368df8bae1dSRodney W. Grimes 	 * So, (cp - new_seq) + 4 bytes of header are needed.  hlen is how
369df8bae1dSRodney W. Grimes 	 * many bytes of the original packet to toss so subtract the two to
370df8bae1dSRodney W. Grimes 	 * get the new packet size.
371df8bae1dSRodney W. Grimes 	 */
372df8bae1dSRodney W. Grimes 	deltaS = cp - new_seq;
373df8bae1dSRodney W. Grimes 	cp = (u_char *)ip;
374df8bae1dSRodney W. Grimes 	if (compress_cid == 0 || comp->last_xmit != cs->cs_id) {
375df8bae1dSRodney W. Grimes 		comp->last_xmit = cs->cs_id;
376df8bae1dSRodney W. Grimes 		hlen -= deltaS + 4;
377df8bae1dSRodney W. Grimes 		cp += hlen;
378df8bae1dSRodney W. Grimes 		*cp++ = changes | NEW_C;
379df8bae1dSRodney W. Grimes 		*cp++ = cs->cs_id;
380df8bae1dSRodney W. Grimes 	} else {
381df8bae1dSRodney W. Grimes 		hlen -= deltaS + 3;
382df8bae1dSRodney W. Grimes 		cp += hlen;
383df8bae1dSRodney W. Grimes 		*cp++ = changes;
384df8bae1dSRodney W. Grimes 	}
385df8bae1dSRodney W. Grimes 	m->m_len -= hlen;
386df8bae1dSRodney W. Grimes 	m->m_data += hlen;
387df8bae1dSRodney W. Grimes 	*cp++ = deltaA >> 8;
388df8bae1dSRodney W. Grimes 	*cp++ = deltaA;
389df8bae1dSRodney W. Grimes 	BCOPY(new_seq, cp, deltaS);
390df8bae1dSRodney W. Grimes 	INCR(sls_compressed)
391df8bae1dSRodney W. Grimes 	return (TYPE_COMPRESSED_TCP);
392df8bae1dSRodney W. Grimes 
393df8bae1dSRodney W. Grimes 	/*
394df8bae1dSRodney W. Grimes 	 * Update connection state cs & send uncompressed packet ('uncompressed'
395df8bae1dSRodney W. Grimes 	 * means a regular ip/tcp packet but with the 'conversation id' we hope
396df8bae1dSRodney W. Grimes 	 * to use on future compressed packets in the protocol field).
397df8bae1dSRodney W. Grimes 	 */
398df8bae1dSRodney W. Grimes uncompressed:
399df8bae1dSRodney W. Grimes 	BCOPY(ip, &cs->cs_ip, hlen);
400df8bae1dSRodney W. Grimes 	ip->ip_p = cs->cs_id;
401df8bae1dSRodney W. Grimes 	comp->last_xmit = cs->cs_id;
402df8bae1dSRodney W. Grimes 	return (TYPE_UNCOMPRESSED_TCP);
403df8bae1dSRodney W. Grimes }
404df8bae1dSRodney W. Grimes 
405df8bae1dSRodney W. Grimes int
sl_uncompress_tcp(u_char ** bufp,int len,u_int type,struct slcompress * comp)4063e85b721SEd Maste sl_uncompress_tcp(u_char **bufp, int len, u_int type, struct slcompress *comp)
407df8bae1dSRodney W. Grimes {
40871b9cf73SPeter Wemm 	u_char *hdr, *cp;
40971b9cf73SPeter Wemm 	int hlen, vjlen;
41071b9cf73SPeter Wemm 
41171b9cf73SPeter Wemm 	cp = bufp? *bufp: NULL;
41271b9cf73SPeter Wemm 	vjlen = sl_uncompress_tcp_core(cp, len, len, type, comp, &hdr, &hlen);
41371b9cf73SPeter Wemm 	if (vjlen < 0)
41471b9cf73SPeter Wemm 		return (0);	/* error */
41571b9cf73SPeter Wemm 	if (vjlen == 0)
41671b9cf73SPeter Wemm 		return (len);	/* was uncompressed already */
41771b9cf73SPeter Wemm 
41871b9cf73SPeter Wemm 	cp += vjlen;
41971b9cf73SPeter Wemm 	len -= vjlen;
42071b9cf73SPeter Wemm 
42171b9cf73SPeter Wemm 	/*
42271b9cf73SPeter Wemm 	 * At this point, cp points to the first byte of data in the
42371b9cf73SPeter Wemm 	 * packet.  If we're not aligned on a 4-byte boundary, copy the
42471b9cf73SPeter Wemm 	 * data down so the ip & tcp headers will be aligned.  Then back up
42571b9cf73SPeter Wemm 	 * cp by the tcp/ip header length to make room for the reconstructed
42671b9cf73SPeter Wemm 	 * header (we assume the packet we were handed has enough space to
42771b9cf73SPeter Wemm 	 * prepend 128 bytes of header).
42871b9cf73SPeter Wemm 	 */
429a23d65bfSBruce Evans 	if ((intptr_t)cp & 3) {
43071b9cf73SPeter Wemm 		if (len > 0)
4317283c975SDag-Erling Smørgrav 			BCOPY(cp, ((intptr_t)cp &~ 3), len);
432a23d65bfSBruce Evans 		cp = (u_char *)((intptr_t)cp &~ 3);
43371b9cf73SPeter Wemm 	}
43471b9cf73SPeter Wemm 	cp -= hlen;
43571b9cf73SPeter Wemm 	len += hlen;
43671b9cf73SPeter Wemm 	BCOPY(hdr, cp, hlen);
43771b9cf73SPeter Wemm 
43871b9cf73SPeter Wemm 	*bufp = cp;
43971b9cf73SPeter Wemm 	return (len);
44071b9cf73SPeter Wemm }
44171b9cf73SPeter Wemm 
44271b9cf73SPeter Wemm /*
44371b9cf73SPeter Wemm  * Uncompress a packet of total length total_len.  The first buflen
44471b9cf73SPeter Wemm  * bytes are at buf; this must include the entire (compressed or
44571b9cf73SPeter Wemm  * uncompressed) TCP/IP header.  This procedure returns the length
44671b9cf73SPeter Wemm  * of the VJ header, with a pointer to the uncompressed IP header
44771b9cf73SPeter Wemm  * in *hdrp and its length in *hlenp.
44871b9cf73SPeter Wemm  */
44971b9cf73SPeter Wemm int
sl_uncompress_tcp_core(u_char * buf,int buflen,int total_len,u_int type,struct slcompress * comp,u_char ** hdrp,u_int * hlenp)4503e85b721SEd Maste sl_uncompress_tcp_core(u_char *buf, int buflen, int total_len, u_int type,
4513e85b721SEd Maste     struct slcompress *comp, u_char **hdrp, u_int *hlenp)
45271b9cf73SPeter Wemm {
4533e85b721SEd Maste 	u_char *cp;
4543e85b721SEd Maste 	u_int hlen, changes;
4553e85b721SEd Maste 	struct tcphdr *th;
4563e85b721SEd Maste 	struct cstate *cs;
4573e85b721SEd Maste 	struct ip *ip;
4583e85b721SEd Maste 	u_int16_t *bp;
4593e85b721SEd Maste 	u_int vjlen;
460df8bae1dSRodney W. Grimes 
461df8bae1dSRodney W. Grimes 	switch (type) {
462df8bae1dSRodney W. Grimes 	case TYPE_UNCOMPRESSED_TCP:
46371b9cf73SPeter Wemm 		ip = (struct ip *) buf;
464df8bae1dSRodney W. Grimes 		if (ip->ip_p >= MAX_STATES)
465df8bae1dSRodney W. Grimes 			goto bad;
466df8bae1dSRodney W. Grimes 		cs = &comp->rstate[comp->last_recv = ip->ip_p];
467df8bae1dSRodney W. Grimes 		comp->flags &=~ SLF_TOSS;
468df8bae1dSRodney W. Grimes 		ip->ip_p = IPPROTO_TCP;
46906fc5af9SDavid Greenman 		/*
47006fc5af9SDavid Greenman 		 * Calculate the size of the TCP/IP header and make sure that
47106fc5af9SDavid Greenman 		 * we don't overflow the space we have available for it.
47206fc5af9SDavid Greenman 		 */
47306fc5af9SDavid Greenman 		hlen = ip->ip_hl << 2;
47406fc5af9SDavid Greenman 		if (hlen + sizeof(struct tcphdr) > buflen)
47506fc5af9SDavid Greenman 			goto bad;
47606fc5af9SDavid Greenman 		hlen += ((struct tcphdr *)&((char *)ip)[hlen])->th_off << 2;
4772d4b190bSPeter Wemm 		if (hlen > MAX_HDR || hlen > buflen)
47806fc5af9SDavid Greenman 			goto bad;
479df8bae1dSRodney W. Grimes 		BCOPY(ip, &cs->cs_ip, hlen);
480df8bae1dSRodney W. Grimes 		cs->cs_hlen = hlen;
481df8bae1dSRodney W. Grimes 		INCR(sls_uncompressedin)
48271b9cf73SPeter Wemm 		*hdrp = (u_char *) &cs->cs_ip;
48371b9cf73SPeter Wemm 		*hlenp = hlen;
48471b9cf73SPeter Wemm 		return (0);
485df8bae1dSRodney W. Grimes 
486df8bae1dSRodney W. Grimes 	default:
487df8bae1dSRodney W. Grimes 		goto bad;
488df8bae1dSRodney W. Grimes 
489df8bae1dSRodney W. Grimes 	case TYPE_COMPRESSED_TCP:
490df8bae1dSRodney W. Grimes 		break;
491df8bae1dSRodney W. Grimes 	}
492df8bae1dSRodney W. Grimes 	/* We've got a compressed packet. */
493df8bae1dSRodney W. Grimes 	INCR(sls_compressedin)
49471b9cf73SPeter Wemm 	cp = buf;
495df8bae1dSRodney W. Grimes 	changes = *cp++;
496df8bae1dSRodney W. Grimes 	if (changes & NEW_C) {
497df8bae1dSRodney W. Grimes 		/* Make sure the state index is in range, then grab the state.
498df8bae1dSRodney W. Grimes 		 * If we have a good state index, clear the 'discard' flag. */
499df8bae1dSRodney W. Grimes 		if (*cp >= MAX_STATES)
500df8bae1dSRodney W. Grimes 			goto bad;
501df8bae1dSRodney W. Grimes 
502df8bae1dSRodney W. Grimes 		comp->flags &=~ SLF_TOSS;
503df8bae1dSRodney W. Grimes 		comp->last_recv = *cp++;
504df8bae1dSRodney W. Grimes 	} else {
505df8bae1dSRodney W. Grimes 		/* this packet has an implicit state index.  If we've
506df8bae1dSRodney W. Grimes 		 * had a line error since the last time we got an
507df8bae1dSRodney W. Grimes 		 * explicit state index, we have to toss the packet. */
508df8bae1dSRodney W. Grimes 		if (comp->flags & SLF_TOSS) {
509df8bae1dSRodney W. Grimes 			INCR(sls_tossed)
51071b9cf73SPeter Wemm 			return (-1);
511df8bae1dSRodney W. Grimes 		}
512df8bae1dSRodney W. Grimes 	}
513df8bae1dSRodney W. Grimes 	cs = &comp->rstate[comp->last_recv];
514df8bae1dSRodney W. Grimes 	hlen = cs->cs_ip.ip_hl << 2;
515df8bae1dSRodney W. Grimes 	th = (struct tcphdr *)&((u_char *)&cs->cs_ip)[hlen];
516df8bae1dSRodney W. Grimes 	th->th_sum = htons((*cp << 8) | cp[1]);
517df8bae1dSRodney W. Grimes 	cp += 2;
518df8bae1dSRodney W. Grimes 	if (changes & TCP_PUSH_BIT)
519*0fc7bdc9SRichard Scheffenegger 		tcp_set_flags(th, tcp_get_flags(th) | TH_PUSH);
520df8bae1dSRodney W. Grimes 	else
521*0fc7bdc9SRichard Scheffenegger 		tcp_set_flags(th, tcp_get_flags(th) & ~TH_PUSH);
522df8bae1dSRodney W. Grimes 
523df8bae1dSRodney W. Grimes 	switch (changes & SPECIALS_MASK) {
524df8bae1dSRodney W. Grimes 	case SPECIAL_I:
525df8bae1dSRodney W. Grimes 		{
5263e85b721SEd Maste 		u_int i = ntohs(cs->cs_ip.ip_len) - cs->cs_hlen;
527df8bae1dSRodney W. Grimes 		th->th_ack = htonl(ntohl(th->th_ack) + i);
528df8bae1dSRodney W. Grimes 		th->th_seq = htonl(ntohl(th->th_seq) + i);
529df8bae1dSRodney W. Grimes 		}
530df8bae1dSRodney W. Grimes 		break;
531df8bae1dSRodney W. Grimes 
532df8bae1dSRodney W. Grimes 	case SPECIAL_D:
533df8bae1dSRodney W. Grimes 		th->th_seq = htonl(ntohl(th->th_seq) + ntohs(cs->cs_ip.ip_len)
534df8bae1dSRodney W. Grimes 				   - cs->cs_hlen);
535df8bae1dSRodney W. Grimes 		break;
536df8bae1dSRodney W. Grimes 
537df8bae1dSRodney W. Grimes 	default:
538df8bae1dSRodney W. Grimes 		if (changes & NEW_U) {
539*0fc7bdc9SRichard Scheffenegger 			tcp_set_flags(th, tcp_get_flags(th) | TH_URG);
540df8bae1dSRodney W. Grimes 			DECODEU(th->th_urp)
541df8bae1dSRodney W. Grimes 		} else
542*0fc7bdc9SRichard Scheffenegger 			tcp_set_flags(th, tcp_get_flags(th) & ~TH_URG);
543df8bae1dSRodney W. Grimes 		if (changes & NEW_W)
544df8bae1dSRodney W. Grimes 			DECODES(th->th_win)
545df8bae1dSRodney W. Grimes 		if (changes & NEW_A)
546df8bae1dSRodney W. Grimes 			DECODEL(th->th_ack)
547df8bae1dSRodney W. Grimes 		if (changes & NEW_S)
548df8bae1dSRodney W. Grimes 			DECODEL(th->th_seq)
549df8bae1dSRodney W. Grimes 		break;
550df8bae1dSRodney W. Grimes 	}
551df8bae1dSRodney W. Grimes 	if (changes & NEW_I) {
552df8bae1dSRodney W. Grimes 		DECODES(cs->cs_ip.ip_id)
553df8bae1dSRodney W. Grimes 	} else
554df8bae1dSRodney W. Grimes 		cs->cs_ip.ip_id = htons(ntohs(cs->cs_ip.ip_id) + 1);
555df8bae1dSRodney W. Grimes 
556df8bae1dSRodney W. Grimes 	/*
557df8bae1dSRodney W. Grimes 	 * At this point, cp points to the first byte of data in the
55871b9cf73SPeter Wemm 	 * packet.  Fill in the IP total length and update the IP
55971b9cf73SPeter Wemm 	 * header checksum.
560df8bae1dSRodney W. Grimes 	 */
56171b9cf73SPeter Wemm 	vjlen = cp - buf;
56271b9cf73SPeter Wemm 	buflen -= vjlen;
56371b9cf73SPeter Wemm 	if (buflen < 0)
564df8bae1dSRodney W. Grimes 		/* we must have dropped some characters (crc should detect
565df8bae1dSRodney W. Grimes 		 * this but the old slip framing won't) */
566df8bae1dSRodney W. Grimes 		goto bad;
567df8bae1dSRodney W. Grimes 
56871b9cf73SPeter Wemm 	total_len += cs->cs_hlen - vjlen;
56971b9cf73SPeter Wemm 	cs->cs_ip.ip_len = htons(total_len);
570df8bae1dSRodney W. Grimes 
571df8bae1dSRodney W. Grimes 	/* recompute the ip header checksum */
5722d4b190bSPeter Wemm 	bp = (u_int16_t *) &cs->cs_ip;
57371b9cf73SPeter Wemm 	cs->cs_ip.ip_sum = 0;
574df8bae1dSRodney W. Grimes 		for (changes = 0; hlen > 0; hlen -= 2)
575df8bae1dSRodney W. Grimes 			changes += *bp++;
576df8bae1dSRodney W. Grimes 		changes = (changes & 0xffff) + (changes >> 16);
577df8bae1dSRodney W. Grimes 		changes = (changes & 0xffff) + (changes >> 16);
57871b9cf73SPeter Wemm 	cs->cs_ip.ip_sum = ~ changes;
57971b9cf73SPeter Wemm 
58071b9cf73SPeter Wemm 	*hdrp = (u_char *) &cs->cs_ip;
58171b9cf73SPeter Wemm 	*hlenp = cs->cs_hlen;
58271b9cf73SPeter Wemm 	return vjlen;
58371b9cf73SPeter Wemm 
584df8bae1dSRodney W. Grimes bad:
585df8bae1dSRodney W. Grimes 	comp->flags |= SLF_TOSS;
586df8bae1dSRodney W. Grimes 	INCR(sls_errorin)
58771b9cf73SPeter Wemm 	return (-1);
588df8bae1dSRodney W. Grimes }
589