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 #ifdef __cplusplus 35*10465441SEvalZero extern "C" { 36*10465441SEvalZero #endif 37*10465441SEvalZero 38*10465441SEvalZero #define MAX_SLOTS 16 /* must be > 2 and < 256 */ 39*10465441SEvalZero #define MAX_HDR 128 40*10465441SEvalZero 41*10465441SEvalZero /* 42*10465441SEvalZero * Compressed packet format: 43*10465441SEvalZero * 44*10465441SEvalZero * The first octet contains the packet type (top 3 bits), TCP 45*10465441SEvalZero * 'push' bit, and flags that indicate which of the 4 TCP sequence 46*10465441SEvalZero * numbers have changed (bottom 5 bits). The next octet is a 47*10465441SEvalZero * conversation number that associates a saved IP/TCP header with 48*10465441SEvalZero * the compressed packet. The next two octets are the TCP checksum 49*10465441SEvalZero * from the original datagram. The next 0 to 15 octets are 50*10465441SEvalZero * sequence number changes, one change per bit set in the header 51*10465441SEvalZero * (there may be no changes and there are two special cases where 52*10465441SEvalZero * the receiver implicitly knows what changed -- see below). 53*10465441SEvalZero * 54*10465441SEvalZero * There are 5 numbers which can change (they are always inserted 55*10465441SEvalZero * in the following order): TCP urgent pointer, window, 56*10465441SEvalZero * acknowlegement, sequence number and IP ID. (The urgent pointer 57*10465441SEvalZero * is different from the others in that its value is sent, not the 58*10465441SEvalZero * change in value.) Since typical use of SLIP links is biased 59*10465441SEvalZero * toward small packets (see comments on MTU/MSS below), changes 60*10465441SEvalZero * use a variable length coding with one octet for numbers in the 61*10465441SEvalZero * range 1 - 255 and 3 octets (0, MSB, LSB) for numbers in the 62*10465441SEvalZero * range 256 - 65535 or 0. (If the change in sequence number or 63*10465441SEvalZero * ack is more than 65535, an uncompressed packet is sent.) 64*10465441SEvalZero */ 65*10465441SEvalZero 66*10465441SEvalZero /* 67*10465441SEvalZero * Packet types (must not conflict with IP protocol version) 68*10465441SEvalZero * 69*10465441SEvalZero * The top nibble of the first octet is the packet type. There are 70*10465441SEvalZero * three possible types: IP (not proto TCP or tcp with one of the 71*10465441SEvalZero * control flags set); uncompressed TCP (a normal IP/TCP packet but 72*10465441SEvalZero * with the 8-bit protocol field replaced by an 8-bit connection id -- 73*10465441SEvalZero * this type of packet syncs the sender & receiver); and compressed 74*10465441SEvalZero * TCP (described above). 75*10465441SEvalZero * 76*10465441SEvalZero * LSB of 4-bit field is TCP "PUSH" bit (a worthless anachronism) and 77*10465441SEvalZero * is logically part of the 4-bit "changes" field that follows. Top 78*10465441SEvalZero * three bits are actual packet type. For backward compatibility 79*10465441SEvalZero * and in the interest of conserving bits, numbers are chosen so the 80*10465441SEvalZero * IP protocol version number (4) which normally appears in this nibble 81*10465441SEvalZero * means "IP packet". 82*10465441SEvalZero */ 83*10465441SEvalZero 84*10465441SEvalZero /* packet types */ 85*10465441SEvalZero #define TYPE_IP 0x40 86*10465441SEvalZero #define TYPE_UNCOMPRESSED_TCP 0x70 87*10465441SEvalZero #define TYPE_COMPRESSED_TCP 0x80 88*10465441SEvalZero #define TYPE_ERROR 0x00 89*10465441SEvalZero 90*10465441SEvalZero /* Bits in first octet of compressed packet */ 91*10465441SEvalZero #define NEW_C 0x40 /* flag bits for what changed in a packet */ 92*10465441SEvalZero #define NEW_I 0x20 93*10465441SEvalZero #define NEW_S 0x08 94*10465441SEvalZero #define NEW_A 0x04 95*10465441SEvalZero #define NEW_W 0x02 96*10465441SEvalZero #define NEW_U 0x01 97*10465441SEvalZero 98*10465441SEvalZero /* reserved, special-case values of above */ 99*10465441SEvalZero #define SPECIAL_I (NEW_S|NEW_W|NEW_U) /* echoed interactive traffic */ 100*10465441SEvalZero #define SPECIAL_D (NEW_S|NEW_A|NEW_W|NEW_U) /* unidirectional data */ 101*10465441SEvalZero #define SPECIALS_MASK (NEW_S|NEW_A|NEW_W|NEW_U) 102*10465441SEvalZero 103*10465441SEvalZero #define TCP_PUSH_BIT 0x10 104*10465441SEvalZero 105*10465441SEvalZero 106*10465441SEvalZero /* 107*10465441SEvalZero * "state" data for each active tcp conversation on the wire. This is 108*10465441SEvalZero * basically a copy of the entire IP/TCP header from the last packet 109*10465441SEvalZero * we saw from the conversation together with a small identifier 110*10465441SEvalZero * the transmit & receive ends of the line use to locate saved header. 111*10465441SEvalZero */ 112*10465441SEvalZero struct cstate { 113*10465441SEvalZero struct cstate *cs_next; /* next most recently used state (xmit only) */ 114*10465441SEvalZero u16_t cs_hlen; /* size of hdr (receive only) */ 115*10465441SEvalZero u8_t cs_id; /* connection # associated with this state */ 116*10465441SEvalZero u8_t cs_filler; 117*10465441SEvalZero union { 118*10465441SEvalZero char csu_hdr[MAX_HDR]; 119*10465441SEvalZero struct ip_hdr csu_ip; /* ip/tcp hdr from most recent packet */ 120*10465441SEvalZero } vjcs_u; 121*10465441SEvalZero }; 122*10465441SEvalZero #define cs_ip vjcs_u.csu_ip 123*10465441SEvalZero #define cs_hdr vjcs_u.csu_hdr 124*10465441SEvalZero 125*10465441SEvalZero 126*10465441SEvalZero struct vjstat { 127*10465441SEvalZero u32_t vjs_packets; /* outbound packets */ 128*10465441SEvalZero u32_t vjs_compressed; /* outbound compressed packets */ 129*10465441SEvalZero u32_t vjs_searches; /* searches for connection state */ 130*10465441SEvalZero u32_t vjs_misses; /* times couldn't find conn. state */ 131*10465441SEvalZero u32_t vjs_uncompressedin; /* inbound uncompressed packets */ 132*10465441SEvalZero u32_t vjs_compressedin; /* inbound compressed packets */ 133*10465441SEvalZero u32_t vjs_errorin; /* inbound unknown type packets */ 134*10465441SEvalZero u32_t vjs_tossed; /* inbound packets tossed because of error */ 135*10465441SEvalZero }; 136*10465441SEvalZero 137*10465441SEvalZero /* 138*10465441SEvalZero * all the state data for one serial line (we need one of these per line). 139*10465441SEvalZero */ 140*10465441SEvalZero struct vjcompress { 141*10465441SEvalZero struct cstate *last_cs; /* most recently used tstate */ 142*10465441SEvalZero u8_t last_recv; /* last rcvd conn. id */ 143*10465441SEvalZero u8_t last_xmit; /* last sent conn. id */ 144*10465441SEvalZero u16_t flags; 145*10465441SEvalZero u8_t maxSlotIndex; 146*10465441SEvalZero u8_t compressSlot; /* Flag indicating OK to compress slot ID. */ 147*10465441SEvalZero #if LINK_STATS 148*10465441SEvalZero struct vjstat stats; 149*10465441SEvalZero #endif 150*10465441SEvalZero struct cstate tstate[MAX_SLOTS]; /* xmit connection states */ 151*10465441SEvalZero struct cstate rstate[MAX_SLOTS]; /* receive connection states */ 152*10465441SEvalZero }; 153*10465441SEvalZero 154*10465441SEvalZero /* flag values */ 155*10465441SEvalZero #define VJF_TOSS 1U /* tossing rcvd frames because of input err */ 156*10465441SEvalZero 157*10465441SEvalZero extern void vj_compress_init (struct vjcompress *comp); 158*10465441SEvalZero extern u8_t vj_compress_tcp (struct vjcompress *comp, struct pbuf **pb); 159*10465441SEvalZero extern void vj_uncompress_err (struct vjcompress *comp); 160*10465441SEvalZero extern int vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp); 161*10465441SEvalZero extern int vj_uncompress_tcp (struct pbuf **nb, struct vjcompress *comp); 162*10465441SEvalZero 163*10465441SEvalZero #ifdef __cplusplus 164*10465441SEvalZero } 165*10465441SEvalZero #endif 166*10465441SEvalZero 167*10465441SEvalZero #endif /* VJ_H */ 168*10465441SEvalZero 169*10465441SEvalZero #endif /* PPP_SUPPORT && VJ_SUPPORT */ 170