First step: AutoIP compiled in and working

Dependencies:   mbed

Committer:
darran
Date:
Fri Jun 18 15:54:21 2010 +0000
Revision:
1:4218cacaf696
Parent:
0:55a05330f8cc

        

Who changed what in which revision?

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