xref: /nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/netif/ppp/vj.h (revision 104654410c56c573564690304ae786df310c91fc)
1*10465441SEvalZero /*
2*10465441SEvalZero  * Definitions for tcp compression routines.
3*10465441SEvalZero  *
4*10465441SEvalZero  * $Id: vj.h,v 1.7 2010/02/22 17:52:09 goldsimon Exp $
5*10465441SEvalZero  *
6*10465441SEvalZero  * Copyright (c) 1989 Regents of the University of California.
7*10465441SEvalZero  * All rights reserved.
8*10465441SEvalZero  *
9*10465441SEvalZero  * Redistribution and use in source and binary forms are permitted
10*10465441SEvalZero  * provided that the above copyright notice and this paragraph are
11*10465441SEvalZero  * duplicated in all such forms and that any documentation,
12*10465441SEvalZero  * advertising materials, and other materials related to such
13*10465441SEvalZero  * distribution and use acknowledge that the software was developed
14*10465441SEvalZero  * by the University of California, Berkeley.  The name of the
15*10465441SEvalZero  * University may not be used to endorse or promote products derived
16*10465441SEvalZero  * from this software without specific prior written permission.
17*10465441SEvalZero  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
18*10465441SEvalZero  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
19*10465441SEvalZero  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20*10465441SEvalZero  *
21*10465441SEvalZero  * Van Jacobson ([email protected]), Dec 31, 1989:
22*10465441SEvalZero  * - Initial distribution.
23*10465441SEvalZero  */
24*10465441SEvalZero 
25*10465441SEvalZero #include "netif/ppp/ppp_opts.h"
26*10465441SEvalZero #if PPP_SUPPORT && VJ_SUPPORT /* don't build if not configured for use in lwipopts.h */
27*10465441SEvalZero 
28*10465441SEvalZero #ifndef VJ_H
29*10465441SEvalZero #define VJ_H
30*10465441SEvalZero 
31*10465441SEvalZero #include "lwip/ip.h"
32*10465441SEvalZero #include "lwip/priv/tcp_priv.h"
33*10465441SEvalZero 
34*10465441SEvalZero #define MAX_SLOTS 16 /* must be > 2 and < 256 */
35*10465441SEvalZero #define MAX_HDR   128
36*10465441SEvalZero 
37*10465441SEvalZero /*
38*10465441SEvalZero  * Compressed packet format:
39*10465441SEvalZero  *
40*10465441SEvalZero  * The first octet contains the packet type (top 3 bits), TCP
41*10465441SEvalZero  * 'push' bit, and flags that indicate which of the 4 TCP sequence
42*10465441SEvalZero  * numbers have changed (bottom 5 bits).  The next octet is a
43*10465441SEvalZero  * conversation number that associates a saved IP/TCP header with
44*10465441SEvalZero  * the compressed packet.  The next two octets are the TCP checksum
45*10465441SEvalZero  * from the original datagram.  The next 0 to 15 octets are
46*10465441SEvalZero  * sequence number changes, one change per bit set in the header
47*10465441SEvalZero  * (there may be no changes and there are two special cases where
48*10465441SEvalZero  * the receiver implicitly knows what changed -- see below).
49*10465441SEvalZero  *
50*10465441SEvalZero  * There are 5 numbers which can change (they are always inserted
51*10465441SEvalZero  * in the following order): TCP urgent pointer, window,
52*10465441SEvalZero  * acknowlegement, sequence number and IP ID.  (The urgent pointer
53*10465441SEvalZero  * is different from the others in that its value is sent, not the
54*10465441SEvalZero  * change in value.)  Since typical use of SLIP links is biased
55*10465441SEvalZero  * toward small packets (see comments on MTU/MSS below), changes
56*10465441SEvalZero  * use a variable length coding with one octet for numbers in the
57*10465441SEvalZero  * range 1 - 255 and 3 octets (0, MSB, LSB) for numbers in the
58*10465441SEvalZero  * range 256 - 65535 or 0.  (If the change in sequence number or
59*10465441SEvalZero  * ack is more than 65535, an uncompressed packet is sent.)
60*10465441SEvalZero  */
61*10465441SEvalZero 
62*10465441SEvalZero /*
63*10465441SEvalZero  * Packet types (must not conflict with IP protocol version)
64*10465441SEvalZero  *
65*10465441SEvalZero  * The top nibble of the first octet is the packet type.  There are
66*10465441SEvalZero  * three possible types: IP (not proto TCP or tcp with one of the
67*10465441SEvalZero  * control flags set); uncompressed TCP (a normal IP/TCP packet but
68*10465441SEvalZero  * with the 8-bit protocol field replaced by an 8-bit connection id --
69*10465441SEvalZero  * this type of packet syncs the sender & receiver); and compressed
70*10465441SEvalZero  * TCP (described above).
71*10465441SEvalZero  *
72*10465441SEvalZero  * LSB of 4-bit field is TCP "PUSH" bit (a worthless anachronism) and
73*10465441SEvalZero  * is logically part of the 4-bit "changes" field that follows.  Top
74*10465441SEvalZero  * three bits are actual packet type.  For backward compatibility
75*10465441SEvalZero  * and in the interest of conserving bits, numbers are chosen so the
76*10465441SEvalZero  * IP protocol version number (4) which normally appears in this nibble
77*10465441SEvalZero  * means "IP packet".
78*10465441SEvalZero  */
79*10465441SEvalZero 
80*10465441SEvalZero /* packet types */
81*10465441SEvalZero #define TYPE_IP               0x40
82*10465441SEvalZero #define TYPE_UNCOMPRESSED_TCP 0x70
83*10465441SEvalZero #define TYPE_COMPRESSED_TCP   0x80
84*10465441SEvalZero #define TYPE_ERROR            0x00
85*10465441SEvalZero 
86*10465441SEvalZero /* Bits in first octet of compressed packet */
87*10465441SEvalZero #define NEW_C 0x40 /* flag bits for what changed in a packet */
88*10465441SEvalZero #define NEW_I 0x20
89*10465441SEvalZero #define NEW_S 0x08
90*10465441SEvalZero #define NEW_A 0x04
91*10465441SEvalZero #define NEW_W 0x02
92*10465441SEvalZero #define NEW_U 0x01
93*10465441SEvalZero 
94*10465441SEvalZero /* reserved, special-case values of above */
95*10465441SEvalZero #define SPECIAL_I (NEW_S|NEW_W|NEW_U) /* echoed interactive traffic */
96*10465441SEvalZero #define SPECIAL_D (NEW_S|NEW_A|NEW_W|NEW_U) /* unidirectional data */
97*10465441SEvalZero #define SPECIALS_MASK (NEW_S|NEW_A|NEW_W|NEW_U)
98*10465441SEvalZero 
99*10465441SEvalZero #define TCP_PUSH_BIT 0x10
100*10465441SEvalZero 
101*10465441SEvalZero 
102*10465441SEvalZero /*
103*10465441SEvalZero  * "state" data for each active tcp conversation on the wire.  This is
104*10465441SEvalZero  * basically a copy of the entire IP/TCP header from the last packet
105*10465441SEvalZero  * we saw from the conversation together with a small identifier
106*10465441SEvalZero  * the transmit & receive ends of the line use to locate saved header.
107*10465441SEvalZero  */
108*10465441SEvalZero struct cstate {
109*10465441SEvalZero   struct cstate *cs_next; /* next most recently used state (xmit only) */
110*10465441SEvalZero   u16_t cs_hlen;        /* size of hdr (receive only) */
111*10465441SEvalZero   u8_t cs_id;           /* connection # associated with this state */
112*10465441SEvalZero   u8_t cs_filler;
113*10465441SEvalZero   union {
114*10465441SEvalZero     char csu_hdr[MAX_HDR];
115*10465441SEvalZero     struct ip_hdr csu_ip;     /* ip/tcp hdr from most recent packet */
116*10465441SEvalZero   } vjcs_u;
117*10465441SEvalZero };
118*10465441SEvalZero #define cs_ip vjcs_u.csu_ip
119*10465441SEvalZero #define cs_hdr vjcs_u.csu_hdr
120*10465441SEvalZero 
121*10465441SEvalZero 
122*10465441SEvalZero struct vjstat {
123*10465441SEvalZero   u32_t vjs_packets;        /* outbound packets */
124*10465441SEvalZero   u32_t vjs_compressed;     /* outbound compressed packets */
125*10465441SEvalZero   u32_t vjs_searches;       /* searches for connection state */
126*10465441SEvalZero   u32_t vjs_misses;         /* times couldn't find conn. state */
127*10465441SEvalZero   u32_t vjs_uncompressedin; /* inbound uncompressed packets */
128*10465441SEvalZero   u32_t vjs_compressedin;   /* inbound compressed packets */
129*10465441SEvalZero   u32_t vjs_errorin;        /* inbound unknown type packets */
130*10465441SEvalZero   u32_t vjs_tossed;         /* inbound packets tossed because of error */
131*10465441SEvalZero };
132*10465441SEvalZero 
133*10465441SEvalZero /*
134*10465441SEvalZero  * all the state data for one serial line (we need one of these per line).
135*10465441SEvalZero  */
136*10465441SEvalZero struct vjcompress {
137*10465441SEvalZero   struct cstate *last_cs;          /* most recently used tstate */
138*10465441SEvalZero   u8_t last_recv;                /* last rcvd conn. id */
139*10465441SEvalZero   u8_t last_xmit;                /* last sent conn. id */
140*10465441SEvalZero   u16_t flags;
141*10465441SEvalZero   u8_t maxSlotIndex;
142*10465441SEvalZero   u8_t compressSlot;             /* Flag indicating OK to compress slot ID. */
143*10465441SEvalZero #if LINK_STATS
144*10465441SEvalZero   struct vjstat stats;
145*10465441SEvalZero #endif
146*10465441SEvalZero   struct cstate tstate[MAX_SLOTS]; /* xmit connection states */
147*10465441SEvalZero   struct cstate rstate[MAX_SLOTS]; /* receive connection states */
148*10465441SEvalZero };
149*10465441SEvalZero 
150*10465441SEvalZero /* flag values */
151*10465441SEvalZero #define VJF_TOSS 1U /* tossing rcvd frames because of input err */
152*10465441SEvalZero 
153*10465441SEvalZero extern void  vj_compress_init    (struct vjcompress *comp);
154*10465441SEvalZero extern u8_t  vj_compress_tcp     (struct vjcompress *comp, struct pbuf **pb);
155*10465441SEvalZero extern void  vj_uncompress_err   (struct vjcompress *comp);
156*10465441SEvalZero extern int   vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp);
157*10465441SEvalZero extern int   vj_uncompress_tcp   (struct pbuf **nb, struct vjcompress *comp);
158*10465441SEvalZero 
159*10465441SEvalZero #endif /* VJ_H */
160*10465441SEvalZero 
161*10465441SEvalZero #endif /* PPP_SUPPORT && VJ_SUPPORT */
162