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