123

Committer:
hudakz
Date:
Sun Mar 08 20:26:56 2015 +0000
Revision:
4:d774541a34da
Parent:
3:5b17e4656dd0
Child:
8:4acb22344932
Version 1.09 (fixed leaking client-data caused by race-condition on remote close)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hudakz 3:5b17e4656dd0 1 #define DEBUG_PRINTF(...) /*printf(__VA_ARGS__)*/
hudakz 3:5b17e4656dd0 2
hudakz 3:5b17e4656dd0 3 /**
hudakz 3:5b17e4656dd0 4 * \defgroup uip The uIP TCP/IP stack
hudakz 3:5b17e4656dd0 5 * @{
hudakz 3:5b17e4656dd0 6 *
hudakz 3:5b17e4656dd0 7 * uIP is an implementation of the TCP/IP protocol stack intended for
hudakz 3:5b17e4656dd0 8 * small 8-bit and 16-bit microcontrollers.
hudakz 3:5b17e4656dd0 9 *
hudakz 3:5b17e4656dd0 10 * uIP provides the necessary protocols for Internet communication,
hudakz 3:5b17e4656dd0 11 * with a very small code footprint and RAM requirements - the uIP
hudakz 3:5b17e4656dd0 12 * code size is on the order of a few kilobytes and RAM usage is on
hudakz 3:5b17e4656dd0 13 * the order of a few hundred bytes.
hudakz 3:5b17e4656dd0 14 */
hudakz 3:5b17e4656dd0 15
hudakz 3:5b17e4656dd0 16 /**
hudakz 3:5b17e4656dd0 17 * \file
hudakz 3:5b17e4656dd0 18 * The uIP TCP/IP stack code.
hudakz 3:5b17e4656dd0 19 * \author Adam Dunkels <adam@dunkels.com>
hudakz 3:5b17e4656dd0 20 */
hudakz 3:5b17e4656dd0 21 /*
hudakz 3:5b17e4656dd0 22 * Copyright (c) 2001-2003, Adam Dunkels.
hudakz 3:5b17e4656dd0 23 * All rights reserved.
hudakz 3:5b17e4656dd0 24 *
hudakz 3:5b17e4656dd0 25 * Redistribution and use in source and binary forms, with or without
hudakz 3:5b17e4656dd0 26 * modification, are permitted provided that the following conditions
hudakz 3:5b17e4656dd0 27 * are met:
hudakz 3:5b17e4656dd0 28 * 1. Redistributions of source code must retain the above copyright
hudakz 3:5b17e4656dd0 29 * notice, this list of conditions and the following disclaimer.
hudakz 3:5b17e4656dd0 30 * 2. Redistributions in binary form must reproduce the above copyright
hudakz 3:5b17e4656dd0 31 * notice, this list of conditions and the following disclaimer in the
hudakz 3:5b17e4656dd0 32 * documentation and/or other materials provided with the distribution.
hudakz 3:5b17e4656dd0 33 * 3. The name of the author may not be used to endorse or promote
hudakz 3:5b17e4656dd0 34 * products derived from this software without specific prior
hudakz 3:5b17e4656dd0 35 * written permission.
hudakz 3:5b17e4656dd0 36 *
hudakz 3:5b17e4656dd0 37 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
hudakz 3:5b17e4656dd0 38 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
hudakz 3:5b17e4656dd0 39 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
hudakz 3:5b17e4656dd0 40 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
hudakz 3:5b17e4656dd0 41 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
hudakz 3:5b17e4656dd0 42 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
hudakz 3:5b17e4656dd0 43 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
hudakz 3:5b17e4656dd0 44 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
hudakz 3:5b17e4656dd0 45 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
hudakz 3:5b17e4656dd0 46 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
hudakz 3:5b17e4656dd0 47 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
hudakz 3:5b17e4656dd0 48 *
hudakz 3:5b17e4656dd0 49 * This file is part of the uIP TCP/IP stack.
hudakz 3:5b17e4656dd0 50 *
hudakz 3:5b17e4656dd0 51 * $Id: uip.c,v 1.65 2006/06/11 21:46:39 adam Exp $
hudakz 3:5b17e4656dd0 52 *
hudakz 3:5b17e4656dd0 53 */
hudakz 3:5b17e4656dd0 54 /*
hudakz 3:5b17e4656dd0 55 * uIP is a small implementation of the IP, UDP and TCP protocols (as
hudakz 3:5b17e4656dd0 56 * well as some basic ICMP stuff). The implementation couples the IP,
hudakz 3:5b17e4656dd0 57 * UDP, TCP and the application layers very tightly. To keep the size
hudakz 3:5b17e4656dd0 58 * of the compiled code down, this code frequently uses the goto
hudakz 3:5b17e4656dd0 59 * statement. While it would be possible to break the uip_process()
hudakz 3:5b17e4656dd0 60 * function into many smaller functions, this would increase the code
hudakz 3:5b17e4656dd0 61 * size because of the overhead of parameter passing and the fact that
hudakz 3:5b17e4656dd0 62 * the optimier would not be as efficient.
hudakz 3:5b17e4656dd0 63 *
hudakz 3:5b17e4656dd0 64 * The principle is that we have a small buffer, called the uip_buf,
hudakz 3:5b17e4656dd0 65 * in which the device driver puts an incoming packet. The TCP/IP
hudakz 3:5b17e4656dd0 66 * stack parses the headers in the packet, and calls the
hudakz 3:5b17e4656dd0 67 * application. If the remote host has sent data to the application,
hudakz 3:5b17e4656dd0 68 * this data is present in the uip_buf and the application read the
hudakz 3:5b17e4656dd0 69 * data from there. It is up to the application to put this data into
hudakz 3:5b17e4656dd0 70 * a byte stream if needed. The application will not be fed with data
hudakz 3:5b17e4656dd0 71 * that is out of sequence.
hudakz 3:5b17e4656dd0 72 *
hudakz 3:5b17e4656dd0 73 * If the application whishes to send data to the peer, it should put
hudakz 3:5b17e4656dd0 74 * its data into the uip_buf. The uip_appdata pointer points to the
hudakz 3:5b17e4656dd0 75 * first available byte. The TCP/IP stack will calculate the
hudakz 3:5b17e4656dd0 76 * checksums, and fill in the necessary header fields and finally send
hudakz 3:5b17e4656dd0 77 * the packet back to the peer.
hudakz 3:5b17e4656dd0 78 */
hudakz 3:5b17e4656dd0 79 #include "uip.h"
hudakz 3:5b17e4656dd0 80 #include "uipopt.h"
hudakz 3:5b17e4656dd0 81 #include "uip_arch.h"
hudakz 3:5b17e4656dd0 82
hudakz 3:5b17e4656dd0 83 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 84 #include "uip-neighbor.h"
hudakz 3:5b17e4656dd0 85 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 86
hudakz 3:5b17e4656dd0 87 #include <string.h>
hudakz 3:5b17e4656dd0 88
hudakz 3:5b17e4656dd0 89 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 90
hudakz 3:5b17e4656dd0 91 /* Variable definitions. */
hudakz 3:5b17e4656dd0 92 /* The IP address of this host. If it is defined to be fixed (by
hudakz 3:5b17e4656dd0 93 setting UIP_FIXEDADDR to 1 in uipopt.h), the address is set
hudakz 3:5b17e4656dd0 94 here. Otherwise, the address */
hudakz 3:5b17e4656dd0 95 #if UIP_FIXEDADDR > 0
hudakz 3:5b17e4656dd0 96 const uip_ipaddr_t uip_hostaddr = { HTONS((UIP_IPADDR0 << 8) | UIP_IPADDR1), HTONS
hudakz 3:5b17e4656dd0 97 ((UIP_IPADDR2 << 8) | UIP_IPADDR3) };
hudakz 3:5b17e4656dd0 98 const uip_ipaddr_t uip_draddr =
hudakz 3:5b17e4656dd0 99 {
hudakz 3:5b17e4656dd0 100 HTONS((UIP_DRIPADDR0 << 8) | UIP_DRIPADDR1),
hudakz 3:5b17e4656dd0 101 HTONS((UIP_DRIPADDR2 << 8) | UIP_DRIPADDR3)
hudakz 3:5b17e4656dd0 102 };
hudakz 3:5b17e4656dd0 103 const uip_ipaddr_t uip_netmask =
hudakz 3:5b17e4656dd0 104 {
hudakz 3:5b17e4656dd0 105 HTONS((UIP_NETMASK0 << 8) | UIP_NETMASK1),
hudakz 3:5b17e4656dd0 106 HTONS((UIP_NETMASK2 << 8) | UIP_NETMASK3)
hudakz 3:5b17e4656dd0 107 };
hudakz 3:5b17e4656dd0 108 #else
hudakz 3:5b17e4656dd0 109 uip_ipaddr_t uip_hostaddr, uip_draddr, uip_netmask;
hudakz 3:5b17e4656dd0 110 #endif /* UIP_FIXEDADDR */
hudakz 3:5b17e4656dd0 111
hudakz 3:5b17e4656dd0 112 static const uip_ipaddr_t all_ones_addr =
hudakz 3:5b17e4656dd0 113 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 114 { 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff };
hudakz 3:5b17e4656dd0 115 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 116 {
hudakz 3:5b17e4656dd0 117 0xffff, 0xffff
hudakz 3:5b17e4656dd0 118 };
hudakz 3:5b17e4656dd0 119 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 120 static const uip_ipaddr_t all_zeroes_addr =
hudakz 3:5b17e4656dd0 121 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 122 { 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000 };
hudakz 3:5b17e4656dd0 123 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 124 {
hudakz 3:5b17e4656dd0 125 0x0000, 0x0000
hudakz 3:5b17e4656dd0 126 };
hudakz 3:5b17e4656dd0 127 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 128
hudakz 3:5b17e4656dd0 129 #if UIP_FIXEDETHADDR
hudakz 3:5b17e4656dd0 130 const struct uip_eth_addr uip_ethaddr =
hudakz 3:5b17e4656dd0 131 {
hudakz 3:5b17e4656dd0 132 { UIP_ETHADDR0, UIP_ETHADDR1, UIP_ETHADDR2, UIP_ETHADDR3, UIP_ETHADDR4, UIP_ETHADDR5 }
hudakz 3:5b17e4656dd0 133 };
hudakz 3:5b17e4656dd0 134 #else
hudakz 3:5b17e4656dd0 135 struct uip_eth_addr uip_ethaddr = { { 0, 0, 0, 0, 0, 0 } };
hudakz 3:5b17e4656dd0 136 #endif
hudakz 3:5b17e4656dd0 137 #ifndef UIP_CONF_EXTERNAL_BUFFER
hudakz 3:5b17e4656dd0 138 u8_t uip_buf[UIP_BUFSIZE + 2]; /* The packet buffer that contains
hudakz 4:d774541a34da 139 incoming packets. */
hudakz 3:5b17e4656dd0 140 #endif /* UIP_CONF_EXTERNAL_BUFFER */
hudakz 3:5b17e4656dd0 141
hudakz 3:5b17e4656dd0 142 void* uip_appdata; /* The uip_appdata pointer points to
hudakz 4:d774541a34da 143 application data. */
hudakz 3:5b17e4656dd0 144 void* uip_sappdata; /* The uip_appdata pointer points to
hudakz 4:d774541a34da 145 the application data which is to
hudakz 4:d774541a34da 146 be sent. */
hudakz 3:5b17e4656dd0 147 #if UIP_URGDATA > 0
hudakz 3:5b17e4656dd0 148 void* uip_urgdata; /* The uip_urgdata pointer points to
hudakz 4:d774541a34da 149 urgent data (out-of-band data), if
hudakz 4:d774541a34da 150 present. */
hudakz 3:5b17e4656dd0 151 u16_t uip_urglen, uip_surglen;
hudakz 3:5b17e4656dd0 152 #endif /* UIP_URGDATA > 0 */
hudakz 3:5b17e4656dd0 153
hudakz 3:5b17e4656dd0 154 u16_t uip_len, uip_slen;
hudakz 3:5b17e4656dd0 155
hudakz 3:5b17e4656dd0 156 /* The uip_len is either 8 or 16 bits,
hudakz 4:d774541a34da 157 depending on the maximum packet
hudakz 4:d774541a34da 158 size. */
hudakz 3:5b17e4656dd0 159 u8_t uip_flags; /* The uip_flags variable is used for
hudakz 4:d774541a34da 160 communication between the TCP/IP stack
hudakz 4:d774541a34da 161 and the application program. */
hudakz 3:5b17e4656dd0 162 struct uip_conn* uip_conn; /* uip_conn always points to the current
hudakz 4:d774541a34da 163 connection. */
hudakz 3:5b17e4656dd0 164
hudakz 3:5b17e4656dd0 165 struct uip_conn uip_conns[UIP_CONNS];
hudakz 3:5b17e4656dd0 166
hudakz 3:5b17e4656dd0 167 /* The uip_conns array holds all TCP
hudakz 4:d774541a34da 168 connections. */
hudakz 3:5b17e4656dd0 169 u16_t uip_listenports[UIP_LISTENPORTS];
hudakz 3:5b17e4656dd0 170
hudakz 3:5b17e4656dd0 171 /* The uip_listenports list all currently
hudakz 4:d774541a34da 172 listning ports. */
hudakz 3:5b17e4656dd0 173 #if UIP_UDP
hudakz 3:5b17e4656dd0 174 struct uip_udp_conn* uip_udp_conn;
hudakz 3:5b17e4656dd0 175 struct uip_udp_conn uip_udp_conns[UIP_UDP_CONNS];
hudakz 3:5b17e4656dd0 176 #endif /* UIP_UDP */
hudakz 3:5b17e4656dd0 177
hudakz 3:5b17e4656dd0 178 static u16_t ipid; /* Ths ipid variable is an increasing
hudakz 4:d774541a34da 179 number that is used for the IP ID
hudakz 4:d774541a34da 180 field. */
hudakz 3:5b17e4656dd0 181
hudakz 3:5b17e4656dd0 182 /**
hudakz 3:5b17e4656dd0 183 * @brief
hudakz 3:5b17e4656dd0 184 * @note
hudakz 3:5b17e4656dd0 185 * @param
hudakz 3:5b17e4656dd0 186 * @retval
hudakz 3:5b17e4656dd0 187 */
hudakz 4:d774541a34da 188
hudakz 3:5b17e4656dd0 189 void uip_setipid(u16_t id) {
hudakz 3:5b17e4656dd0 190 ipid = id;
hudakz 3:5b17e4656dd0 191 }
hudakz 3:5b17e4656dd0 192
hudakz 3:5b17e4656dd0 193 static u8_t iss[4]; /* The iss variable is used for the TCP
hudakz 4:d774541a34da 194 initial sequence number. */
hudakz 3:5b17e4656dd0 195
hudakz 3:5b17e4656dd0 196 #if UIP_ACTIVE_OPEN
hudakz 3:5b17e4656dd0 197 static u16_t lastport; /* Keeps track of the last port used for
hudakz 4:d774541a34da 198 a new connection. */
hudakz 3:5b17e4656dd0 199 #endif /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 200
hudakz 3:5b17e4656dd0 201 /* Temporary variables. */
hudakz 3:5b17e4656dd0 202
hudakz 3:5b17e4656dd0 203 u8_t uip_acc32[4];
hudakz 3:5b17e4656dd0 204 static u8_t c, opt;
hudakz 3:5b17e4656dd0 205 static u16_t tmp16;
hudakz 3:5b17e4656dd0 206
hudakz 3:5b17e4656dd0 207 /* Structures and definitions. */
hudakz 3:5b17e4656dd0 208
hudakz 3:5b17e4656dd0 209 #define TCP_FIN 0x01
hudakz 3:5b17e4656dd0 210 #define TCP_SYN 0x02
hudakz 3:5b17e4656dd0 211 #define TCP_RST 0x04
hudakz 3:5b17e4656dd0 212 #define TCP_PSH 0x08
hudakz 3:5b17e4656dd0 213 #define TCP_ACK 0x10
hudakz 3:5b17e4656dd0 214 #define TCP_URG 0x20
hudakz 3:5b17e4656dd0 215 #define TCP_CTL 0x3f
hudakz 3:5b17e4656dd0 216
hudakz 3:5b17e4656dd0 217 #define TCP_OPT_END 0 /* End of TCP options list */
hudakz 3:5b17e4656dd0 218
hudakz 3:5b17e4656dd0 219 #define TCP_OPT_NOOP 1 /* "No-operation" TCP option */
hudakz 3:5b17e4656dd0 220
hudakz 3:5b17e4656dd0 221 #define TCP_OPT_MSS 2 /* Maximum segment size TCP option */
hudakz 3:5b17e4656dd0 222
hudakz 3:5b17e4656dd0 223 #define TCP_OPT_MSS_LEN 4 /* Length of TCP MSS option. */
hudakz 3:5b17e4656dd0 224
hudakz 3:5b17e4656dd0 225 #define ICMP_ECHO_REPLY 0
hudakz 3:5b17e4656dd0 226 #define ICMP_ECHO 8
hudakz 3:5b17e4656dd0 227
hudakz 3:5b17e4656dd0 228 #define ICMP6_ECHO_REPLY 129
hudakz 3:5b17e4656dd0 229 #define ICMP6_ECHO 128
hudakz 3:5b17e4656dd0 230 #define ICMP6_NEIGHBOR_SOLICITATION 135
hudakz 3:5b17e4656dd0 231 #define ICMP6_NEIGHBOR_ADVERTISEMENT 136
hudakz 3:5b17e4656dd0 232
hudakz 3:5b17e4656dd0 233 #define ICMP6_FLAG_S (1 << 6)
hudakz 3:5b17e4656dd0 234 #define ICMP6_OPTION_SOURCE_LINK_ADDRESS 1
hudakz 3:5b17e4656dd0 235 #define ICMP6_OPTION_TARGET_LINK_ADDRESS 2
hudakz 3:5b17e4656dd0 236
hudakz 3:5b17e4656dd0 237 /* Macros. */
hudakz 3:5b17e4656dd0 238
hudakz 3:5b17e4656dd0 239 #define BUF ((struct uip_tcpip_hdr*) &uip_buf[UIP_LLH_LEN])
hudakz 3:5b17e4656dd0 240 #define FBUF ((struct uip_tcpip_hdr*) &uip_reassbuf[0])
hudakz 3:5b17e4656dd0 241 #define ICMPBUF ((struct uip_icmpip_hdr*) &uip_buf[UIP_LLH_LEN])
hudakz 3:5b17e4656dd0 242 #define UDPBUF ((struct uip_udpip_hdr*) &uip_buf[UIP_LLH_LEN])
hudakz 3:5b17e4656dd0 243 #if UIP_STATISTICS == 1
hudakz 3:5b17e4656dd0 244 struct uip_stats uip_stat;
hudakz 3:5b17e4656dd0 245 #define UIP_STAT(s) s
hudakz 3:5b17e4656dd0 246 #else
hudakz 3:5b17e4656dd0 247 #define UIP_STAT(s)
hudakz 3:5b17e4656dd0 248 #endif /* UIP_STATISTICS == 1 */
hudakz 3:5b17e4656dd0 249
hudakz 3:5b17e4656dd0 250 #if UIP_LOGGING == 1
hudakz 3:5b17e4656dd0 251 #include <stdio.h>
hudakz 3:5b17e4656dd0 252 void uip_log(char* msg);
hudakz 3:5b17e4656dd0 253 #define UIP_LOG(m) uip_log(m)
hudakz 3:5b17e4656dd0 254 #else
hudakz 3:5b17e4656dd0 255 #define UIP_LOG(m)
hudakz 3:5b17e4656dd0 256 #endif /* UIP_LOGGING == 1 */
hudakz 3:5b17e4656dd0 257
hudakz 3:5b17e4656dd0 258 #if !UIP_ARCH_ADD32
hudakz 3:5b17e4656dd0 259
hudakz 3:5b17e4656dd0 260 /**
hudakz 3:5b17e4656dd0 261 * @brief
hudakz 3:5b17e4656dd0 262 * @note
hudakz 3:5b17e4656dd0 263 * @param
hudakz 3:5b17e4656dd0 264 * @retval
hudakz 3:5b17e4656dd0 265 */
hudakz 3:5b17e4656dd0 266 void uip_add32(u8_t* op32, u16_t op16) {
hudakz 3:5b17e4656dd0 267 uip_acc32[3] = op32[3] + (op16 & 0xff);
hudakz 3:5b17e4656dd0 268 uip_acc32[2] = op32[2] + (op16 >> 8);
hudakz 3:5b17e4656dd0 269 uip_acc32[1] = op32[1];
hudakz 3:5b17e4656dd0 270 uip_acc32[0] = op32[0];
hudakz 3:5b17e4656dd0 271
hudakz 3:5b17e4656dd0 272 if(uip_acc32[2] < (op16 >> 8)) {
hudakz 3:5b17e4656dd0 273 ++uip_acc32[1];
hudakz 3:5b17e4656dd0 274 if(uip_acc32[1] == 0) {
hudakz 3:5b17e4656dd0 275 ++uip_acc32[0];
hudakz 3:5b17e4656dd0 276 }
hudakz 3:5b17e4656dd0 277 }
hudakz 3:5b17e4656dd0 278
hudakz 3:5b17e4656dd0 279 if(uip_acc32[3] < (op16 & 0xff)) {
hudakz 3:5b17e4656dd0 280 ++uip_acc32[2];
hudakz 3:5b17e4656dd0 281 if(uip_acc32[2] == 0) {
hudakz 3:5b17e4656dd0 282 ++uip_acc32[1];
hudakz 3:5b17e4656dd0 283 if(uip_acc32[1] == 0) {
hudakz 3:5b17e4656dd0 284 ++uip_acc32[0];
hudakz 3:5b17e4656dd0 285 }
hudakz 3:5b17e4656dd0 286 }
hudakz 3:5b17e4656dd0 287 }
hudakz 3:5b17e4656dd0 288 }
hudakz 3:5b17e4656dd0 289 #endif /* UIP_ARCH_ADD32 */
hudakz 3:5b17e4656dd0 290
hudakz 3:5b17e4656dd0 291 #if !UIP_ARCH_CHKSUM
hudakz 3:5b17e4656dd0 292
hudakz 3:5b17e4656dd0 293 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 294 static u16_t chksum(u16_t sum, const u8_t* data, u16_t len) {
hudakz 3:5b17e4656dd0 295 u16_t t;
hudakz 3:5b17e4656dd0 296 const u8_t* dataptr;
hudakz 3:5b17e4656dd0 297 const u8_t* last_byte;
hudakz 3:5b17e4656dd0 298
hudakz 3:5b17e4656dd0 299 dataptr = data;
hudakz 3:5b17e4656dd0 300 last_byte = data + len - 1;
hudakz 3:5b17e4656dd0 301
hudakz 3:5b17e4656dd0 302 while(dataptr < last_byte) {
hudakz 3:5b17e4656dd0 303
hudakz 3:5b17e4656dd0 304 /* At least two more bytes */
hudakz 3:5b17e4656dd0 305 t = (dataptr[0] << 8) + dataptr[1];
hudakz 3:5b17e4656dd0 306 sum += t;
hudakz 3:5b17e4656dd0 307 if(sum < t) {
hudakz 3:5b17e4656dd0 308 sum++; /* carry */
hudakz 3:5b17e4656dd0 309 }
hudakz 3:5b17e4656dd0 310
hudakz 3:5b17e4656dd0 311 dataptr += 2;
hudakz 3:5b17e4656dd0 312 }
hudakz 3:5b17e4656dd0 313
hudakz 3:5b17e4656dd0 314 if(dataptr == last_byte) {
hudakz 3:5b17e4656dd0 315 t = (dataptr[0] << 8) + 0;
hudakz 3:5b17e4656dd0 316 sum += t;
hudakz 3:5b17e4656dd0 317 if(sum < t) {
hudakz 3:5b17e4656dd0 318 sum++; /* carry */
hudakz 3:5b17e4656dd0 319 }
hudakz 3:5b17e4656dd0 320 }
hudakz 3:5b17e4656dd0 321
hudakz 3:5b17e4656dd0 322 /* Return sum in host byte order. */
hudakz 3:5b17e4656dd0 323 return sum;
hudakz 3:5b17e4656dd0 324 }
hudakz 3:5b17e4656dd0 325
hudakz 3:5b17e4656dd0 326 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 327 u16_t uip_chksum(u16_t* data, u16_t len) {
hudakz 3:5b17e4656dd0 328 return htons(chksum(0, (u8_t*)data, len));
hudakz 3:5b17e4656dd0 329 }
hudakz 3:5b17e4656dd0 330
hudakz 3:5b17e4656dd0 331 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 332 #ifndef UIP_ARCH_IPCHKSUM
hudakz 3:5b17e4656dd0 333
hudakz 3:5b17e4656dd0 334 /**
hudakz 3:5b17e4656dd0 335 * @brief
hudakz 3:5b17e4656dd0 336 * @note
hudakz 3:5b17e4656dd0 337 * @param
hudakz 3:5b17e4656dd0 338 * @retval
hudakz 3:5b17e4656dd0 339 */
hudakz 3:5b17e4656dd0 340 u16_t uip_ipchksum(void) {
hudakz 3:5b17e4656dd0 341 u16_t sum;
hudakz 3:5b17e4656dd0 342
hudakz 3:5b17e4656dd0 343 sum = chksum(0, &uip_buf[UIP_LLH_LEN], UIP_IPH_LEN);
hudakz 3:5b17e4656dd0 344 DEBUG_PRINTF("uip_ipchksum: sum 0x%04x\n", sum);
hudakz 3:5b17e4656dd0 345 return(sum == 0) ? 0xffff : htons(sum);
hudakz 3:5b17e4656dd0 346 }
hudakz 3:5b17e4656dd0 347 #endif
hudakz 3:5b17e4656dd0 348
hudakz 3:5b17e4656dd0 349 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 350 static u16_t upper_layer_chksum(u8_t proto) {
hudakz 3:5b17e4656dd0 351 u16_t upper_layer_len;
hudakz 3:5b17e4656dd0 352 u16_t sum;
hudakz 3:5b17e4656dd0 353
hudakz 3:5b17e4656dd0 354 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 355 upper_layer_len = (((u16_t) (BUF->len[0]) << 8) + BUF->len[1]);
hudakz 3:5b17e4656dd0 356 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 357 upper_layer_len = (((u16_t) (BUF->len[0]) << 8) + BUF->len[1]) - UIP_IPH_LEN;
hudakz 3:5b17e4656dd0 358 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 359
hudakz 3:5b17e4656dd0 360 /* First sum pseudoheader. */
hudakz 3:5b17e4656dd0 361
hudakz 3:5b17e4656dd0 362 /* IP protocol and length fields. This addition cannot carry. */
hudakz 3:5b17e4656dd0 363 sum = upper_layer_len + proto;
hudakz 3:5b17e4656dd0 364
hudakz 3:5b17e4656dd0 365 /* Sum IP source and destination addresses. */
hudakz 3:5b17e4656dd0 366 sum = chksum(sum, (u8_t*) &BUF->srcipaddr[0], 2 * sizeof(uip_ipaddr_t));
hudakz 3:5b17e4656dd0 367
hudakz 3:5b17e4656dd0 368 /* Sum TCP header and data. */
hudakz 3:5b17e4656dd0 369 sum = chksum(sum, &uip_buf[UIP_IPH_LEN + UIP_LLH_LEN], upper_layer_len);
hudakz 3:5b17e4656dd0 370
hudakz 3:5b17e4656dd0 371 return(sum == 0) ? 0xffff : htons(sum);
hudakz 3:5b17e4656dd0 372 }
hudakz 3:5b17e4656dd0 373
hudakz 3:5b17e4656dd0 374 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 375 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 376
hudakz 3:5b17e4656dd0 377 /**
hudakz 3:5b17e4656dd0 378 * @brief
hudakz 3:5b17e4656dd0 379 * @note
hudakz 3:5b17e4656dd0 380 * @param
hudakz 3:5b17e4656dd0 381 * @retval
hudakz 3:5b17e4656dd0 382 */
hudakz 3:5b17e4656dd0 383 u16_t uip_icmp6chksum(void) {
hudakz 3:5b17e4656dd0 384 return upper_layer_chksum(UIP_PROTO_ICMP6);
hudakz 3:5b17e4656dd0 385 }
hudakz 3:5b17e4656dd0 386 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 387
hudakz 3:5b17e4656dd0 388 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 389 u16_t uip_tcpchksum(void) {
hudakz 3:5b17e4656dd0 390 return upper_layer_chksum(UIP_PROTO_TCP);
hudakz 3:5b17e4656dd0 391 }
hudakz 3:5b17e4656dd0 392
hudakz 3:5b17e4656dd0 393 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 394 #if UIP_UDP_CHECKSUMS
hudakz 3:5b17e4656dd0 395
hudakz 3:5b17e4656dd0 396 /**
hudakz 3:5b17e4656dd0 397 * @brief
hudakz 3:5b17e4656dd0 398 * @note
hudakz 3:5b17e4656dd0 399 * @param
hudakz 3:5b17e4656dd0 400 * @retval
hudakz 3:5b17e4656dd0 401 */
hudakz 3:5b17e4656dd0 402 u16_t uip_udpchksum(void) {
hudakz 3:5b17e4656dd0 403 return upper_layer_chksum(UIP_PROTO_UDP);
hudakz 3:5b17e4656dd0 404 }
hudakz 3:5b17e4656dd0 405 #endif /* UIP_UDP_CHECKSUMS */
hudakz 3:5b17e4656dd0 406 #endif /* UIP_ARCH_CHKSUM */
hudakz 3:5b17e4656dd0 407
hudakz 3:5b17e4656dd0 408 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 409 void uip_init(void) {
hudakz 3:5b17e4656dd0 410 for(c = 0; c < UIP_LISTENPORTS; ++c) {
hudakz 3:5b17e4656dd0 411 uip_listenports[c] = 0;
hudakz 3:5b17e4656dd0 412 }
hudakz 3:5b17e4656dd0 413
hudakz 3:5b17e4656dd0 414 for(c = 0; c < UIP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 415 uip_conns[c].tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 416 }
hudakz 3:5b17e4656dd0 417
hudakz 3:5b17e4656dd0 418 #if UIP_ACTIVE_OPEN
hudakz 3:5b17e4656dd0 419 lastport = 1024;
hudakz 3:5b17e4656dd0 420 #endif /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 421
hudakz 3:5b17e4656dd0 422 #if UIP_UDP
hudakz 3:5b17e4656dd0 423 for(c = 0; c < UIP_UDP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 424 uip_udp_conns[c].lport = 0;
hudakz 3:5b17e4656dd0 425 }
hudakz 3:5b17e4656dd0 426 #endif /* UIP_UDP */
hudakz 3:5b17e4656dd0 427
hudakz 3:5b17e4656dd0 428 /* IPv4 initialization. */
hudakz 3:5b17e4656dd0 429
hudakz 3:5b17e4656dd0 430 #if UIP_FIXEDADDR == 0
hudakz 3:5b17e4656dd0 431 /* uip_hostaddr[0] = uip_hostaddr[1] = 0;*/
hudakz 3:5b17e4656dd0 432 #endif /* UIP_FIXEDADDR */
hudakz 3:5b17e4656dd0 433 }
hudakz 3:5b17e4656dd0 434
hudakz 3:5b17e4656dd0 435 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 436 #if UIP_ACTIVE_OPEN
hudakz 3:5b17e4656dd0 437
hudakz 3:5b17e4656dd0 438 /**
hudakz 3:5b17e4656dd0 439 * @brief
hudakz 3:5b17e4656dd0 440 * @note
hudakz 3:5b17e4656dd0 441 * @param
hudakz 3:5b17e4656dd0 442 * @retval
hudakz 3:5b17e4656dd0 443 */
hudakz 3:5b17e4656dd0 444 struct uip_conn* uip_connect(uip_ipaddr_t* ripaddr, u16_t rport) {
hudakz 3:5b17e4656dd0 445 register struct uip_conn* conn, *cconn;
hudakz 3:5b17e4656dd0 446
hudakz 3:5b17e4656dd0 447 /* Find an unused local port. */
hudakz 3:5b17e4656dd0 448
hudakz 3:5b17e4656dd0 449 again:
hudakz 3:5b17e4656dd0 450 ++lastport;
hudakz 3:5b17e4656dd0 451
hudakz 3:5b17e4656dd0 452 if(lastport >= 32000) {
hudakz 3:5b17e4656dd0 453 lastport = 4096;
hudakz 3:5b17e4656dd0 454 }
hudakz 3:5b17e4656dd0 455
hudakz 3:5b17e4656dd0 456 /* Check if this port is already in use, and if so try to find
hudakz 3:5b17e4656dd0 457 another one. */
hudakz 3:5b17e4656dd0 458 for(c = 0; c < UIP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 459 conn = &uip_conns[c];
hudakz 3:5b17e4656dd0 460 if(conn->tcpstateflags != UIP_CLOSED && conn->lport == htons(lastport)) {
hudakz 3:5b17e4656dd0 461 goto again;
hudakz 3:5b17e4656dd0 462 }
hudakz 3:5b17e4656dd0 463 }
hudakz 3:5b17e4656dd0 464
hudakz 3:5b17e4656dd0 465 conn = 0;
hudakz 3:5b17e4656dd0 466 for(c = 0; c < UIP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 467 cconn = &uip_conns[c];
hudakz 3:5b17e4656dd0 468 if(cconn->tcpstateflags == UIP_CLOSED) {
hudakz 3:5b17e4656dd0 469 conn = cconn;
hudakz 3:5b17e4656dd0 470 break;
hudakz 3:5b17e4656dd0 471 }
hudakz 3:5b17e4656dd0 472
hudakz 3:5b17e4656dd0 473 if(cconn->tcpstateflags == UIP_TIME_WAIT) {
hudakz 3:5b17e4656dd0 474 if(conn == 0 || cconn->timer > conn->timer) {
hudakz 3:5b17e4656dd0 475 conn = cconn;
hudakz 3:5b17e4656dd0 476 }
hudakz 3:5b17e4656dd0 477 }
hudakz 3:5b17e4656dd0 478 }
hudakz 3:5b17e4656dd0 479
hudakz 3:5b17e4656dd0 480 if(conn == 0) {
hudakz 3:5b17e4656dd0 481 return 0;
hudakz 3:5b17e4656dd0 482 }
hudakz 3:5b17e4656dd0 483
hudakz 3:5b17e4656dd0 484 conn->tcpstateflags = UIP_SYN_SENT;
hudakz 3:5b17e4656dd0 485
hudakz 3:5b17e4656dd0 486 conn->snd_nxt[0] = iss[0];
hudakz 3:5b17e4656dd0 487 conn->snd_nxt[1] = iss[1];
hudakz 3:5b17e4656dd0 488 conn->snd_nxt[2] = iss[2];
hudakz 3:5b17e4656dd0 489 conn->snd_nxt[3] = iss[3];
hudakz 3:5b17e4656dd0 490
hudakz 3:5b17e4656dd0 491 conn->initialmss = conn->mss = UIP_TCP_MSS;
hudakz 3:5b17e4656dd0 492
hudakz 3:5b17e4656dd0 493 conn->len = 1; /* TCP length of the SYN is one. */
hudakz 3:5b17e4656dd0 494 conn->nrtx = 0;
hudakz 3:5b17e4656dd0 495 conn->timer = 1; /* Send the SYN next time around. */
hudakz 3:5b17e4656dd0 496 conn->rto = UIP_RTO;
hudakz 3:5b17e4656dd0 497 conn->sa = 0;
hudakz 3:5b17e4656dd0 498 conn->sv = 16; /* Initial value of the RTT variance. */
hudakz 3:5b17e4656dd0 499 conn->lport = htons(lastport);
hudakz 3:5b17e4656dd0 500 conn->rport = rport;
hudakz 3:5b17e4656dd0 501 uip_ipaddr_copy(&conn->ripaddr, ripaddr);
hudakz 3:5b17e4656dd0 502
hudakz 3:5b17e4656dd0 503 return conn;
hudakz 3:5b17e4656dd0 504 }
hudakz 3:5b17e4656dd0 505 #endif /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 506
hudakz 3:5b17e4656dd0 507 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 508
hudakz 3:5b17e4656dd0 509 #if UIP_UDP
hudakz 3:5b17e4656dd0 510
hudakz 3:5b17e4656dd0 511 /**
hudakz 3:5b17e4656dd0 512 * @brief
hudakz 3:5b17e4656dd0 513 * @note
hudakz 3:5b17e4656dd0 514 * @param
hudakz 3:5b17e4656dd0 515 * @retval
hudakz 3:5b17e4656dd0 516 */
hudakz 3:5b17e4656dd0 517 struct uip_udp_conn* uip_udp_new(uip_ipaddr_t* ripaddr, u16_t rport) {
hudakz 3:5b17e4656dd0 518 register struct uip_udp_conn* conn;
hudakz 3:5b17e4656dd0 519
hudakz 3:5b17e4656dd0 520 /* Find an unused local port. */
hudakz 3:5b17e4656dd0 521
hudakz 3:5b17e4656dd0 522 again:
hudakz 3:5b17e4656dd0 523 ++lastport;
hudakz 3:5b17e4656dd0 524
hudakz 3:5b17e4656dd0 525 if(lastport >= 32000) {
hudakz 3:5b17e4656dd0 526 lastport = 4096;
hudakz 3:5b17e4656dd0 527 }
hudakz 3:5b17e4656dd0 528
hudakz 3:5b17e4656dd0 529 for(c = 0; c < UIP_UDP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 530 if(uip_udp_conns[c].lport == htons(lastport)) {
hudakz 3:5b17e4656dd0 531 goto again;
hudakz 3:5b17e4656dd0 532 }
hudakz 3:5b17e4656dd0 533 }
hudakz 3:5b17e4656dd0 534
hudakz 3:5b17e4656dd0 535 conn = 0;
hudakz 3:5b17e4656dd0 536 for(c = 0; c < UIP_UDP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 537 if(uip_udp_conns[c].lport == 0) {
hudakz 3:5b17e4656dd0 538 conn = &uip_udp_conns[c];
hudakz 3:5b17e4656dd0 539 break;
hudakz 3:5b17e4656dd0 540 }
hudakz 3:5b17e4656dd0 541 }
hudakz 3:5b17e4656dd0 542
hudakz 3:5b17e4656dd0 543 if(conn == 0) {
hudakz 3:5b17e4656dd0 544 return 0;
hudakz 3:5b17e4656dd0 545 }
hudakz 3:5b17e4656dd0 546
hudakz 3:5b17e4656dd0 547 conn->lport = HTONS(lastport);
hudakz 3:5b17e4656dd0 548 conn->rport = rport;
hudakz 3:5b17e4656dd0 549 if(ripaddr == NULL) {
hudakz 3:5b17e4656dd0 550 memset(conn->ripaddr, 0, sizeof(uip_ipaddr_t));
hudakz 3:5b17e4656dd0 551 }
hudakz 3:5b17e4656dd0 552 else {
hudakz 3:5b17e4656dd0 553 uip_ipaddr_copy(&conn->ripaddr, ripaddr);
hudakz 3:5b17e4656dd0 554 }
hudakz 3:5b17e4656dd0 555
hudakz 3:5b17e4656dd0 556 conn->ttl = UIP_TTL;
hudakz 3:5b17e4656dd0 557
hudakz 3:5b17e4656dd0 558 return conn;
hudakz 3:5b17e4656dd0 559 }
hudakz 3:5b17e4656dd0 560 #endif /* UIP_UDP */
hudakz 3:5b17e4656dd0 561
hudakz 3:5b17e4656dd0 562 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 563 void uip_unlisten(u16_t port) {
hudakz 3:5b17e4656dd0 564 for(c = 0; c < UIP_LISTENPORTS; ++c) {
hudakz 3:5b17e4656dd0 565 if(uip_listenports[c] == port) {
hudakz 3:5b17e4656dd0 566 uip_listenports[c] = 0;
hudakz 3:5b17e4656dd0 567 return;
hudakz 3:5b17e4656dd0 568 }
hudakz 3:5b17e4656dd0 569 }
hudakz 3:5b17e4656dd0 570 }
hudakz 3:5b17e4656dd0 571
hudakz 3:5b17e4656dd0 572 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 573 void uip_listen(u16_t port) {
hudakz 3:5b17e4656dd0 574 for(c = 0; c < UIP_LISTENPORTS; ++c) {
hudakz 3:5b17e4656dd0 575 if(uip_listenports[c] == 0) {
hudakz 3:5b17e4656dd0 576 uip_listenports[c] = port;
hudakz 3:5b17e4656dd0 577 return;
hudakz 3:5b17e4656dd0 578 }
hudakz 3:5b17e4656dd0 579 }
hudakz 3:5b17e4656dd0 580 }
hudakz 3:5b17e4656dd0 581
hudakz 3:5b17e4656dd0 582 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 583 /* XXX: IP fragment reassembly: not well-tested. */
hudakz 3:5b17e4656dd0 584 #if UIP_REASSEMBLY && !UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 585 #define UIP_REASS_BUFSIZE (UIP_BUFSIZE - UIP_LLH_LEN)
hudakz 3:5b17e4656dd0 586 static u8_t uip_reassbuf[UIP_REASS_BUFSIZE];
hudakz 3:5b17e4656dd0 587 static u8_t uip_reassbitmap[UIP_REASS_BUFSIZE / (8 * 8)];
hudakz 3:5b17e4656dd0 588 static const u8_t bitmap_bits[8] = { 0xff, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x03, 0x01 };
hudakz 3:5b17e4656dd0 589 static u16_t uip_reasslen;
hudakz 3:5b17e4656dd0 590 static u8_t uip_reassflags;
hudakz 3:5b17e4656dd0 591 #define UIP_REASS_FLAG_LASTFRAG 0x01
hudakz 3:5b17e4656dd0 592 static u8_t uip_reasstmr;
hudakz 3:5b17e4656dd0 593
hudakz 3:5b17e4656dd0 594 #define IP_MF 0x20
hudakz 3:5b17e4656dd0 595
hudakz 3:5b17e4656dd0 596 /**
hudakz 3:5b17e4656dd0 597 * @brief
hudakz 3:5b17e4656dd0 598 * @note
hudakz 3:5b17e4656dd0 599 * @param
hudakz 3:5b17e4656dd0 600 * @retval
hudakz 3:5b17e4656dd0 601 */
hudakz 4:d774541a34da 602
hudakz 3:5b17e4656dd0 603 static u8_t uip_reass(void) {
hudakz 3:5b17e4656dd0 604 u16_t offset, len;
hudakz 3:5b17e4656dd0 605 u16_t i;
hudakz 3:5b17e4656dd0 606
hudakz 3:5b17e4656dd0 607 /* If ip_reasstmr is zero, no packet is present in the buffer, so we
hudakz 3:5b17e4656dd0 608 write the IP header of the fragment into the reassembly
hudakz 3:5b17e4656dd0 609 buffer. The timer is updated with the maximum age. */
hudakz 3:5b17e4656dd0 610
hudakz 3:5b17e4656dd0 611 if(uip_reasstmr == 0) {
hudakz 3:5b17e4656dd0 612 memcpy(uip_reassbuf, &BUF->vhl, UIP_IPH_LEN);
hudakz 3:5b17e4656dd0 613 uip_reasstmr = UIP_REASS_MAXAGE;
hudakz 3:5b17e4656dd0 614 uip_reassflags = 0;
hudakz 3:5b17e4656dd0 615
hudakz 3:5b17e4656dd0 616 /* Clear the bitmap. */
hudakz 3:5b17e4656dd0 617 memset(uip_reassbitmap, 0, sizeof(uip_reassbitmap));
hudakz 3:5b17e4656dd0 618 }
hudakz 3:5b17e4656dd0 619
hudakz 3:5b17e4656dd0 620 /* Check if the incoming fragment matches the one currently present
hudakz 3:5b17e4656dd0 621 in the reasembly buffer. If so, we proceed with copying the
hudakz 3:5b17e4656dd0 622 fragment into the buffer. */
hudakz 3:5b17e4656dd0 623 if
hudakz 3:5b17e4656dd0 624 (
hudakz 3:5b17e4656dd0 625 BUF->srcipaddr[0] == FBUF->srcipaddr[0]
hudakz 3:5b17e4656dd0 626 && BUF->srcipaddr[1] == FBUF->srcipaddr[1]
hudakz 3:5b17e4656dd0 627 && BUF->destipaddr[0] == FBUF->destipaddr[0]
hudakz 3:5b17e4656dd0 628 && BUF->destipaddr[1] == FBUF->destipaddr[1]
hudakz 3:5b17e4656dd0 629 && BUF->ipid[0] == FBUF->ipid[0]
hudakz 3:5b17e4656dd0 630 && BUF->ipid[1] == FBUF->ipid[1]
hudakz 3:5b17e4656dd0 631 ) {
hudakz 3:5b17e4656dd0 632 len = (BUF->len[0] << 8) + BUF->len[1] - (BUF->vhl & 0x0f) * 4;
hudakz 3:5b17e4656dd0 633 offset = (((BUF->ipoffset[0] & 0x3f) << 8) + BUF->ipoffset[1]) * 8;
hudakz 3:5b17e4656dd0 634
hudakz 3:5b17e4656dd0 635 /* If the offset or the offset + fragment length overflows the
hudakz 3:5b17e4656dd0 636 reassembly buffer, we discard the entire packet. */
hudakz 3:5b17e4656dd0 637 if(offset > UIP_REASS_BUFSIZE || offset + len > UIP_REASS_BUFSIZE) {
hudakz 3:5b17e4656dd0 638 uip_reasstmr = 0;
hudakz 3:5b17e4656dd0 639 goto nullreturn;
hudakz 3:5b17e4656dd0 640 }
hudakz 3:5b17e4656dd0 641
hudakz 3:5b17e4656dd0 642 /* Copy the fragment into the reassembly buffer, at the right
hudakz 3:5b17e4656dd0 643 offset. */
hudakz 3:5b17e4656dd0 644 memcpy(&uip_reassbuf[UIP_IPH_LEN + offset], (char*)BUF + (int)((BUF->vhl & 0x0f) * 4), len);
hudakz 3:5b17e4656dd0 645
hudakz 3:5b17e4656dd0 646 /* Update the bitmap. */
hudakz 3:5b17e4656dd0 647 if(offset / (8 * 8) == (offset + len) / (8 * 8)) {
hudakz 3:5b17e4656dd0 648
hudakz 3:5b17e4656dd0 649 /* If the two endpoints are in the same byte, we only update
hudakz 4:d774541a34da 650 that byte. */
hudakz 3:5b17e4656dd0 651 uip_reassbitmap[offset / (8 * 8)] |= bitmap_bits[(offset / 8) & 7] &~bitmap_bits[((offset + len) / 8) & 7];
hudakz 3:5b17e4656dd0 652 }
hudakz 3:5b17e4656dd0 653 else {
hudakz 3:5b17e4656dd0 654
hudakz 3:5b17e4656dd0 655 /* If the two endpoints are in different bytes, we update the
hudakz 4:d774541a34da 656 bytes in the endpoints and fill the stuff inbetween with
hudakz 4:d774541a34da 657 0xff. */
hudakz 3:5b17e4656dd0 658 uip_reassbitmap[offset / (8 * 8)] |= bitmap_bits[(offset / 8) & 7];
hudakz 3:5b17e4656dd0 659 for(i = 1 + offset / (8 * 8); i < (offset + len) / (8 * 8); ++i) {
hudakz 3:5b17e4656dd0 660 uip_reassbitmap[i] = 0xff;
hudakz 3:5b17e4656dd0 661 }
hudakz 3:5b17e4656dd0 662
hudakz 3:5b17e4656dd0 663 uip_reassbitmap[(offset + len) / (8 * 8)] |= ~bitmap_bits[((offset + len) / 8) & 7];
hudakz 3:5b17e4656dd0 664 }
hudakz 3:5b17e4656dd0 665
hudakz 3:5b17e4656dd0 666 /* If this fragment has the More Fragments flag set to zero, we
hudakz 3:5b17e4656dd0 667 know that this is the last fragment, so we can calculate the
hudakz 3:5b17e4656dd0 668 size of the entire packet. We also set the
hudakz 3:5b17e4656dd0 669 IP_REASS_FLAG_LASTFRAG flag to indicate that we have received
hudakz 3:5b17e4656dd0 670 the final fragment. */
hudakz 3:5b17e4656dd0 671 if((BUF->ipoffset[0] & IP_MF) == 0) {
hudakz 3:5b17e4656dd0 672 uip_reassflags |= UIP_REASS_FLAG_LASTFRAG;
hudakz 3:5b17e4656dd0 673 uip_reasslen = offset + len;
hudakz 3:5b17e4656dd0 674 }
hudakz 3:5b17e4656dd0 675
hudakz 3:5b17e4656dd0 676 /* Finally, we check if we have a full packet in the buffer. We do
hudakz 3:5b17e4656dd0 677 this by checking if we have the last fragment and if all bits
hudakz 3:5b17e4656dd0 678 in the bitmap are set. */
hudakz 3:5b17e4656dd0 679 if(uip_reassflags & UIP_REASS_FLAG_LASTFRAG) {
hudakz 3:5b17e4656dd0 680
hudakz 3:5b17e4656dd0 681 /* Check all bytes up to and including all but the last byte in
hudakz 4:d774541a34da 682 the bitmap. */
hudakz 3:5b17e4656dd0 683 for(i = 0; i < uip_reasslen / (8 * 8) - 1; ++i) {
hudakz 3:5b17e4656dd0 684 if(uip_reassbitmap[i] != 0xff) {
hudakz 3:5b17e4656dd0 685 goto nullreturn;
hudakz 3:5b17e4656dd0 686 }
hudakz 3:5b17e4656dd0 687 }
hudakz 3:5b17e4656dd0 688
hudakz 3:5b17e4656dd0 689 /* Check the last byte in the bitmap. It should contain just the
hudakz 4:d774541a34da 690 right amount of bits. */
hudakz 3:5b17e4656dd0 691 if(uip_reassbitmap[uip_reasslen / (8 * 8)] != (u8_t)~bitmap_bits[uip_reasslen / 8 & 7]) {
hudakz 3:5b17e4656dd0 692 goto nullreturn;
hudakz 3:5b17e4656dd0 693 }
hudakz 3:5b17e4656dd0 694
hudakz 3:5b17e4656dd0 695 /* If we have come this far, we have a full packet in the
hudakz 4:d774541a34da 696 buffer, so we allocate a pbuf and copy the packet into it. We
hudakz 4:d774541a34da 697 also reset the timer. */
hudakz 3:5b17e4656dd0 698 uip_reasstmr = 0;
hudakz 3:5b17e4656dd0 699 memcpy(BUF, FBUF, uip_reasslen);
hudakz 3:5b17e4656dd0 700
hudakz 3:5b17e4656dd0 701 /* Pretend to be a "normal" (i.e., not fragmented) IP packet
hudakz 4:d774541a34da 702 from now on. */
hudakz 3:5b17e4656dd0 703 BUF->ipoffset[0] = BUF->ipoffset[1] = 0;
hudakz 3:5b17e4656dd0 704 BUF->len[0] = uip_reasslen >> 8;
hudakz 3:5b17e4656dd0 705 BUF->len[1] = uip_reasslen & 0xff;
hudakz 3:5b17e4656dd0 706 BUF->ipchksum = 0;
hudakz 3:5b17e4656dd0 707 BUF->ipchksum = ~(uip_ipchksum());
hudakz 3:5b17e4656dd0 708
hudakz 3:5b17e4656dd0 709 return uip_reasslen;
hudakz 3:5b17e4656dd0 710 }
hudakz 3:5b17e4656dd0 711 }
hudakz 3:5b17e4656dd0 712
hudakz 3:5b17e4656dd0 713 nullreturn:
hudakz 3:5b17e4656dd0 714 return 0;
hudakz 3:5b17e4656dd0 715 }
hudakz 3:5b17e4656dd0 716 #endif /* UIP_REASSEMBLY */
hudakz 3:5b17e4656dd0 717
hudakz 3:5b17e4656dd0 718 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 719 static void uip_add_rcv_nxt(u16_t n) {
hudakz 3:5b17e4656dd0 720 uip_add32(uip_conn->rcv_nxt, n);
hudakz 3:5b17e4656dd0 721 uip_conn->rcv_nxt[0] = uip_acc32[0];
hudakz 3:5b17e4656dd0 722 uip_conn->rcv_nxt[1] = uip_acc32[1];
hudakz 3:5b17e4656dd0 723 uip_conn->rcv_nxt[2] = uip_acc32[2];
hudakz 3:5b17e4656dd0 724 uip_conn->rcv_nxt[3] = uip_acc32[3];
hudakz 3:5b17e4656dd0 725 }
hudakz 3:5b17e4656dd0 726
hudakz 3:5b17e4656dd0 727 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 728 void uip_process(u8_t flag) {
hudakz 3:5b17e4656dd0 729 register struct uip_conn* uip_connr = uip_conn;
hudakz 3:5b17e4656dd0 730
hudakz 3:5b17e4656dd0 731 #if UIP_UDP
hudakz 3:5b17e4656dd0 732 if(flag == UIP_UDP_SEND_CONN) {
hudakz 3:5b17e4656dd0 733 goto udp_send;
hudakz 3:5b17e4656dd0 734 }
hudakz 3:5b17e4656dd0 735 #endif /* UIP_UDP */
hudakz 3:5b17e4656dd0 736
hudakz 3:5b17e4656dd0 737 uip_sappdata = uip_appdata = &uip_buf[UIP_IPTCPH_LEN + UIP_LLH_LEN];
hudakz 3:5b17e4656dd0 738
hudakz 3:5b17e4656dd0 739 /* Check if we were invoked because of a poll request for a
hudakz 3:5b17e4656dd0 740 particular connection. */
hudakz 3:5b17e4656dd0 741 if(flag == UIP_POLL_REQUEST) {
hudakz 3:5b17e4656dd0 742 if((uip_connr->tcpstateflags & UIP_TS_MASK) == UIP_ESTABLISHED && !uip_outstanding(uip_connr)) {
hudakz 3:5b17e4656dd0 743 uip_flags = UIP_POLL;
hudakz 3:5b17e4656dd0 744 UIP_APPCALL();
hudakz 3:5b17e4656dd0 745 goto appsend;
hudakz 3:5b17e4656dd0 746 }
hudakz 3:5b17e4656dd0 747
hudakz 3:5b17e4656dd0 748 goto drop;
hudakz 3:5b17e4656dd0 749
hudakz 3:5b17e4656dd0 750 /* Check if we were invoked because of the perodic timer fireing. */
hudakz 3:5b17e4656dd0 751 }
hudakz 3:5b17e4656dd0 752 else
hudakz 3:5b17e4656dd0 753 if(flag == UIP_TIMER)
hudakz 3:5b17e4656dd0 754 {
hudakz 3:5b17e4656dd0 755 #if UIP_REASSEMBLY
hudakz 3:5b17e4656dd0 756 if(uip_reasstmr != 0) {
hudakz 3:5b17e4656dd0 757 --uip_reasstmr;
hudakz 3:5b17e4656dd0 758 }
hudakz 3:5b17e4656dd0 759 #endif /* UIP_REASSEMBLY */
hudakz 3:5b17e4656dd0 760
hudakz 3:5b17e4656dd0 761 /* Increase the initial sequence number. */
hudakz 3:5b17e4656dd0 762
hudakz 3:5b17e4656dd0 763 if(++iss[3] == 0) {
hudakz 3:5b17e4656dd0 764 if(++iss[2] == 0) {
hudakz 3:5b17e4656dd0 765 if(++iss[1] == 0) {
hudakz 3:5b17e4656dd0 766 ++iss[0];
hudakz 3:5b17e4656dd0 767 }
hudakz 3:5b17e4656dd0 768 }
hudakz 3:5b17e4656dd0 769 }
hudakz 3:5b17e4656dd0 770
hudakz 3:5b17e4656dd0 771 /* Reset the length variables. */
hudakz 3:5b17e4656dd0 772 uip_len = 0;
hudakz 3:5b17e4656dd0 773 uip_slen = 0;
hudakz 3:5b17e4656dd0 774
hudakz 3:5b17e4656dd0 775 /* Check if the connection is in a state in which we simply wait
hudakz 3:5b17e4656dd0 776 for the connection to time out. If so, we increase the
hudakz 3:5b17e4656dd0 777 connection's timer and remove the connection if it times
hudakz 3:5b17e4656dd0 778 out. */
hudakz 3:5b17e4656dd0 779 if(uip_connr->tcpstateflags == UIP_TIME_WAIT || uip_connr->tcpstateflags == UIP_FIN_WAIT_2) {
hudakz 3:5b17e4656dd0 780 ++(uip_connr->timer);
hudakz 3:5b17e4656dd0 781 if(uip_connr->timer == UIP_TIME_WAIT_TIMEOUT) {
hudakz 3:5b17e4656dd0 782 uip_connr->tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 783 }
hudakz 3:5b17e4656dd0 784 }
hudakz 3:5b17e4656dd0 785 else
hudakz 3:5b17e4656dd0 786 if(uip_connr->tcpstateflags != UIP_CLOSED) {
hudakz 3:5b17e4656dd0 787
hudakz 3:5b17e4656dd0 788 /* If the connection has outstanding data, we increase the
hudakz 4:d774541a34da 789 connection's timer and see if it has reached the RTO value
hudakz 4:d774541a34da 790 in which case we retransmit. */
hudakz 3:5b17e4656dd0 791 if(uip_outstanding(uip_connr)) {
hudakz 3:5b17e4656dd0 792 if(uip_connr->timer-- == 0) {
hudakz 3:5b17e4656dd0 793 if
hudakz 3:5b17e4656dd0 794 (
hudakz 3:5b17e4656dd0 795 uip_connr->nrtx == UIP_MAXRTX
hudakz 3:5b17e4656dd0 796 || (
hudakz 3:5b17e4656dd0 797 (uip_connr->tcpstateflags == UIP_SYN_SENT || uip_connr->tcpstateflags == UIP_SYN_RCVD)
hudakz 3:5b17e4656dd0 798 && uip_connr->nrtx == UIP_MAXSYNRTX
hudakz 3:5b17e4656dd0 799 )
hudakz 3:5b17e4656dd0 800 ) {
hudakz 3:5b17e4656dd0 801 uip_connr->tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 802
hudakz 3:5b17e4656dd0 803 /* We call UIP_APPCALL() with uip_flags set to
hudakz 4:d774541a34da 804 UIP_TIMEDOUT to inform the application that the
hudakz 4:d774541a34da 805 connection has timed out. */
hudakz 3:5b17e4656dd0 806 uip_flags = UIP_TIMEDOUT;
hudakz 3:5b17e4656dd0 807 UIP_APPCALL();
hudakz 3:5b17e4656dd0 808
hudakz 3:5b17e4656dd0 809 /* We also send a reset packet to the remote host. */
hudakz 3:5b17e4656dd0 810 BUF->flags = TCP_RST | TCP_ACK;
hudakz 3:5b17e4656dd0 811 goto tcp_send_nodata;
hudakz 3:5b17e4656dd0 812 }
hudakz 3:5b17e4656dd0 813
hudakz 3:5b17e4656dd0 814 /* Exponential backoff. */
hudakz 3:5b17e4656dd0 815 uip_connr->timer = UIP_RTO << (uip_connr->nrtx > 4 ? 4 : uip_connr->nrtx);
hudakz 3:5b17e4656dd0 816 ++(uip_connr->nrtx);
hudakz 3:5b17e4656dd0 817
hudakz 3:5b17e4656dd0 818 /* Ok, so we need to retransmit. We do this differently
hudakz 4:d774541a34da 819 depending on which state we are in. In ESTABLISHED, we
hudakz 4:d774541a34da 820 call upon the application so that it may prepare the
hudakz 4:d774541a34da 821 data for the retransmit. In SYN_RCVD, we resend the
hudakz 4:d774541a34da 822 SYNACK that we sent earlier and in LAST_ACK we have to
hudakz 4:d774541a34da 823 retransmit our FINACK. */
hudakz 3:5b17e4656dd0 824 UIP_STAT(++uip_stat.tcp.rexmit);
hudakz 3:5b17e4656dd0 825 switch(uip_connr->tcpstateflags & UIP_TS_MASK) {
hudakz 3:5b17e4656dd0 826 case UIP_SYN_RCVD:
hudakz 3:5b17e4656dd0 827 /* In the SYN_RCVD state, we should retransmit our
hudakz 3:5b17e4656dd0 828 SYNACK. */
hudakz 3:5b17e4656dd0 829 goto tcp_send_synack;
hudakz 3:5b17e4656dd0 830
hudakz 3:5b17e4656dd0 831 #if UIP_ACTIVE_OPEN
hudakz 3:5b17e4656dd0 832
hudakz 3:5b17e4656dd0 833 case UIP_SYN_SENT:
hudakz 3:5b17e4656dd0 834 /* In the SYN_SENT state, we retransmit out SYN. */
hudakz 3:5b17e4656dd0 835 BUF->flags = 0;
hudakz 3:5b17e4656dd0 836 goto tcp_send_syn;
hudakz 3:5b17e4656dd0 837 #endif /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 838
hudakz 3:5b17e4656dd0 839 case UIP_ESTABLISHED:
hudakz 3:5b17e4656dd0 840 /* In the ESTABLISHED state, we call upon the application
hudakz 3:5b17e4656dd0 841 to do the actual retransmit after which we jump into
hudakz 3:5b17e4656dd0 842 the code for sending out the packet (the apprexmit
hudakz 3:5b17e4656dd0 843 label). */
hudakz 3:5b17e4656dd0 844 uip_flags = UIP_REXMIT;
hudakz 3:5b17e4656dd0 845 UIP_APPCALL();
hudakz 3:5b17e4656dd0 846 goto apprexmit;
hudakz 3:5b17e4656dd0 847
hudakz 3:5b17e4656dd0 848 case UIP_FIN_WAIT_1:
hudakz 3:5b17e4656dd0 849 case UIP_CLOSING:
hudakz 3:5b17e4656dd0 850 case UIP_LAST_ACK:
hudakz 3:5b17e4656dd0 851 /* In all these states we should retransmit a FINACK. */
hudakz 3:5b17e4656dd0 852 goto tcp_send_finack;
hudakz 3:5b17e4656dd0 853 }
hudakz 3:5b17e4656dd0 854 }
hudakz 3:5b17e4656dd0 855 }
hudakz 3:5b17e4656dd0 856 else
hudakz 3:5b17e4656dd0 857 if((uip_connr->tcpstateflags & UIP_TS_MASK) == UIP_ESTABLISHED) {
hudakz 3:5b17e4656dd0 858
hudakz 3:5b17e4656dd0 859 /* If there was no need for a retransmission, we poll the
hudakz 3:5b17e4656dd0 860 application for new data. */
hudakz 3:5b17e4656dd0 861 uip_flags = UIP_POLL;
hudakz 3:5b17e4656dd0 862 UIP_APPCALL();
hudakz 3:5b17e4656dd0 863 goto appsend;
hudakz 3:5b17e4656dd0 864 }
hudakz 3:5b17e4656dd0 865 }
hudakz 3:5b17e4656dd0 866
hudakz 3:5b17e4656dd0 867 goto drop;
hudakz 3:5b17e4656dd0 868 }
hudakz 3:5b17e4656dd0 869
hudakz 3:5b17e4656dd0 870 #if UIP_UDP
hudakz 3:5b17e4656dd0 871 if(flag == UIP_UDP_TIMER) {
hudakz 3:5b17e4656dd0 872 if(uip_udp_conn->lport != 0) {
hudakz 3:5b17e4656dd0 873 uip_conn = NULL;
hudakz 3:5b17e4656dd0 874 uip_sappdata = uip_appdata = &uip_buf[UIP_LLH_LEN + UIP_IPUDPH_LEN];
hudakz 3:5b17e4656dd0 875 uip_len = uip_slen = 0;
hudakz 3:5b17e4656dd0 876 uip_flags = UIP_POLL;
hudakz 3:5b17e4656dd0 877 UIP_UDP_APPCALL();
hudakz 3:5b17e4656dd0 878 goto udp_send;
hudakz 3:5b17e4656dd0 879 }
hudakz 3:5b17e4656dd0 880 else {
hudakz 3:5b17e4656dd0 881 goto drop;
hudakz 3:5b17e4656dd0 882 }
hudakz 3:5b17e4656dd0 883 }
hudakz 3:5b17e4656dd0 884 #endif
hudakz 3:5b17e4656dd0 885 /* This is where the input processing starts. */
hudakz 3:5b17e4656dd0 886
hudakz 3:5b17e4656dd0 887 UIP_STAT(++uip_stat.ip.recv);
hudakz 3:5b17e4656dd0 888
hudakz 3:5b17e4656dd0 889 /* Start of IP input header processing code. */
hudakz 3:5b17e4656dd0 890 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 891 /* Check validity of the IP header. */
hudakz 3:5b17e4656dd0 892
hudakz 3:5b17e4656dd0 893 if((BUF->vtc & 0xf0) != 0x60) {
hudakz 3:5b17e4656dd0 894
hudakz 3:5b17e4656dd0 895 /* IP version and header length. */
hudakz 3:5b17e4656dd0 896 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 897 UIP_STAT(++uip_stat.ip.vhlerr);
hudakz 3:5b17e4656dd0 898 UIP_LOG("ipv6: invalid version.");
hudakz 3:5b17e4656dd0 899 goto drop;
hudakz 3:5b17e4656dd0 900 }
hudakz 3:5b17e4656dd0 901
hudakz 3:5b17e4656dd0 902 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 903 /* Check validity of the IP header. */
hudakz 3:5b17e4656dd0 904
hudakz 3:5b17e4656dd0 905 if(BUF->vhl != 0x45) {
hudakz 3:5b17e4656dd0 906
hudakz 3:5b17e4656dd0 907 /* IP version and header length. */
hudakz 3:5b17e4656dd0 908 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 909 UIP_STAT(++uip_stat.ip.vhlerr);
hudakz 3:5b17e4656dd0 910 UIP_LOG("ip: invalid version or header length.");
hudakz 3:5b17e4656dd0 911 goto drop;
hudakz 3:5b17e4656dd0 912 }
hudakz 3:5b17e4656dd0 913 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 914
hudakz 3:5b17e4656dd0 915 /* Check the size of the packet. If the size reported to us in
hudakz 3:5b17e4656dd0 916 uip_len is smaller the size reported in the IP header, we assume
hudakz 3:5b17e4656dd0 917 that the packet has been corrupted in transit. If the size of
hudakz 3:5b17e4656dd0 918 uip_len is larger than the size reported in the IP packet header,
hudakz 3:5b17e4656dd0 919 the packet has been padded and we set uip_len to the correct
hudakz 3:5b17e4656dd0 920 value.. */
hudakz 3:5b17e4656dd0 921
hudakz 3:5b17e4656dd0 922 if((BUF->len[0] << 8) + BUF->len[1] <= uip_len) {
hudakz 3:5b17e4656dd0 923 uip_len = (BUF->len[0] << 8) + BUF->len[1];
hudakz 3:5b17e4656dd0 924 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 925 uip_len += 40; /* The length reported in the IPv6 header is the
hudakz 4:d774541a34da 926 length of the payload that follows the
hudakz 4:d774541a34da 927 header. However, uIP uses the uip_len variable
hudakz 4:d774541a34da 928 for holding the size of the entire packet,
hudakz 4:d774541a34da 929 including the IP header. For IPv4 this is not a
hudakz 4:d774541a34da 930 problem as the length field in the IPv4 header
hudakz 4:d774541a34da 931 contains the length of the entire packet. But
hudakz 4:d774541a34da 932 for IPv6 we need to add the size of the IPv6
hudakz 4:d774541a34da 933 header (40 bytes). */
hudakz 3:5b17e4656dd0 934 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 935 }
hudakz 3:5b17e4656dd0 936 else {
hudakz 3:5b17e4656dd0 937 UIP_LOG("ip: packet shorter than reported in IP header.");
hudakz 3:5b17e4656dd0 938 goto drop;
hudakz 3:5b17e4656dd0 939 }
hudakz 3:5b17e4656dd0 940
hudakz 3:5b17e4656dd0 941 #if !UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 942 /* Check the fragment flag. */
hudakz 3:5b17e4656dd0 943
hudakz 3:5b17e4656dd0 944 if((BUF->ipoffset[0] & 0x3f) != 0 || BUF->ipoffset[1] != 0)
hudakz 3:5b17e4656dd0 945 {
hudakz 3:5b17e4656dd0 946 #if UIP_REASSEMBLY
hudakz 3:5b17e4656dd0 947 uip_len = uip_reass();
hudakz 3:5b17e4656dd0 948 if(uip_len == 0) {
hudakz 3:5b17e4656dd0 949 goto drop;
hudakz 3:5b17e4656dd0 950 }
hudakz 3:5b17e4656dd0 951
hudakz 3:5b17e4656dd0 952 #else /* UIP_REASSEMBLY */
hudakz 3:5b17e4656dd0 953 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 954 UIP_STAT(++uip_stat.ip.fragerr);
hudakz 3:5b17e4656dd0 955 UIP_LOG("ip: fragment dropped.");
hudakz 3:5b17e4656dd0 956 goto drop;
hudakz 3:5b17e4656dd0 957 #endif /* UIP_REASSEMBLY */
hudakz 3:5b17e4656dd0 958 }
hudakz 3:5b17e4656dd0 959 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 960
hudakz 3:5b17e4656dd0 961 if(uip_ipaddr_cmp(uip_hostaddr, all_zeroes_addr))
hudakz 3:5b17e4656dd0 962 {
hudakz 3:5b17e4656dd0 963 /* If we are configured to use ping IP address configuration and
hudakz 3:5b17e4656dd0 964 hasn't been assigned an IP address yet, we accept all ICMP
hudakz 3:5b17e4656dd0 965 packets. */
hudakz 3:5b17e4656dd0 966 #if UIP_PINGADDRCONF && !UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 967 if(BUF->proto == UIP_PROTO_ICMP) {
hudakz 3:5b17e4656dd0 968 UIP_LOG("ip: possible ping config packet received.");
hudakz 3:5b17e4656dd0 969 goto icmp_input;
hudakz 3:5b17e4656dd0 970 }
hudakz 3:5b17e4656dd0 971 else {
hudakz 3:5b17e4656dd0 972 UIP_LOG("ip: packet dropped since no address assigned.");
hudakz 3:5b17e4656dd0 973 goto drop;
hudakz 3:5b17e4656dd0 974 }
hudakz 3:5b17e4656dd0 975 #endif /* UIP_PINGADDRCONF */
hudakz 3:5b17e4656dd0 976 }
hudakz 3:5b17e4656dd0 977 else
hudakz 3:5b17e4656dd0 978 {
hudakz 3:5b17e4656dd0 979 /* If IP broadcast support is configured, we check for a broadcast
hudakz 3:5b17e4656dd0 980 UDP packet, which may be destined to us. */
hudakz 3:5b17e4656dd0 981 #if UIP_BROADCAST
hudakz 3:5b17e4656dd0 982 DEBUG_PRINTF("UDP IP checksum 0x%04x\n", uip_ipchksum());
hudakz 3:5b17e4656dd0 983 if
hudakz 3:5b17e4656dd0 984 (
hudakz 3:5b17e4656dd0 985 BUF->proto == UIP_PROTO_UDP
hudakz 3:5b17e4656dd0 986 && uip_ipaddr_cmp(BUF->destipaddr, all_ones_addr) /*&&
hudakz 4:d774541a34da 987 uip_ipchksum() == 0xffff*/
hudakz 3:5b17e4656dd0 988 ) {
hudakz 3:5b17e4656dd0 989 goto udp_input;
hudakz 3:5b17e4656dd0 990 }
hudakz 3:5b17e4656dd0 991 #endif /* UIP_BROADCAST */
hudakz 3:5b17e4656dd0 992
hudakz 3:5b17e4656dd0 993 /* Check if the packet is destined for our IP address. */
hudakz 3:5b17e4656dd0 994
hudakz 3:5b17e4656dd0 995 #if !UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 996 if(!uip_ipaddr_cmp(BUF->destipaddr, uip_hostaddr)) {
hudakz 3:5b17e4656dd0 997 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 998 goto drop;
hudakz 3:5b17e4656dd0 999 }
hudakz 3:5b17e4656dd0 1000
hudakz 3:5b17e4656dd0 1001 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1002 /* For IPv6, packet reception is a little trickier as we need to
hudakz 3:5b17e4656dd0 1003 make sure that we listen to certain multicast addresses (all
hudakz 3:5b17e4656dd0 1004 hosts multicast address, and the solicited-node multicast
hudakz 3:5b17e4656dd0 1005 address) as well. However, we will cheat here and accept all
hudakz 3:5b17e4656dd0 1006 multicast packets that are sent to the ff02::/16 addresses. */
hudakz 3:5b17e4656dd0 1007
hudakz 3:5b17e4656dd0 1008 if(!uip_ipaddr_cmp(BUF->destipaddr, uip_hostaddr) && BUF->destipaddr[0] != HTONS(0xff02)) {
hudakz 3:5b17e4656dd0 1009 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 1010 goto drop;
hudakz 3:5b17e4656dd0 1011 }
hudakz 3:5b17e4656dd0 1012 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1013 }
hudakz 3:5b17e4656dd0 1014
hudakz 3:5b17e4656dd0 1015 #if !UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 1016 if(uip_ipchksum() != 0xffff) {
hudakz 3:5b17e4656dd0 1017
hudakz 3:5b17e4656dd0 1018 /* Compute and check the IP header
hudakz 4:d774541a34da 1019 checksum. */
hudakz 3:5b17e4656dd0 1020 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 1021 UIP_STAT(++uip_stat.ip.chkerr);
hudakz 3:5b17e4656dd0 1022 UIP_LOG("ip: bad checksum.");
hudakz 3:5b17e4656dd0 1023 goto drop;
hudakz 3:5b17e4656dd0 1024 }
hudakz 3:5b17e4656dd0 1025 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1026
hudakz 3:5b17e4656dd0 1027 if(BUF->proto == UIP_PROTO_TCP) {
hudakz 3:5b17e4656dd0 1028
hudakz 3:5b17e4656dd0 1029 /* Check for TCP packet. If so,
hudakz 4:d774541a34da 1030 proceed with TCP input
hudakz 4:d774541a34da 1031 processing. */
hudakz 3:5b17e4656dd0 1032 goto tcp_input;
hudakz 3:5b17e4656dd0 1033 }
hudakz 3:5b17e4656dd0 1034
hudakz 3:5b17e4656dd0 1035 #if UIP_UDP
hudakz 3:5b17e4656dd0 1036 if(BUF->proto == UIP_PROTO_UDP) {
hudakz 3:5b17e4656dd0 1037 goto udp_input;
hudakz 3:5b17e4656dd0 1038 }
hudakz 3:5b17e4656dd0 1039 #endif /* UIP_UDP */
hudakz 3:5b17e4656dd0 1040
hudakz 3:5b17e4656dd0 1041 #if !UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 1042 /* ICMPv4 processing code follows. */
hudakz 3:5b17e4656dd0 1043
hudakz 3:5b17e4656dd0 1044 if(BUF->proto != UIP_PROTO_ICMP) {
hudakz 3:5b17e4656dd0 1045
hudakz 3:5b17e4656dd0 1046 /* We only allow ICMP packets from
hudakz 4:d774541a34da 1047 here. */
hudakz 3:5b17e4656dd0 1048 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 1049 UIP_STAT(++uip_stat.ip.protoerr);
hudakz 3:5b17e4656dd0 1050 UIP_LOG("ip: neither tcp nor icmp.");
hudakz 3:5b17e4656dd0 1051 goto drop;
hudakz 3:5b17e4656dd0 1052 }
hudakz 3:5b17e4656dd0 1053
hudakz 3:5b17e4656dd0 1054 #if UIP_PINGADDRCONF
hudakz 3:5b17e4656dd0 1055 icmp_input :
hudakz 3:5b17e4656dd0 1056 #endif /* UIP_PINGADDRCONF */
hudakz 3:5b17e4656dd0 1057
hudakz 3:5b17e4656dd0 1058 UIP_STAT(++uip_stat.icmp.recv);
hudakz 3:5b17e4656dd0 1059
hudakz 3:5b17e4656dd0 1060 /* ICMP echo (i.e., ping) processing. This is simple, we only change
hudakz 3:5b17e4656dd0 1061 the ICMP type from ECHO to ECHO_REPLY and adjust the ICMP
hudakz 3:5b17e4656dd0 1062 checksum before we return the packet. */
hudakz 3:5b17e4656dd0 1063 if(ICMPBUF->type != ICMP_ECHO) {
hudakz 3:5b17e4656dd0 1064 UIP_STAT(++uip_stat.icmp.drop);
hudakz 3:5b17e4656dd0 1065 UIP_STAT(++uip_stat.icmp.typeerr);
hudakz 3:5b17e4656dd0 1066 UIP_LOG("icmp: not icmp echo.");
hudakz 3:5b17e4656dd0 1067 goto drop;
hudakz 3:5b17e4656dd0 1068 }
hudakz 3:5b17e4656dd0 1069
hudakz 3:5b17e4656dd0 1070 /* If we are configured to use ping IP address assignment, we use
hudakz 3:5b17e4656dd0 1071 the destination IP address of this ping packet and assign it to
hudakz 3:5b17e4656dd0 1072 ourself. */
hudakz 3:5b17e4656dd0 1073 #if UIP_PINGADDRCONF
hudakz 3:5b17e4656dd0 1074 if((uip_hostaddr[0] | uip_hostaddr[1]) == 0) {
hudakz 3:5b17e4656dd0 1075 uip_hostaddr[0] = BUF->destipaddr[0];
hudakz 3:5b17e4656dd0 1076 uip_hostaddr[1] = BUF->destipaddr[1];
hudakz 3:5b17e4656dd0 1077 }
hudakz 3:5b17e4656dd0 1078 #endif /* UIP_PINGADDRCONF */
hudakz 3:5b17e4656dd0 1079
hudakz 3:5b17e4656dd0 1080 ICMPBUF->type = ICMP_ECHO_REPLY;
hudakz 3:5b17e4656dd0 1081
hudakz 3:5b17e4656dd0 1082 if(ICMPBUF->icmpchksum >= HTONS(0xffff - (ICMP_ECHO << 8))) {
hudakz 3:5b17e4656dd0 1083 ICMPBUF->icmpchksum += HTONS(ICMP_ECHO << 8) + 1;
hudakz 3:5b17e4656dd0 1084 }
hudakz 3:5b17e4656dd0 1085 else {
hudakz 3:5b17e4656dd0 1086 ICMPBUF->icmpchksum += HTONS(ICMP_ECHO << 8);
hudakz 3:5b17e4656dd0 1087 }
hudakz 3:5b17e4656dd0 1088
hudakz 3:5b17e4656dd0 1089 /* Swap IP addresses. */
hudakz 3:5b17e4656dd0 1090 uip_ipaddr_copy(BUF->destipaddr, BUF->srcipaddr);
hudakz 3:5b17e4656dd0 1091 uip_ipaddr_copy(BUF->srcipaddr, uip_hostaddr);
hudakz 3:5b17e4656dd0 1092
hudakz 3:5b17e4656dd0 1093 UIP_STAT(++uip_stat.icmp.sent);
hudakz 3:5b17e4656dd0 1094 goto send;
hudakz 3:5b17e4656dd0 1095
hudakz 3:5b17e4656dd0 1096 /* End of IPv4 input header processing code. */
hudakz 3:5b17e4656dd0 1097 #else /* !UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1098 /* This is IPv6 ICMPv6 processing code. */
hudakz 3:5b17e4656dd0 1099
hudakz 3:5b17e4656dd0 1100 DEBUG_PRINTF("icmp6_input: length %d\n", uip_len);
hudakz 3:5b17e4656dd0 1101
hudakz 3:5b17e4656dd0 1102 if(BUF->proto != UIP_PROTO_ICMP6) {
hudakz 3:5b17e4656dd0 1103
hudakz 3:5b17e4656dd0 1104 /* We only allow ICMPv6 packets from
hudakz 4:d774541a34da 1105 here. */
hudakz 3:5b17e4656dd0 1106 UIP_STAT(++uip_stat.ip.drop);
hudakz 3:5b17e4656dd0 1107 UIP_STAT(++uip_stat.ip.protoerr);
hudakz 3:5b17e4656dd0 1108 UIP_LOG("ip: neither tcp nor icmp6.");
hudakz 3:5b17e4656dd0 1109 goto drop;
hudakz 3:5b17e4656dd0 1110 }
hudakz 3:5b17e4656dd0 1111
hudakz 3:5b17e4656dd0 1112 UIP_STAT(++uip_stat.icmp.recv);
hudakz 3:5b17e4656dd0 1113
hudakz 3:5b17e4656dd0 1114 /* If we get a neighbor solicitation for our address we should send
hudakz 3:5b17e4656dd0 1115 a neighbor advertisement message back. */
hudakz 3:5b17e4656dd0 1116 if(ICMPBUF->type == ICMP6_NEIGHBOR_SOLICITATION) {
hudakz 3:5b17e4656dd0 1117 if(uip_ipaddr_cmp(ICMPBUF->icmp6data, uip_hostaddr)) {
hudakz 3:5b17e4656dd0 1118 if(ICMPBUF->options[0] == ICMP6_OPTION_SOURCE_LINK_ADDRESS) {
hudakz 3:5b17e4656dd0 1119
hudakz 3:5b17e4656dd0 1120 /* Save the sender's address in our neighbor list. */
hudakz 3:5b17e4656dd0 1121 uip_neighbor_add(ICMPBUF->srcipaddr, &(ICMPBUF->options[2]));
hudakz 3:5b17e4656dd0 1122 }
hudakz 3:5b17e4656dd0 1123
hudakz 3:5b17e4656dd0 1124 /* We should now send a neighbor advertisement back to where the
hudakz 4:d774541a34da 1125 neighbor solicication came from. */
hudakz 3:5b17e4656dd0 1126 ICMPBUF->type = ICMP6_NEIGHBOR_ADVERTISEMENT;
hudakz 3:5b17e4656dd0 1127 ICMPBUF->flags = ICMP6_FLAG_S; /* Solicited flag. */
hudakz 3:5b17e4656dd0 1128
hudakz 3:5b17e4656dd0 1129 ICMPBUF->reserved1 = ICMPBUF->reserved2 = ICMPBUF->reserved3 = 0;
hudakz 3:5b17e4656dd0 1130
hudakz 3:5b17e4656dd0 1131 uip_ipaddr_copy(ICMPBUF->destipaddr, ICMPBUF->srcipaddr);
hudakz 3:5b17e4656dd0 1132 uip_ipaddr_copy(ICMPBUF->srcipaddr, uip_hostaddr);
hudakz 3:5b17e4656dd0 1133 ICMPBUF->options[0] = ICMP6_OPTION_TARGET_LINK_ADDRESS;
hudakz 3:5b17e4656dd0 1134 ICMPBUF->options[1] = 1; /* Options length, 1 = 8 bytes. */
hudakz 3:5b17e4656dd0 1135 memcpy(&(ICMPBUF->options[2]), &uip_ethaddr, sizeof(uip_ethaddr));
hudakz 3:5b17e4656dd0 1136 ICMPBUF->icmpchksum = 0;
hudakz 3:5b17e4656dd0 1137 ICMPBUF->icmpchksum = ~uip_icmp6chksum();
hudakz 3:5b17e4656dd0 1138 goto send;
hudakz 3:5b17e4656dd0 1139 }
hudakz 3:5b17e4656dd0 1140
hudakz 3:5b17e4656dd0 1141 goto drop;
hudakz 3:5b17e4656dd0 1142 }
hudakz 3:5b17e4656dd0 1143 else
hudakz 3:5b17e4656dd0 1144 if(ICMPBUF->type == ICMP6_ECHO) {
hudakz 3:5b17e4656dd0 1145
hudakz 3:5b17e4656dd0 1146 /* ICMP echo (i.e., ping) processing. This is simple, we only
hudakz 3:5b17e4656dd0 1147 change the ICMP type from ECHO to ECHO_REPLY and update the
hudakz 3:5b17e4656dd0 1148 ICMP checksum before we return the packet. */
hudakz 3:5b17e4656dd0 1149 ICMPBUF->type = ICMP6_ECHO_REPLY;
hudakz 3:5b17e4656dd0 1150
hudakz 3:5b17e4656dd0 1151 uip_ipaddr_copy(BUF->destipaddr, BUF->srcipaddr);
hudakz 3:5b17e4656dd0 1152 uip_ipaddr_copy(BUF->srcipaddr, uip_hostaddr);
hudakz 3:5b17e4656dd0 1153 ICMPBUF->icmpchksum = 0;
hudakz 3:5b17e4656dd0 1154 ICMPBUF->icmpchksum = ~uip_icmp6chksum();
hudakz 3:5b17e4656dd0 1155
hudakz 3:5b17e4656dd0 1156 UIP_STAT(++uip_stat.icmp.sent);
hudakz 3:5b17e4656dd0 1157 goto send;
hudakz 3:5b17e4656dd0 1158 }
hudakz 3:5b17e4656dd0 1159 else {
hudakz 3:5b17e4656dd0 1160 DEBUG_PRINTF("Unknown icmp6 message type %d\n", ICMPBUF->type);
hudakz 3:5b17e4656dd0 1161 UIP_STAT(++uip_stat.icmp.drop);
hudakz 3:5b17e4656dd0 1162 UIP_STAT(++uip_stat.icmp.typeerr);
hudakz 3:5b17e4656dd0 1163 UIP_LOG("icmp: unknown ICMP message.");
hudakz 3:5b17e4656dd0 1164 goto drop;
hudakz 3:5b17e4656dd0 1165 }
hudakz 3:5b17e4656dd0 1166
hudakz 3:5b17e4656dd0 1167 /* End of IPv6 ICMP processing. */
hudakz 3:5b17e4656dd0 1168 #endif /* !UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1169
hudakz 3:5b17e4656dd0 1170 #if UIP_UDP
hudakz 3:5b17e4656dd0 1171 /* UDP input processing. */
hudakz 3:5b17e4656dd0 1172
hudakz 3:5b17e4656dd0 1173 udp_input :
hudakz 3:5b17e4656dd0 1174 /* UDP processing is really just a hack. We don't do anything to the
hudakz 3:5b17e4656dd0 1175 UDP/IP headers, but let the UDP application do all the hard
hudakz 3:5b17e4656dd0 1176 work. If the application sets uip_slen, it has a packet to
hudakz 3:5b17e4656dd0 1177 send. */
hudakz 3:5b17e4656dd0 1178 #if UIP_UDP_CHECKSUMS
hudakz 3:5b17e4656dd0 1179 uip_len = uip_len - UIP_IPUDPH_LEN;
hudakz 3:5b17e4656dd0 1180 uip_appdata = &uip_buf[UIP_LLH_LEN + UIP_IPUDPH_LEN];
hudakz 3:5b17e4656dd0 1181 if(UDPBUF->udpchksum != 0 && uip_udpchksum() != 0xffff) {
hudakz 3:5b17e4656dd0 1182 UIP_STAT(++uip_stat.udp.drop);
hudakz 3:5b17e4656dd0 1183 UIP_STAT(++uip_stat.udp.chkerr);
hudakz 3:5b17e4656dd0 1184 UIP_LOG("udp: bad checksum.");
hudakz 3:5b17e4656dd0 1185 goto drop;
hudakz 3:5b17e4656dd0 1186 }
hudakz 3:5b17e4656dd0 1187
hudakz 3:5b17e4656dd0 1188 #else /* UIP_UDP_CHECKSUMS */
hudakz 3:5b17e4656dd0 1189 uip_len = uip_len - UIP_IPUDPH_LEN;
hudakz 3:5b17e4656dd0 1190 #endif /* UIP_UDP_CHECKSUMS */
hudakz 3:5b17e4656dd0 1191
hudakz 3:5b17e4656dd0 1192 /* Demultiplex this UDP packet between the UDP "connections". */
hudakz 3:5b17e4656dd0 1193
hudakz 3:5b17e4656dd0 1194 for(uip_udp_conn = &uip_udp_conns[0]; uip_udp_conn < &uip_udp_conns[UIP_UDP_CONNS]; ++uip_udp_conn) {
hudakz 3:5b17e4656dd0 1195
hudakz 3:5b17e4656dd0 1196 /* If the local UDP port is non-zero, the connection is considered
hudakz 3:5b17e4656dd0 1197 to be used. If so, the local port number is checked against the
hudakz 3:5b17e4656dd0 1198 destination port number in the received packet. If the two port
hudakz 3:5b17e4656dd0 1199 numbers match, the remote port number is checked if the
hudakz 3:5b17e4656dd0 1200 connection is bound to a remote port. Finally, if the
hudakz 3:5b17e4656dd0 1201 connection is bound to a remote IP address, the source IP
hudakz 3:5b17e4656dd0 1202 address of the packet is checked. */
hudakz 3:5b17e4656dd0 1203 if
hudakz 3:5b17e4656dd0 1204 (
hudakz 3:5b17e4656dd0 1205 uip_udp_conn->lport != 0
hudakz 3:5b17e4656dd0 1206 && UDPBUF->destport == uip_udp_conn->lport
hudakz 3:5b17e4656dd0 1207 && (uip_udp_conn->rport == 0 || UDPBUF->srcport == uip_udp_conn->rport)
hudakz 3:5b17e4656dd0 1208 && (
hudakz 3:5b17e4656dd0 1209 uip_ipaddr_cmp(uip_udp_conn->ripaddr, all_zeroes_addr)
hudakz 3:5b17e4656dd0 1210 || uip_ipaddr_cmp(uip_udp_conn->ripaddr, all_ones_addr)
hudakz 3:5b17e4656dd0 1211 || uip_ipaddr_cmp(BUF->srcipaddr, uip_udp_conn->ripaddr)
hudakz 3:5b17e4656dd0 1212 )
hudakz 3:5b17e4656dd0 1213 ) {
hudakz 3:5b17e4656dd0 1214 goto udp_found;
hudakz 3:5b17e4656dd0 1215 }
hudakz 3:5b17e4656dd0 1216 }
hudakz 3:5b17e4656dd0 1217
hudakz 3:5b17e4656dd0 1218 UIP_LOG("udp: no matching connection found");
hudakz 3:5b17e4656dd0 1219 goto drop;
hudakz 3:5b17e4656dd0 1220
hudakz 3:5b17e4656dd0 1221 udp_found:
hudakz 3:5b17e4656dd0 1222 uip_conn = NULL;
hudakz 3:5b17e4656dd0 1223 uip_flags = UIP_NEWDATA;
hudakz 3:5b17e4656dd0 1224 uip_sappdata = uip_appdata = &uip_buf[UIP_LLH_LEN + UIP_IPUDPH_LEN];
hudakz 3:5b17e4656dd0 1225 uip_slen = 0;
hudakz 3:5b17e4656dd0 1226 UIP_UDP_APPCALL();
hudakz 3:5b17e4656dd0 1227 udp_send:
hudakz 3:5b17e4656dd0 1228 if(uip_slen == 0) {
hudakz 3:5b17e4656dd0 1229 goto drop;
hudakz 3:5b17e4656dd0 1230 }
hudakz 3:5b17e4656dd0 1231
hudakz 3:5b17e4656dd0 1232 uip_len = uip_slen + UIP_IPUDPH_LEN;
hudakz 3:5b17e4656dd0 1233
hudakz 3:5b17e4656dd0 1234 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 1235 /* For IPv6, the IP length field does not include the IPv6 IP header
hudakz 3:5b17e4656dd0 1236 length. */
hudakz 3:5b17e4656dd0 1237
hudakz 3:5b17e4656dd0 1238 BUF->len[0] = ((uip_len - UIP_IPH_LEN) >> 8);
hudakz 3:5b17e4656dd0 1239 BUF->len[1] = ((uip_len - UIP_IPH_LEN) & 0xff);
hudakz 3:5b17e4656dd0 1240 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1241 BUF->len[0] = (uip_len >> 8);
hudakz 3:5b17e4656dd0 1242 BUF->len[1] = (uip_len & 0xff);
hudakz 3:5b17e4656dd0 1243 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1244
hudakz 3:5b17e4656dd0 1245 BUF->ttl = uip_udp_conn->ttl;
hudakz 3:5b17e4656dd0 1246 BUF->proto = UIP_PROTO_UDP;
hudakz 3:5b17e4656dd0 1247
hudakz 3:5b17e4656dd0 1248 UDPBUF->udplen = HTONS(uip_slen + UIP_UDPH_LEN);
hudakz 3:5b17e4656dd0 1249 UDPBUF->udpchksum = 0;
hudakz 3:5b17e4656dd0 1250
hudakz 3:5b17e4656dd0 1251 BUF->srcport = uip_udp_conn->lport;
hudakz 3:5b17e4656dd0 1252 BUF->destport = uip_udp_conn->rport;
hudakz 3:5b17e4656dd0 1253
hudakz 3:5b17e4656dd0 1254 uip_ipaddr_copy(BUF->srcipaddr, uip_hostaddr);
hudakz 3:5b17e4656dd0 1255 uip_ipaddr_copy(BUF->destipaddr, uip_udp_conn->ripaddr);
hudakz 3:5b17e4656dd0 1256
hudakz 3:5b17e4656dd0 1257 uip_appdata = &uip_buf[UIP_LLH_LEN + UIP_IPTCPH_LEN];
hudakz 3:5b17e4656dd0 1258
hudakz 3:5b17e4656dd0 1259 #if UIP_UDP_CHECKSUMS
hudakz 3:5b17e4656dd0 1260 /* Calculate UDP checksum. */
hudakz 3:5b17e4656dd0 1261
hudakz 3:5b17e4656dd0 1262 UDPBUF->udpchksum = ~(uip_udpchksum());
hudakz 3:5b17e4656dd0 1263 if(UDPBUF->udpchksum == 0) {
hudakz 3:5b17e4656dd0 1264 UDPBUF->udpchksum = 0xffff;
hudakz 3:5b17e4656dd0 1265 }
hudakz 3:5b17e4656dd0 1266 #endif /* UIP_UDP_CHECKSUMS */
hudakz 3:5b17e4656dd0 1267
hudakz 3:5b17e4656dd0 1268 goto ip_send_nolen;
hudakz 3:5b17e4656dd0 1269 #endif /* UIP_UDP */
hudakz 3:5b17e4656dd0 1270
hudakz 3:5b17e4656dd0 1271 /* TCP input processing. */
hudakz 3:5b17e4656dd0 1272
hudakz 3:5b17e4656dd0 1273 tcp_input : UIP_STAT(++uip_stat.tcp.recv);
hudakz 3:5b17e4656dd0 1274
hudakz 3:5b17e4656dd0 1275 /* Start of TCP input header processing code. */
hudakz 3:5b17e4656dd0 1276 if(uip_tcpchksum() != 0xffff) {
hudakz 3:5b17e4656dd0 1277
hudakz 3:5b17e4656dd0 1278 /* Compute and check the TCP
hudakz 4:d774541a34da 1279 checksum. */
hudakz 3:5b17e4656dd0 1280 UIP_STAT(++uip_stat.tcp.drop);
hudakz 3:5b17e4656dd0 1281 UIP_STAT(++uip_stat.tcp.chkerr);
hudakz 3:5b17e4656dd0 1282 UIP_LOG("tcp: bad checksum.");
hudakz 3:5b17e4656dd0 1283 goto drop;
hudakz 3:5b17e4656dd0 1284 }
hudakz 3:5b17e4656dd0 1285
hudakz 3:5b17e4656dd0 1286 /* Demultiplex this segment. */
hudakz 3:5b17e4656dd0 1287 /* First check any active connections. */
hudakz 3:5b17e4656dd0 1288 for(uip_connr = &uip_conns[0]; uip_connr <= &uip_conns[UIP_CONNS - 1]; ++uip_connr) {
hudakz 3:5b17e4656dd0 1289 if
hudakz 3:5b17e4656dd0 1290 (
hudakz 3:5b17e4656dd0 1291 uip_connr->tcpstateflags != UIP_CLOSED
hudakz 3:5b17e4656dd0 1292 && BUF->destport == uip_connr->lport
hudakz 3:5b17e4656dd0 1293 && BUF->srcport == uip_connr->rport
hudakz 3:5b17e4656dd0 1294 && uip_ipaddr_cmp(BUF->srcipaddr, uip_connr->ripaddr)
hudakz 3:5b17e4656dd0 1295 ) {
hudakz 3:5b17e4656dd0 1296 goto found;
hudakz 3:5b17e4656dd0 1297 }
hudakz 3:5b17e4656dd0 1298 }
hudakz 3:5b17e4656dd0 1299
hudakz 3:5b17e4656dd0 1300 /* If we didn't find and active connection that expected the packet,
hudakz 3:5b17e4656dd0 1301 either this packet is an old duplicate, or this is a SYN packet
hudakz 3:5b17e4656dd0 1302 destined for a connection in LISTEN. If the SYN flag isn't set,
hudakz 3:5b17e4656dd0 1303 it is an old packet and we send a RST. */
hudakz 3:5b17e4656dd0 1304 if((BUF->flags & TCP_CTL) != TCP_SYN) {
hudakz 3:5b17e4656dd0 1305 goto reset;
hudakz 3:5b17e4656dd0 1306 }
hudakz 3:5b17e4656dd0 1307
hudakz 3:5b17e4656dd0 1308 tmp16 = BUF->destport;
hudakz 3:5b17e4656dd0 1309
hudakz 3:5b17e4656dd0 1310 /* Next, check listening connections. */
hudakz 3:5b17e4656dd0 1311 for(c = 0; c < UIP_LISTENPORTS; ++c) {
hudakz 3:5b17e4656dd0 1312 if(tmp16 == uip_listenports[c])
hudakz 3:5b17e4656dd0 1313 goto found_listen;
hudakz 3:5b17e4656dd0 1314 }
hudakz 3:5b17e4656dd0 1315
hudakz 3:5b17e4656dd0 1316 /* No matching connection found, so we send a RST packet. */
hudakz 3:5b17e4656dd0 1317 UIP_STAT(++uip_stat.tcp.synrst);
hudakz 3:5b17e4656dd0 1318 reset:
hudakz 3:5b17e4656dd0 1319 /* We do not send resets in response to resets. */
hudakz 3:5b17e4656dd0 1320 if(BUF->flags & TCP_RST) {
hudakz 3:5b17e4656dd0 1321 goto drop;
hudakz 3:5b17e4656dd0 1322 }
hudakz 3:5b17e4656dd0 1323
hudakz 3:5b17e4656dd0 1324 UIP_STAT(++uip_stat.tcp.rst);
hudakz 3:5b17e4656dd0 1325
hudakz 3:5b17e4656dd0 1326 BUF->flags = TCP_RST | TCP_ACK;
hudakz 3:5b17e4656dd0 1327 uip_len = UIP_IPTCPH_LEN;
hudakz 3:5b17e4656dd0 1328 BUF->tcpoffset = 5 << 4;
hudakz 3:5b17e4656dd0 1329
hudakz 3:5b17e4656dd0 1330 /* Flip the seqno and ackno fields in the TCP header. */
hudakz 3:5b17e4656dd0 1331 c = BUF->seqno[3];
hudakz 3:5b17e4656dd0 1332 BUF->seqno[3] = BUF->ackno[3];
hudakz 3:5b17e4656dd0 1333 BUF->ackno[3] = c;
hudakz 3:5b17e4656dd0 1334
hudakz 3:5b17e4656dd0 1335 c = BUF->seqno[2];
hudakz 3:5b17e4656dd0 1336 BUF->seqno[2] = BUF->ackno[2];
hudakz 3:5b17e4656dd0 1337 BUF->ackno[2] = c;
hudakz 3:5b17e4656dd0 1338
hudakz 3:5b17e4656dd0 1339 c = BUF->seqno[1];
hudakz 3:5b17e4656dd0 1340 BUF->seqno[1] = BUF->ackno[1];
hudakz 3:5b17e4656dd0 1341 BUF->ackno[1] = c;
hudakz 3:5b17e4656dd0 1342
hudakz 3:5b17e4656dd0 1343 c = BUF->seqno[0];
hudakz 3:5b17e4656dd0 1344 BUF->seqno[0] = BUF->ackno[0];
hudakz 3:5b17e4656dd0 1345 BUF->ackno[0] = c;
hudakz 3:5b17e4656dd0 1346
hudakz 3:5b17e4656dd0 1347 /* We also have to increase the sequence number we are
hudakz 3:5b17e4656dd0 1348 acknowledging. If the least significant byte overflowed, we need
hudakz 3:5b17e4656dd0 1349 to propagate the carry to the other bytes as well. */
hudakz 3:5b17e4656dd0 1350 if(++BUF->ackno[3] == 0) {
hudakz 3:5b17e4656dd0 1351 if(++BUF->ackno[2] == 0) {
hudakz 3:5b17e4656dd0 1352 if(++BUF->ackno[1] == 0) {
hudakz 3:5b17e4656dd0 1353 ++BUF->ackno[0];
hudakz 3:5b17e4656dd0 1354 }
hudakz 3:5b17e4656dd0 1355 }
hudakz 3:5b17e4656dd0 1356 }
hudakz 3:5b17e4656dd0 1357
hudakz 3:5b17e4656dd0 1358 /* Swap port numbers. */
hudakz 3:5b17e4656dd0 1359 tmp16 = BUF->srcport;
hudakz 3:5b17e4656dd0 1360 BUF->srcport = BUF->destport;
hudakz 3:5b17e4656dd0 1361 BUF->destport = tmp16;
hudakz 3:5b17e4656dd0 1362
hudakz 3:5b17e4656dd0 1363 /* Swap IP addresses. */
hudakz 3:5b17e4656dd0 1364 uip_ipaddr_copy(BUF->destipaddr, BUF->srcipaddr);
hudakz 3:5b17e4656dd0 1365 uip_ipaddr_copy(BUF->srcipaddr, uip_hostaddr);
hudakz 3:5b17e4656dd0 1366
hudakz 3:5b17e4656dd0 1367 /* And send out the RST packet! */
hudakz 3:5b17e4656dd0 1368 goto tcp_send_noconn;
hudakz 3:5b17e4656dd0 1369
hudakz 3:5b17e4656dd0 1370 /* This label will be jumped to if we matched the incoming packet
hudakz 3:5b17e4656dd0 1371 with a connection in LISTEN. In that case, we should create a new
hudakz 3:5b17e4656dd0 1372 connection and send a SYNACK in return. */
hudakz 3:5b17e4656dd0 1373 found_listen:
hudakz 3:5b17e4656dd0 1374 /* First we check if there are any connections avaliable. Unused
hudakz 3:5b17e4656dd0 1375 connections are kept in the same table as used connections, but
hudakz 3:5b17e4656dd0 1376 unused ones have the tcpstate set to CLOSED. Also, connections in
hudakz 3:5b17e4656dd0 1377 TIME_WAIT are kept track of and we'll use the oldest one if no
hudakz 3:5b17e4656dd0 1378 CLOSED connections are found. Thanks to Eddie C. Dost for a very
hudakz 3:5b17e4656dd0 1379 nice algorithm for the TIME_WAIT search. */
hudakz 3:5b17e4656dd0 1380 uip_connr = 0;
hudakz 3:5b17e4656dd0 1381 for(c = 0; c < UIP_CONNS; ++c) {
hudakz 3:5b17e4656dd0 1382 if(uip_conns[c].tcpstateflags == UIP_CLOSED) {
hudakz 3:5b17e4656dd0 1383 uip_connr = &uip_conns[c];
hudakz 3:5b17e4656dd0 1384 break;
hudakz 3:5b17e4656dd0 1385 }
hudakz 3:5b17e4656dd0 1386
hudakz 3:5b17e4656dd0 1387 if(uip_conns[c].tcpstateflags == UIP_TIME_WAIT) {
hudakz 3:5b17e4656dd0 1388 if(uip_connr == 0 || uip_conns[c].timer > uip_connr->timer) {
hudakz 3:5b17e4656dd0 1389 uip_connr = &uip_conns[c];
hudakz 3:5b17e4656dd0 1390 }
hudakz 3:5b17e4656dd0 1391 }
hudakz 3:5b17e4656dd0 1392 }
hudakz 3:5b17e4656dd0 1393
hudakz 3:5b17e4656dd0 1394 if(uip_connr == 0) {
hudakz 3:5b17e4656dd0 1395
hudakz 3:5b17e4656dd0 1396 /* All connections are used already, we drop packet and hope that
hudakz 3:5b17e4656dd0 1397 the remote end will retransmit the packet at a time when we
hudakz 3:5b17e4656dd0 1398 have more spare connections. */
hudakz 3:5b17e4656dd0 1399 UIP_STAT(++uip_stat.tcp.syndrop);
hudakz 3:5b17e4656dd0 1400 UIP_LOG("tcp: found no unused connections.");
hudakz 3:5b17e4656dd0 1401 goto drop;
hudakz 3:5b17e4656dd0 1402 }
hudakz 3:5b17e4656dd0 1403
hudakz 3:5b17e4656dd0 1404 uip_conn = uip_connr;
hudakz 3:5b17e4656dd0 1405
hudakz 3:5b17e4656dd0 1406 /* Fill in the necessary fields for the new connection. */
hudakz 3:5b17e4656dd0 1407 uip_connr->rto = uip_connr->timer = UIP_RTO;
hudakz 3:5b17e4656dd0 1408 uip_connr->sa = 0;
hudakz 3:5b17e4656dd0 1409 uip_connr->sv = 4;
hudakz 3:5b17e4656dd0 1410 uip_connr->nrtx = 0;
hudakz 3:5b17e4656dd0 1411 uip_connr->lport = BUF->destport;
hudakz 3:5b17e4656dd0 1412 uip_connr->rport = BUF->srcport;
hudakz 3:5b17e4656dd0 1413 uip_ipaddr_copy(uip_connr->ripaddr, BUF->srcipaddr);
hudakz 3:5b17e4656dd0 1414 uip_connr->tcpstateflags = UIP_SYN_RCVD;
hudakz 3:5b17e4656dd0 1415
hudakz 3:5b17e4656dd0 1416 uip_connr->snd_nxt[0] = iss[0];
hudakz 3:5b17e4656dd0 1417 uip_connr->snd_nxt[1] = iss[1];
hudakz 3:5b17e4656dd0 1418 uip_connr->snd_nxt[2] = iss[2];
hudakz 3:5b17e4656dd0 1419 uip_connr->snd_nxt[3] = iss[3];
hudakz 3:5b17e4656dd0 1420 uip_connr->len = 1;
hudakz 3:5b17e4656dd0 1421
hudakz 3:5b17e4656dd0 1422 /* rcv_nxt should be the seqno from the incoming packet + 1. */
hudakz 3:5b17e4656dd0 1423 uip_connr->rcv_nxt[3] = BUF->seqno[3];
hudakz 3:5b17e4656dd0 1424 uip_connr->rcv_nxt[2] = BUF->seqno[2];
hudakz 3:5b17e4656dd0 1425 uip_connr->rcv_nxt[1] = BUF->seqno[1];
hudakz 3:5b17e4656dd0 1426 uip_connr->rcv_nxt[0] = BUF->seqno[0];
hudakz 3:5b17e4656dd0 1427 uip_add_rcv_nxt(1);
hudakz 3:5b17e4656dd0 1428
hudakz 3:5b17e4656dd0 1429 /* Parse the TCP MSS option, if present. */
hudakz 3:5b17e4656dd0 1430 if((BUF->tcpoffset & 0xf0) > 0x50) {
hudakz 3:5b17e4656dd0 1431 for(c = 0; c < ((BUF->tcpoffset >> 4) - 5) << 2;) {
hudakz 3:5b17e4656dd0 1432 opt = uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + c];
hudakz 3:5b17e4656dd0 1433 if(opt == TCP_OPT_END) {
hudakz 3:5b17e4656dd0 1434
hudakz 3:5b17e4656dd0 1435 /* End of options. */
hudakz 3:5b17e4656dd0 1436 break;
hudakz 3:5b17e4656dd0 1437 }
hudakz 3:5b17e4656dd0 1438 else
hudakz 3:5b17e4656dd0 1439 if(opt == TCP_OPT_NOOP) {
hudakz 3:5b17e4656dd0 1440 ++c;
hudakz 3:5b17e4656dd0 1441
hudakz 3:5b17e4656dd0 1442 /* NOP option. */
hudakz 3:5b17e4656dd0 1443 }
hudakz 3:5b17e4656dd0 1444 else
hudakz 3:5b17e4656dd0 1445 if(opt == TCP_OPT_MSS && uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 1 + c] == TCP_OPT_MSS_LEN) {
hudakz 3:5b17e4656dd0 1446
hudakz 3:5b17e4656dd0 1447 /* An MSS option with the right option length. */
hudakz 3:5b17e4656dd0 1448 tmp16 = ((u16_t) uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 2 + c] << 8) | (u16_t) uip_buf[UIP_IPTCPH_LEN + UIP_LLH_LEN + 3 + c];
hudakz 3:5b17e4656dd0 1449 uip_connr->initialmss = uip_connr->mss = tmp16 > UIP_TCP_MSS ? UIP_TCP_MSS : tmp16;
hudakz 3:5b17e4656dd0 1450
hudakz 3:5b17e4656dd0 1451 /* And we are done processing options. */
hudakz 3:5b17e4656dd0 1452 break;
hudakz 3:5b17e4656dd0 1453 }
hudakz 3:5b17e4656dd0 1454 else {
hudakz 3:5b17e4656dd0 1455
hudakz 3:5b17e4656dd0 1456 /* All other options have a length field, so that we easily
hudakz 4:d774541a34da 1457 can skip past them. */
hudakz 3:5b17e4656dd0 1458 if(uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 1 + c] == 0) {
hudakz 3:5b17e4656dd0 1459
hudakz 3:5b17e4656dd0 1460 /* If the length field is zero, the options are malformed
hudakz 4:d774541a34da 1461 and we don't process them further. */
hudakz 3:5b17e4656dd0 1462 break;
hudakz 3:5b17e4656dd0 1463 }
hudakz 3:5b17e4656dd0 1464
hudakz 3:5b17e4656dd0 1465 c += uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 1 + c];
hudakz 3:5b17e4656dd0 1466 }
hudakz 3:5b17e4656dd0 1467 }
hudakz 3:5b17e4656dd0 1468 }
hudakz 3:5b17e4656dd0 1469
hudakz 3:5b17e4656dd0 1470 /* Our response will be a SYNACK. */
hudakz 3:5b17e4656dd0 1471 #if UIP_ACTIVE_OPEN
hudakz 3:5b17e4656dd0 1472 tcp_send_synack : BUF->flags = TCP_ACK;
hudakz 3:5b17e4656dd0 1473
hudakz 3:5b17e4656dd0 1474 tcp_send_syn:
hudakz 3:5b17e4656dd0 1475 BUF->flags |= TCP_SYN;
hudakz 3:5b17e4656dd0 1476 #else /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 1477 tcp_send_synack : BUF->flags = TCP_SYN | TCP_ACK;
hudakz 3:5b17e4656dd0 1478 #endif /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 1479
hudakz 3:5b17e4656dd0 1480 /* We send out the TCP Maximum Segment Size option with our
hudakz 3:5b17e4656dd0 1481 SYNACK. */
hudakz 3:5b17e4656dd0 1482
hudakz 3:5b17e4656dd0 1483 BUF->optdata[0] = TCP_OPT_MSS;
hudakz 3:5b17e4656dd0 1484 BUF->optdata[1] = TCP_OPT_MSS_LEN;
hudakz 3:5b17e4656dd0 1485 BUF->optdata[2] = (UIP_TCP_MSS) / 256;
hudakz 3:5b17e4656dd0 1486 BUF->optdata[3] = (UIP_TCP_MSS) & 255;
hudakz 3:5b17e4656dd0 1487 uip_len = UIP_IPTCPH_LEN + TCP_OPT_MSS_LEN;
hudakz 3:5b17e4656dd0 1488 BUF->tcpoffset = ((UIP_TCPH_LEN + TCP_OPT_MSS_LEN) / 4) << 4;
hudakz 3:5b17e4656dd0 1489 goto tcp_send;
hudakz 3:5b17e4656dd0 1490
hudakz 3:5b17e4656dd0 1491 /* This label will be jumped to if we found an active connection. */
hudakz 3:5b17e4656dd0 1492 found:
hudakz 3:5b17e4656dd0 1493 uip_conn = uip_connr;
hudakz 3:5b17e4656dd0 1494 uip_flags = 0;
hudakz 3:5b17e4656dd0 1495
hudakz 3:5b17e4656dd0 1496 /* We do a very naive form of TCP reset processing; we just accept
hudakz 3:5b17e4656dd0 1497 any RST and kill our connection. We should in fact check if the
hudakz 3:5b17e4656dd0 1498 sequence number of this reset is wihtin our advertised window
hudakz 3:5b17e4656dd0 1499 before we accept the reset. */
hudakz 3:5b17e4656dd0 1500 if(BUF->flags & TCP_RST) {
hudakz 3:5b17e4656dd0 1501 uip_connr->tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 1502 UIP_LOG("tcp: got reset, aborting connection.");
hudakz 3:5b17e4656dd0 1503 uip_flags = UIP_ABORT;
hudakz 3:5b17e4656dd0 1504 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1505 goto drop;
hudakz 3:5b17e4656dd0 1506 }
hudakz 3:5b17e4656dd0 1507
hudakz 3:5b17e4656dd0 1508 /* Calculated the length of the data, if the application has sent
hudakz 3:5b17e4656dd0 1509 any data to us. */
hudakz 3:5b17e4656dd0 1510 c = (BUF->tcpoffset >> 4) << 2;
hudakz 3:5b17e4656dd0 1511
hudakz 3:5b17e4656dd0 1512 /* uip_len will contain the length of the actual TCP data. This is
hudakz 3:5b17e4656dd0 1513 calculated by subtracing the length of the TCP header (in
hudakz 3:5b17e4656dd0 1514 c) and the length of the IP header (20 bytes). */
hudakz 3:5b17e4656dd0 1515 uip_len = uip_len - c - UIP_IPH_LEN;
hudakz 3:5b17e4656dd0 1516
hudakz 3:5b17e4656dd0 1517 /* First, check if the sequence number of the incoming packet is
hudakz 3:5b17e4656dd0 1518 what we're expecting next. If not, we send out an ACK with the
hudakz 3:5b17e4656dd0 1519 correct numbers in. */
hudakz 3:5b17e4656dd0 1520 if(!(((uip_connr->tcpstateflags & UIP_TS_MASK) == UIP_SYN_SENT) && ((BUF->flags & TCP_CTL) == (TCP_SYN | TCP_ACK)))) {
hudakz 3:5b17e4656dd0 1521 if
hudakz 3:5b17e4656dd0 1522 (
hudakz 3:5b17e4656dd0 1523 (uip_len > 0 || ((BUF->flags & (TCP_SYN | TCP_FIN)) != 0))
hudakz 3:5b17e4656dd0 1524 && (
hudakz 3:5b17e4656dd0 1525 BUF->seqno[0] != uip_connr->rcv_nxt[0]
hudakz 3:5b17e4656dd0 1526 || BUF->seqno[1] != uip_connr->rcv_nxt[1]
hudakz 3:5b17e4656dd0 1527 || BUF->seqno[2] != uip_connr->rcv_nxt[2]
hudakz 3:5b17e4656dd0 1528 || BUF->seqno[3] != uip_connr->rcv_nxt[3]
hudakz 3:5b17e4656dd0 1529 )
hudakz 3:5b17e4656dd0 1530 ) {
hudakz 3:5b17e4656dd0 1531 goto tcp_send_ack;
hudakz 3:5b17e4656dd0 1532 }
hudakz 3:5b17e4656dd0 1533 }
hudakz 3:5b17e4656dd0 1534
hudakz 3:5b17e4656dd0 1535 /* Next, check if the incoming segment acknowledges any outstanding
hudakz 3:5b17e4656dd0 1536 data. If so, we update the sequence number, reset the length of
hudakz 3:5b17e4656dd0 1537 the outstanding data, calculate RTT estimations, and reset the
hudakz 3:5b17e4656dd0 1538 retransmission timer. */
hudakz 3:5b17e4656dd0 1539 if((BUF->flags & TCP_ACK) && uip_outstanding(uip_connr)) {
hudakz 3:5b17e4656dd0 1540 uip_add32(uip_connr->snd_nxt, uip_connr->len);
hudakz 3:5b17e4656dd0 1541
hudakz 3:5b17e4656dd0 1542 if
hudakz 3:5b17e4656dd0 1543 (
hudakz 3:5b17e4656dd0 1544 BUF->ackno[0] == uip_acc32[0]
hudakz 3:5b17e4656dd0 1545 && BUF->ackno[1] == uip_acc32[1]
hudakz 3:5b17e4656dd0 1546 && BUF->ackno[2] == uip_acc32[2]
hudakz 3:5b17e4656dd0 1547 && BUF->ackno[3] == uip_acc32[3]
hudakz 3:5b17e4656dd0 1548 ) {
hudakz 3:5b17e4656dd0 1549
hudakz 3:5b17e4656dd0 1550 /* Update sequence number. */
hudakz 3:5b17e4656dd0 1551 uip_connr->snd_nxt[0] = uip_acc32[0];
hudakz 3:5b17e4656dd0 1552 uip_connr->snd_nxt[1] = uip_acc32[1];
hudakz 3:5b17e4656dd0 1553 uip_connr->snd_nxt[2] = uip_acc32[2];
hudakz 3:5b17e4656dd0 1554 uip_connr->snd_nxt[3] = uip_acc32[3];
hudakz 3:5b17e4656dd0 1555
hudakz 3:5b17e4656dd0 1556 /* Do RTT estimation, unless we have done retransmissions. */
hudakz 3:5b17e4656dd0 1557 if(uip_connr->nrtx == 0) {
hudakz 3:5b17e4656dd0 1558 signed char m;
hudakz 3:5b17e4656dd0 1559 m = uip_connr->rto - uip_connr->timer;
hudakz 3:5b17e4656dd0 1560
hudakz 3:5b17e4656dd0 1561 /* This is taken directly from VJs original code in his paper */
hudakz 3:5b17e4656dd0 1562 m = m - (uip_connr->sa >> 3);
hudakz 3:5b17e4656dd0 1563 uip_connr->sa += m;
hudakz 3:5b17e4656dd0 1564 if(m < 0) {
hudakz 3:5b17e4656dd0 1565 m = -m;
hudakz 3:5b17e4656dd0 1566 }
hudakz 3:5b17e4656dd0 1567
hudakz 3:5b17e4656dd0 1568 m = m - (uip_connr->sv >> 2);
hudakz 3:5b17e4656dd0 1569 uip_connr->sv += m;
hudakz 3:5b17e4656dd0 1570 uip_connr->rto = (uip_connr->sa >> 3) + uip_connr->sv;
hudakz 3:5b17e4656dd0 1571 }
hudakz 3:5b17e4656dd0 1572
hudakz 3:5b17e4656dd0 1573 /* Set the acknowledged flag. */
hudakz 3:5b17e4656dd0 1574 uip_flags = UIP_ACKDATA;
hudakz 3:5b17e4656dd0 1575
hudakz 3:5b17e4656dd0 1576 /* Reset the retransmission timer. */
hudakz 3:5b17e4656dd0 1577 uip_connr->timer = uip_connr->rto;
hudakz 3:5b17e4656dd0 1578
hudakz 3:5b17e4656dd0 1579 /* Reset length of outstanding data. */
hudakz 3:5b17e4656dd0 1580 uip_connr->len = 0;
hudakz 3:5b17e4656dd0 1581 }
hudakz 3:5b17e4656dd0 1582 }
hudakz 3:5b17e4656dd0 1583
hudakz 3:5b17e4656dd0 1584 /* Do different things depending on in what state the connection is. */
hudakz 3:5b17e4656dd0 1585 switch(uip_connr->tcpstateflags & UIP_TS_MASK) {
hudakz 3:5b17e4656dd0 1586 /* CLOSED and LISTEN are not handled here. CLOSE_WAIT is not
hudakz 4:d774541a34da 1587 implemented, since we force the application to close when the
hudakz 4:d774541a34da 1588 peer sends a FIN (hence the application goes directly from
hudakz 4:d774541a34da 1589 ESTABLISHED to LAST_ACK). */
hudakz 3:5b17e4656dd0 1590 case UIP_SYN_RCVD:
hudakz 3:5b17e4656dd0 1591 /* In SYN_RCVD we have sent out a SYNACK in response to a SYN, and
hudakz 3:5b17e4656dd0 1592 we are waiting for an ACK that acknowledges the data we sent
hudakz 3:5b17e4656dd0 1593 out the last time. Therefore, we want to have the UIP_ACKDATA
hudakz 3:5b17e4656dd0 1594 flag set. If so, we enter the ESTABLISHED state. */
hudakz 3:5b17e4656dd0 1595 if(uip_flags & UIP_ACKDATA) {
hudakz 3:5b17e4656dd0 1596 uip_connr->tcpstateflags = UIP_ESTABLISHED;
hudakz 3:5b17e4656dd0 1597 uip_flags = UIP_CONNECTED;
hudakz 3:5b17e4656dd0 1598 uip_connr->len = 0;
hudakz 3:5b17e4656dd0 1599 if(uip_len > 0) {
hudakz 3:5b17e4656dd0 1600 uip_flags |= UIP_NEWDATA;
hudakz 3:5b17e4656dd0 1601 uip_add_rcv_nxt(uip_len);
hudakz 3:5b17e4656dd0 1602 }
hudakz 3:5b17e4656dd0 1603
hudakz 3:5b17e4656dd0 1604 uip_slen = 0;
hudakz 3:5b17e4656dd0 1605 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1606 goto appsend;
hudakz 3:5b17e4656dd0 1607 }
hudakz 3:5b17e4656dd0 1608
hudakz 3:5b17e4656dd0 1609 goto drop;
hudakz 3:5b17e4656dd0 1610 #if UIP_ACTIVE_OPEN
hudakz 3:5b17e4656dd0 1611
hudakz 3:5b17e4656dd0 1612 case UIP_SYN_SENT:
hudakz 3:5b17e4656dd0 1613 /* In SYN_SENT, we wait for a SYNACK that is sent in response to
hudakz 3:5b17e4656dd0 1614 our SYN. The rcv_nxt is set to sequence number in the SYNACK
hudakz 3:5b17e4656dd0 1615 plus one, and we send an ACK. We move into the ESTABLISHED
hudakz 3:5b17e4656dd0 1616 state. */
hudakz 3:5b17e4656dd0 1617 if((uip_flags & UIP_ACKDATA) && (BUF->flags & TCP_CTL) == (TCP_SYN | TCP_ACK)) {
hudakz 3:5b17e4656dd0 1618
hudakz 3:5b17e4656dd0 1619 /* Parse the TCP MSS option, if present. */
hudakz 3:5b17e4656dd0 1620 if((BUF->tcpoffset & 0xf0) > 0x50) {
hudakz 3:5b17e4656dd0 1621 for(c = 0; c < ((BUF->tcpoffset >> 4) - 5) << 2;) {
hudakz 3:5b17e4656dd0 1622 opt = uip_buf[UIP_IPTCPH_LEN + UIP_LLH_LEN + c];
hudakz 3:5b17e4656dd0 1623 if(opt == TCP_OPT_END) {
hudakz 3:5b17e4656dd0 1624
hudakz 3:5b17e4656dd0 1625 /* End of options. */
hudakz 3:5b17e4656dd0 1626 break;
hudakz 3:5b17e4656dd0 1627 }
hudakz 3:5b17e4656dd0 1628 else
hudakz 3:5b17e4656dd0 1629 if(opt == TCP_OPT_NOOP) {
hudakz 3:5b17e4656dd0 1630 ++c;
hudakz 3:5b17e4656dd0 1631
hudakz 3:5b17e4656dd0 1632 /* NOP option. */
hudakz 3:5b17e4656dd0 1633 }
hudakz 3:5b17e4656dd0 1634 else
hudakz 3:5b17e4656dd0 1635 if(opt == TCP_OPT_MSS && uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 1 + c] == TCP_OPT_MSS_LEN) {
hudakz 3:5b17e4656dd0 1636
hudakz 3:5b17e4656dd0 1637 /* An MSS option with the right option length. */
hudakz 3:5b17e4656dd0 1638 tmp16 = (uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 2 + c] << 8) | uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 3 + c];
hudakz 3:5b17e4656dd0 1639 uip_connr->initialmss = uip_connr->mss = tmp16 > UIP_TCP_MSS ? UIP_TCP_MSS : tmp16;
hudakz 3:5b17e4656dd0 1640
hudakz 3:5b17e4656dd0 1641 /* And we are done processing options. */
hudakz 3:5b17e4656dd0 1642 break;
hudakz 3:5b17e4656dd0 1643 }
hudakz 3:5b17e4656dd0 1644 else {
hudakz 3:5b17e4656dd0 1645
hudakz 3:5b17e4656dd0 1646 /* All other options have a length field, so that we easily
hudakz 4:d774541a34da 1647 can skip past them. */
hudakz 3:5b17e4656dd0 1648 if(uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 1 + c] == 0) {
hudakz 3:5b17e4656dd0 1649
hudakz 3:5b17e4656dd0 1650 /* If the length field is zero, the options are malformed
hudakz 4:d774541a34da 1651 and we don't process them further. */
hudakz 3:5b17e4656dd0 1652 break;
hudakz 3:5b17e4656dd0 1653 }
hudakz 3:5b17e4656dd0 1654
hudakz 3:5b17e4656dd0 1655 c += uip_buf[UIP_TCPIP_HLEN + UIP_LLH_LEN + 1 + c];
hudakz 3:5b17e4656dd0 1656 }
hudakz 3:5b17e4656dd0 1657 }
hudakz 3:5b17e4656dd0 1658 }
hudakz 3:5b17e4656dd0 1659
hudakz 3:5b17e4656dd0 1660 uip_connr->tcpstateflags = UIP_ESTABLISHED;
hudakz 3:5b17e4656dd0 1661 uip_connr->rcv_nxt[0] = BUF->seqno[0];
hudakz 3:5b17e4656dd0 1662 uip_connr->rcv_nxt[1] = BUF->seqno[1];
hudakz 3:5b17e4656dd0 1663 uip_connr->rcv_nxt[2] = BUF->seqno[2];
hudakz 3:5b17e4656dd0 1664 uip_connr->rcv_nxt[3] = BUF->seqno[3];
hudakz 3:5b17e4656dd0 1665 uip_add_rcv_nxt(1);
hudakz 3:5b17e4656dd0 1666 uip_flags = UIP_CONNECTED | UIP_NEWDATA;
hudakz 3:5b17e4656dd0 1667 uip_connr->len = 0;
hudakz 3:5b17e4656dd0 1668 uip_len = 0;
hudakz 3:5b17e4656dd0 1669 uip_slen = 0;
hudakz 3:5b17e4656dd0 1670 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1671 goto appsend;
hudakz 3:5b17e4656dd0 1672 }
hudakz 3:5b17e4656dd0 1673
hudakz 3:5b17e4656dd0 1674 /* Inform the application that the connection failed */
hudakz 3:5b17e4656dd0 1675 uip_flags = UIP_ABORT;
hudakz 3:5b17e4656dd0 1676 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1677
hudakz 3:5b17e4656dd0 1678 /* The connection is closed after we send the RST */
hudakz 3:5b17e4656dd0 1679 uip_conn->tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 1680 goto reset;
hudakz 3:5b17e4656dd0 1681 #endif /* UIP_ACTIVE_OPEN */
hudakz 3:5b17e4656dd0 1682
hudakz 3:5b17e4656dd0 1683 case UIP_ESTABLISHED:
hudakz 3:5b17e4656dd0 1684 /* In the ESTABLISHED state, we call upon the application to feed
hudakz 3:5b17e4656dd0 1685 data into the uip_buf. If the UIP_ACKDATA flag is set, the
hudakz 3:5b17e4656dd0 1686 application should put new data into the buffer, otherwise we are
hudakz 3:5b17e4656dd0 1687 retransmitting an old segment, and the application should put that
hudakz 3:5b17e4656dd0 1688 data into the buffer.
hudakz 3:5b17e4656dd0 1689
hudakz 3:5b17e4656dd0 1690 If the incoming packet is a FIN, we should close the connection on
hudakz 3:5b17e4656dd0 1691 this side as well, and we send out a FIN and enter the LAST_ACK
hudakz 3:5b17e4656dd0 1692 state. We require that there is no outstanding data; otherwise the
hudakz 3:5b17e4656dd0 1693 sequence numbers will be screwed up. */
hudakz 3:5b17e4656dd0 1694 if(BUF->flags & TCP_FIN && !(uip_connr->tcpstateflags & UIP_STOPPED)) {
hudakz 3:5b17e4656dd0 1695 if(uip_outstanding(uip_connr)) {
hudakz 3:5b17e4656dd0 1696 goto drop;
hudakz 3:5b17e4656dd0 1697 }
hudakz 3:5b17e4656dd0 1698
hudakz 3:5b17e4656dd0 1699 uip_add_rcv_nxt(1 + uip_len);
hudakz 3:5b17e4656dd0 1700 uip_flags |= UIP_CLOSE;
hudakz 3:5b17e4656dd0 1701 if(uip_len > 0) {
hudakz 3:5b17e4656dd0 1702 uip_flags |= UIP_NEWDATA;
hudakz 3:5b17e4656dd0 1703 }
hudakz 3:5b17e4656dd0 1704
hudakz 3:5b17e4656dd0 1705 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1706 uip_connr->len = 1;
hudakz 3:5b17e4656dd0 1707 uip_connr->tcpstateflags = UIP_LAST_ACK;
hudakz 3:5b17e4656dd0 1708 uip_connr->nrtx = 0;
hudakz 3:5b17e4656dd0 1709 tcp_send_finack:
hudakz 3:5b17e4656dd0 1710 BUF->flags = TCP_FIN | TCP_ACK;
hudakz 3:5b17e4656dd0 1711 goto tcp_send_nodata;
hudakz 3:5b17e4656dd0 1712 }
hudakz 3:5b17e4656dd0 1713
hudakz 3:5b17e4656dd0 1714 /* Check the URG flag. If this is set, the segment carries urgent
hudakz 3:5b17e4656dd0 1715 data that we must pass to the application. */
hudakz 3:5b17e4656dd0 1716 if((BUF->flags & TCP_URG) != 0)
hudakz 3:5b17e4656dd0 1717 {
hudakz 3:5b17e4656dd0 1718 #if UIP_URGDATA > 0
hudakz 3:5b17e4656dd0 1719 uip_urglen = (BUF->urgp[0] << 8) | BUF->urgp[1];
hudakz 3:5b17e4656dd0 1720 if(uip_urglen > uip_len) {
hudakz 3:5b17e4656dd0 1721
hudakz 3:5b17e4656dd0 1722 /* There is more urgent data in the next segment to come. */
hudakz 3:5b17e4656dd0 1723 uip_urglen = uip_len;
hudakz 3:5b17e4656dd0 1724 }
hudakz 3:5b17e4656dd0 1725
hudakz 3:5b17e4656dd0 1726 uip_add_rcv_nxt(uip_urglen);
hudakz 3:5b17e4656dd0 1727 uip_len -= uip_urglen;
hudakz 3:5b17e4656dd0 1728 uip_urgdata = uip_appdata;
hudakz 3:5b17e4656dd0 1729 uip_appdata += uip_urglen;
hudakz 3:5b17e4656dd0 1730 }
hudakz 3:5b17e4656dd0 1731 else {
hudakz 3:5b17e4656dd0 1732 uip_urglen = 0;
hudakz 3:5b17e4656dd0 1733 #else /* UIP_URGDATA > 0 */
hudakz 3:5b17e4656dd0 1734 uip_appdata = ((char*)uip_appdata) + ((BUF->urgp[0] << 8) | BUF->urgp[1]);
hudakz 3:5b17e4656dd0 1735 uip_len -= (BUF->urgp[0] << 8) | BUF->urgp[1];
hudakz 3:5b17e4656dd0 1736 #endif /* UIP_URGDATA > 0 */
hudakz 3:5b17e4656dd0 1737 }
hudakz 3:5b17e4656dd0 1738
hudakz 3:5b17e4656dd0 1739 /* If uip_len > 0 we have TCP data in the packet, and we flag this
hudakz 3:5b17e4656dd0 1740 by setting the UIP_NEWDATA flag and update the sequence number
hudakz 3:5b17e4656dd0 1741 we acknowledge. If the application has stopped the dataflow
hudakz 3:5b17e4656dd0 1742 using uip_stop(), we must not accept any data packets from the
hudakz 3:5b17e4656dd0 1743 remote host. */
hudakz 3:5b17e4656dd0 1744 if(uip_len > 0 && !(uip_connr->tcpstateflags & UIP_STOPPED)) {
hudakz 3:5b17e4656dd0 1745 uip_flags |= UIP_NEWDATA;
hudakz 3:5b17e4656dd0 1746 uip_add_rcv_nxt(uip_len);
hudakz 3:5b17e4656dd0 1747 }
hudakz 3:5b17e4656dd0 1748
hudakz 3:5b17e4656dd0 1749 /* Check if the available buffer space advertised by the other end
hudakz 3:5b17e4656dd0 1750 is smaller than the initial MSS for this connection. If so, we
hudakz 3:5b17e4656dd0 1751 set the current MSS to the window size to ensure that the
hudakz 3:5b17e4656dd0 1752 application does not send more data than the other end can
hudakz 3:5b17e4656dd0 1753 handle.
hudakz 3:5b17e4656dd0 1754
hudakz 3:5b17e4656dd0 1755 If the remote host advertises a zero window, we set the MSS to
hudakz 3:5b17e4656dd0 1756 the initial MSS so that the application will send an entire MSS
hudakz 3:5b17e4656dd0 1757 of data. This data will not be acknowledged by the receiver,
hudakz 3:5b17e4656dd0 1758 and the application will retransmit it. This is called the
hudakz 3:5b17e4656dd0 1759 "persistent timer" and uses the retransmission mechanim.
hudakz 3:5b17e4656dd0 1760 */
hudakz 3:5b17e4656dd0 1761 tmp16 = ((u16_t) BUF->wnd[0] << 8) + (u16_t) BUF->wnd[1];
hudakz 3:5b17e4656dd0 1762 if(tmp16 > uip_connr->initialmss || tmp16 == 0) {
hudakz 3:5b17e4656dd0 1763 tmp16 = uip_connr->initialmss;
hudakz 3:5b17e4656dd0 1764 }
hudakz 3:5b17e4656dd0 1765
hudakz 3:5b17e4656dd0 1766 uip_connr->mss = tmp16;
hudakz 3:5b17e4656dd0 1767
hudakz 3:5b17e4656dd0 1768 /* If this packet constitutes an ACK for outstanding data (flagged
hudakz 3:5b17e4656dd0 1769 by the UIP_ACKDATA flag, we should call the application since it
hudakz 3:5b17e4656dd0 1770 might want to send more data. If the incoming packet had data
hudakz 3:5b17e4656dd0 1771 from the peer (as flagged by the UIP_NEWDATA flag), the
hudakz 3:5b17e4656dd0 1772 application must also be notified.
hudakz 3:5b17e4656dd0 1773
hudakz 3:5b17e4656dd0 1774 When the application is called, the global variable uip_len
hudakz 3:5b17e4656dd0 1775 contains the length of the incoming data. The application can
hudakz 3:5b17e4656dd0 1776 access the incoming data through the global pointer
hudakz 3:5b17e4656dd0 1777 uip_appdata, which usually points UIP_IPTCPH_LEN + UIP_LLH_LEN
hudakz 3:5b17e4656dd0 1778 bytes into the uip_buf array.
hudakz 3:5b17e4656dd0 1779
hudakz 3:5b17e4656dd0 1780 If the application wishes to send any data, this data should be
hudakz 3:5b17e4656dd0 1781 put into the uip_appdata and the length of the data should be
hudakz 3:5b17e4656dd0 1782 put into uip_len. If the application don't have any data to
hudakz 3:5b17e4656dd0 1783 send, uip_len must be set to 0. */
hudakz 3:5b17e4656dd0 1784 if(uip_flags & (UIP_NEWDATA | UIP_ACKDATA)) {
hudakz 3:5b17e4656dd0 1785 uip_slen = 0;
hudakz 3:5b17e4656dd0 1786 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1787
hudakz 3:5b17e4656dd0 1788 appsend:
hudakz 3:5b17e4656dd0 1789 if(uip_flags & UIP_ABORT) {
hudakz 3:5b17e4656dd0 1790 uip_slen = 0;
hudakz 3:5b17e4656dd0 1791 uip_connr->tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 1792 BUF->flags = TCP_RST | TCP_ACK;
hudakz 3:5b17e4656dd0 1793 goto tcp_send_nodata;
hudakz 3:5b17e4656dd0 1794 }
hudakz 3:5b17e4656dd0 1795
hudakz 3:5b17e4656dd0 1796 if(uip_flags & UIP_CLOSE) {
hudakz 3:5b17e4656dd0 1797 uip_slen = 0;
hudakz 3:5b17e4656dd0 1798 uip_connr->len = 1;
hudakz 3:5b17e4656dd0 1799 uip_connr->tcpstateflags = UIP_FIN_WAIT_1;
hudakz 3:5b17e4656dd0 1800 uip_connr->nrtx = 0;
hudakz 3:5b17e4656dd0 1801 BUF->flags = TCP_FIN | TCP_ACK;
hudakz 3:5b17e4656dd0 1802 goto tcp_send_nodata;
hudakz 3:5b17e4656dd0 1803 }
hudakz 3:5b17e4656dd0 1804
hudakz 3:5b17e4656dd0 1805 /* If uip_slen > 0, the application has data to be sent. */
hudakz 3:5b17e4656dd0 1806 if(uip_slen > 0) {
hudakz 3:5b17e4656dd0 1807
hudakz 3:5b17e4656dd0 1808 /* If the connection has acknowledged data, the contents of
hudakz 4:d774541a34da 1809 the ->len variable should be discarded. */
hudakz 3:5b17e4656dd0 1810 if((uip_flags & UIP_ACKDATA) != 0) {
hudakz 3:5b17e4656dd0 1811 uip_connr->len = 0;
hudakz 3:5b17e4656dd0 1812 }
hudakz 3:5b17e4656dd0 1813
hudakz 3:5b17e4656dd0 1814 /* If the ->len variable is non-zero the connection has
hudakz 4:d774541a34da 1815 already data in transit and cannot send anymore right
hudakz 4:d774541a34da 1816 now. */
hudakz 3:5b17e4656dd0 1817 if(uip_connr->len == 0) {
hudakz 3:5b17e4656dd0 1818
hudakz 3:5b17e4656dd0 1819 /* The application cannot send more than what is allowed by
hudakz 4:d774541a34da 1820 the mss (the minumum of the MSS and the available
hudakz 4:d774541a34da 1821 window). */
hudakz 3:5b17e4656dd0 1822 if(uip_slen > uip_connr->mss) {
hudakz 3:5b17e4656dd0 1823 uip_slen = uip_connr->mss;
hudakz 3:5b17e4656dd0 1824 }
hudakz 3:5b17e4656dd0 1825
hudakz 3:5b17e4656dd0 1826 /* Remember how much data we send out now so that we know
hudakz 4:d774541a34da 1827 when everything has been acknowledged. */
hudakz 3:5b17e4656dd0 1828 uip_connr->len = uip_slen;
hudakz 3:5b17e4656dd0 1829 }
hudakz 3:5b17e4656dd0 1830 else {
hudakz 3:5b17e4656dd0 1831
hudakz 3:5b17e4656dd0 1832 /* If the application already had unacknowledged data, we
hudakz 4:d774541a34da 1833 make sure that the application does not send (i.e.,
hudakz 4:d774541a34da 1834 retransmit) out more than it previously sent out. */
hudakz 3:5b17e4656dd0 1835 uip_slen = uip_connr->len;
hudakz 3:5b17e4656dd0 1836 }
hudakz 3:5b17e4656dd0 1837 }
hudakz 3:5b17e4656dd0 1838
hudakz 3:5b17e4656dd0 1839 uip_connr->nrtx = 0;
hudakz 3:5b17e4656dd0 1840 apprexmit:
hudakz 3:5b17e4656dd0 1841 uip_appdata = uip_sappdata;
hudakz 3:5b17e4656dd0 1842
hudakz 3:5b17e4656dd0 1843 /* If the application has data to be sent, or if the incoming
hudakz 3:5b17e4656dd0 1844 packet had new data in it, we must send out a packet. */
hudakz 3:5b17e4656dd0 1845 if(uip_slen > 0 && uip_connr->len > 0) {
hudakz 3:5b17e4656dd0 1846
hudakz 3:5b17e4656dd0 1847 /* Add the length of the IP and TCP headers. */
hudakz 3:5b17e4656dd0 1848 uip_len = uip_connr->len + UIP_TCPIP_HLEN;
hudakz 3:5b17e4656dd0 1849
hudakz 3:5b17e4656dd0 1850 /* We always set the ACK flag in response packets. */
hudakz 3:5b17e4656dd0 1851 BUF->flags = TCP_ACK | TCP_PSH;
hudakz 3:5b17e4656dd0 1852
hudakz 3:5b17e4656dd0 1853 /* Send the packet. */
hudakz 3:5b17e4656dd0 1854 goto tcp_send_noopts;
hudakz 3:5b17e4656dd0 1855 }
hudakz 3:5b17e4656dd0 1856
hudakz 3:5b17e4656dd0 1857 /* If there is no data to send, just send out a pure ACK if
hudakz 4:d774541a34da 1858 there is newdata. */
hudakz 3:5b17e4656dd0 1859 if(uip_flags & UIP_NEWDATA) {
hudakz 3:5b17e4656dd0 1860 uip_len = UIP_TCPIP_HLEN;
hudakz 3:5b17e4656dd0 1861 BUF->flags = TCP_ACK;
hudakz 3:5b17e4656dd0 1862 goto tcp_send_noopts;
hudakz 3:5b17e4656dd0 1863 }
hudakz 3:5b17e4656dd0 1864 }
hudakz 3:5b17e4656dd0 1865
hudakz 3:5b17e4656dd0 1866 goto drop;
hudakz 3:5b17e4656dd0 1867
hudakz 3:5b17e4656dd0 1868 case UIP_LAST_ACK:
hudakz 3:5b17e4656dd0 1869 /* We can close this connection if the peer has acknowledged our
hudakz 3:5b17e4656dd0 1870 FIN. This is indicated by the UIP_ACKDATA flag. */
hudakz 3:5b17e4656dd0 1871 if(uip_flags & UIP_ACKDATA) {
hudakz 3:5b17e4656dd0 1872 uip_connr->tcpstateflags = UIP_CLOSED;
hudakz 3:5b17e4656dd0 1873 uip_flags = UIP_CLOSE;
hudakz 3:5b17e4656dd0 1874 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1875 }
hudakz 3:5b17e4656dd0 1876 break;
hudakz 3:5b17e4656dd0 1877
hudakz 3:5b17e4656dd0 1878 case UIP_FIN_WAIT_1:
hudakz 3:5b17e4656dd0 1879 /* The application has closed the connection, but the remote host
hudakz 3:5b17e4656dd0 1880 hasn't closed its end yet. Thus we do nothing but wait for a
hudakz 3:5b17e4656dd0 1881 FIN from the other side. */
hudakz 3:5b17e4656dd0 1882 if(uip_len > 0) {
hudakz 3:5b17e4656dd0 1883 uip_add_rcv_nxt(uip_len);
hudakz 3:5b17e4656dd0 1884 }
hudakz 3:5b17e4656dd0 1885
hudakz 3:5b17e4656dd0 1886 if(BUF->flags & TCP_FIN) {
hudakz 3:5b17e4656dd0 1887 if(uip_flags & UIP_ACKDATA) {
hudakz 3:5b17e4656dd0 1888 uip_connr->tcpstateflags = UIP_TIME_WAIT;
hudakz 3:5b17e4656dd0 1889 uip_connr->timer = 0;
hudakz 3:5b17e4656dd0 1890 uip_connr->len = 0;
hudakz 3:5b17e4656dd0 1891 }
hudakz 3:5b17e4656dd0 1892 else {
hudakz 3:5b17e4656dd0 1893 uip_connr->tcpstateflags = UIP_CLOSING;
hudakz 3:5b17e4656dd0 1894 }
hudakz 3:5b17e4656dd0 1895
hudakz 3:5b17e4656dd0 1896 uip_add_rcv_nxt(1);
hudakz 3:5b17e4656dd0 1897 uip_flags = UIP_CLOSE;
hudakz 3:5b17e4656dd0 1898 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1899 goto tcp_send_ack;
hudakz 3:5b17e4656dd0 1900 }
hudakz 3:5b17e4656dd0 1901 else
hudakz 3:5b17e4656dd0 1902 if(uip_flags & UIP_ACKDATA) {
hudakz 3:5b17e4656dd0 1903 uip_connr->tcpstateflags = UIP_FIN_WAIT_2;
hudakz 3:5b17e4656dd0 1904 uip_connr->len = 0;
hudakz 3:5b17e4656dd0 1905 goto drop;
hudakz 3:5b17e4656dd0 1906 }
hudakz 3:5b17e4656dd0 1907
hudakz 3:5b17e4656dd0 1908 if(uip_len > 0) {
hudakz 3:5b17e4656dd0 1909 goto tcp_send_ack;
hudakz 3:5b17e4656dd0 1910 }
hudakz 3:5b17e4656dd0 1911
hudakz 3:5b17e4656dd0 1912 goto drop;
hudakz 3:5b17e4656dd0 1913
hudakz 3:5b17e4656dd0 1914 case UIP_FIN_WAIT_2:
hudakz 3:5b17e4656dd0 1915 if(uip_len > 0) {
hudakz 3:5b17e4656dd0 1916 uip_add_rcv_nxt(uip_len);
hudakz 3:5b17e4656dd0 1917 }
hudakz 3:5b17e4656dd0 1918
hudakz 3:5b17e4656dd0 1919 if(BUF->flags & TCP_FIN) {
hudakz 3:5b17e4656dd0 1920 uip_connr->tcpstateflags = UIP_TIME_WAIT;
hudakz 3:5b17e4656dd0 1921 uip_connr->timer = 0;
hudakz 3:5b17e4656dd0 1922 uip_add_rcv_nxt(1);
hudakz 3:5b17e4656dd0 1923 uip_flags = UIP_CLOSE;
hudakz 3:5b17e4656dd0 1924 UIP_APPCALL();
hudakz 3:5b17e4656dd0 1925 goto tcp_send_ack;
hudakz 3:5b17e4656dd0 1926 }
hudakz 3:5b17e4656dd0 1927
hudakz 3:5b17e4656dd0 1928 if(uip_len > 0) {
hudakz 3:5b17e4656dd0 1929 goto tcp_send_ack;
hudakz 3:5b17e4656dd0 1930 }
hudakz 3:5b17e4656dd0 1931
hudakz 3:5b17e4656dd0 1932 goto drop;
hudakz 3:5b17e4656dd0 1933
hudakz 3:5b17e4656dd0 1934 case UIP_TIME_WAIT:
hudakz 3:5b17e4656dd0 1935 goto tcp_send_ack;
hudakz 3:5b17e4656dd0 1936
hudakz 3:5b17e4656dd0 1937 case UIP_CLOSING:
hudakz 3:5b17e4656dd0 1938 if(uip_flags & UIP_ACKDATA) {
hudakz 3:5b17e4656dd0 1939 uip_connr->tcpstateflags = UIP_TIME_WAIT;
hudakz 3:5b17e4656dd0 1940 uip_connr->timer = 0;
hudakz 3:5b17e4656dd0 1941 }
hudakz 3:5b17e4656dd0 1942 }
hudakz 3:5b17e4656dd0 1943
hudakz 3:5b17e4656dd0 1944 goto drop;
hudakz 3:5b17e4656dd0 1945
hudakz 3:5b17e4656dd0 1946 /* We jump here when we are ready to send the packet, and just want
hudakz 3:5b17e4656dd0 1947 to set the appropriate TCP sequence numbers in the TCP header. */
hudakz 3:5b17e4656dd0 1948 tcp_send_ack:
hudakz 3:5b17e4656dd0 1949 BUF->flags = TCP_ACK;
hudakz 3:5b17e4656dd0 1950 tcp_send_nodata:
hudakz 3:5b17e4656dd0 1951 uip_len = UIP_IPTCPH_LEN;
hudakz 3:5b17e4656dd0 1952 tcp_send_noopts:
hudakz 3:5b17e4656dd0 1953 BUF->tcpoffset = (UIP_TCPH_LEN / 4) << 4;
hudakz 3:5b17e4656dd0 1954 tcp_send:
hudakz 3:5b17e4656dd0 1955 /* We're done with the input processing. We are now ready to send a
hudakz 3:5b17e4656dd0 1956 reply. Our job is to fill in all the fields of the TCP and IP
hudakz 3:5b17e4656dd0 1957 headers before calculating the checksum and finally send the
hudakz 3:5b17e4656dd0 1958 packet. */
hudakz 3:5b17e4656dd0 1959 BUF->ackno[0] = uip_connr->rcv_nxt[0];
hudakz 3:5b17e4656dd0 1960 BUF->ackno[1] = uip_connr->rcv_nxt[1];
hudakz 3:5b17e4656dd0 1961 BUF->ackno[2] = uip_connr->rcv_nxt[2];
hudakz 3:5b17e4656dd0 1962 BUF->ackno[3] = uip_connr->rcv_nxt[3];
hudakz 3:5b17e4656dd0 1963
hudakz 3:5b17e4656dd0 1964 BUF->seqno[0] = uip_connr->snd_nxt[0];
hudakz 3:5b17e4656dd0 1965 BUF->seqno[1] = uip_connr->snd_nxt[1];
hudakz 3:5b17e4656dd0 1966 BUF->seqno[2] = uip_connr->snd_nxt[2];
hudakz 3:5b17e4656dd0 1967 BUF->seqno[3] = uip_connr->snd_nxt[3];
hudakz 3:5b17e4656dd0 1968
hudakz 3:5b17e4656dd0 1969 BUF->proto = UIP_PROTO_TCP;
hudakz 3:5b17e4656dd0 1970
hudakz 3:5b17e4656dd0 1971 BUF->srcport = uip_connr->lport;
hudakz 3:5b17e4656dd0 1972 BUF->destport = uip_connr->rport;
hudakz 3:5b17e4656dd0 1973
hudakz 3:5b17e4656dd0 1974 uip_ipaddr_copy(BUF->srcipaddr, uip_hostaddr);
hudakz 3:5b17e4656dd0 1975 uip_ipaddr_copy(BUF->destipaddr, uip_connr->ripaddr);
hudakz 3:5b17e4656dd0 1976
hudakz 3:5b17e4656dd0 1977 if(uip_connr->tcpstateflags & UIP_STOPPED) {
hudakz 3:5b17e4656dd0 1978
hudakz 3:5b17e4656dd0 1979 /* If the connection has issued uip_stop(), we advertise a zero
hudakz 3:5b17e4656dd0 1980 window so that the remote host will stop sending data. */
hudakz 3:5b17e4656dd0 1981 BUF->wnd[0] = BUF->wnd[1] = 0;
hudakz 3:5b17e4656dd0 1982 }
hudakz 3:5b17e4656dd0 1983 else {
hudakz 3:5b17e4656dd0 1984 BUF->wnd[0] = ((UIP_RECEIVE_WINDOW) >> 8);
hudakz 3:5b17e4656dd0 1985 BUF->wnd[1] = ((UIP_RECEIVE_WINDOW) & 0xff);
hudakz 3:5b17e4656dd0 1986 }
hudakz 3:5b17e4656dd0 1987
hudakz 3:5b17e4656dd0 1988 tcp_send_noconn:
hudakz 3:5b17e4656dd0 1989 BUF->ttl = UIP_TTL;
hudakz 3:5b17e4656dd0 1990 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 1991 /* For IPv6, the IP length field does not include the IPv6 IP header
hudakz 3:5b17e4656dd0 1992 length. */
hudakz 3:5b17e4656dd0 1993
hudakz 3:5b17e4656dd0 1994 BUF->len[0] = ((uip_len - UIP_IPH_LEN) >> 8);
hudakz 3:5b17e4656dd0 1995 BUF->len[1] = ((uip_len - UIP_IPH_LEN) & 0xff);
hudakz 3:5b17e4656dd0 1996 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 1997 BUF->len[0] = (uip_len >> 8);
hudakz 3:5b17e4656dd0 1998 BUF->len[1] = (uip_len & 0xff);
hudakz 3:5b17e4656dd0 1999 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 2000
hudakz 3:5b17e4656dd0 2001 BUF->urgp[0] = BUF->urgp[1] = 0;
hudakz 3:5b17e4656dd0 2002
hudakz 3:5b17e4656dd0 2003 /* Calculate TCP checksum. */
hudakz 3:5b17e4656dd0 2004 BUF->tcpchksum = 0;
hudakz 3:5b17e4656dd0 2005 BUF->tcpchksum = ~(uip_tcpchksum());
hudakz 3:5b17e4656dd0 2006
hudakz 3:5b17e4656dd0 2007 ip_send_nolen:
hudakz 3:5b17e4656dd0 2008 #if UIP_CONF_IPV6
hudakz 3:5b17e4656dd0 2009 BUF->vtc = 0x60;
hudakz 3:5b17e4656dd0 2010 BUF->tcflow = 0x00;
hudakz 3:5b17e4656dd0 2011 BUF->flow = 0x00;
hudakz 3:5b17e4656dd0 2012 #else /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 2013 BUF->vhl = 0x45;
hudakz 3:5b17e4656dd0 2014 BUF->tos = 0;
hudakz 3:5b17e4656dd0 2015 BUF->ipoffset[0] = BUF->ipoffset[1] = 0;
hudakz 3:5b17e4656dd0 2016 ++ipid;
hudakz 3:5b17e4656dd0 2017 BUF->ipid[0] = ipid >> 8;
hudakz 3:5b17e4656dd0 2018 BUF->ipid[1] = ipid & 0xff;
hudakz 3:5b17e4656dd0 2019
hudakz 3:5b17e4656dd0 2020 /* Calculate IP checksum. */
hudakz 3:5b17e4656dd0 2021 BUF->ipchksum = 0;
hudakz 3:5b17e4656dd0 2022 BUF->ipchksum = ~(uip_ipchksum());
hudakz 3:5b17e4656dd0 2023 DEBUG_PRINTF("uip ip_send_nolen: chkecum 0x%04x\n", uip_ipchksum());
hudakz 3:5b17e4656dd0 2024 #endif /* UIP_CONF_IPV6 */
hudakz 3:5b17e4656dd0 2025
hudakz 3:5b17e4656dd0 2026 UIP_STAT(++uip_stat.tcp.sent);
hudakz 3:5b17e4656dd0 2027 send:
hudakz 3:5b17e4656dd0 2028 DEBUG_PRINTF("Sending packet with length %d (%d)\n", uip_len, (BUF->len[0] << 8) | BUF->len[1]);
hudakz 3:5b17e4656dd0 2029
hudakz 3:5b17e4656dd0 2030 UIP_STAT(++uip_stat.ip.sent);
hudakz 3:5b17e4656dd0 2031
hudakz 3:5b17e4656dd0 2032 /* Return and let the caller do the actual transmission. */
hudakz 3:5b17e4656dd0 2033 uip_flags = 0;
hudakz 3:5b17e4656dd0 2034 return;
hudakz 3:5b17e4656dd0 2035 drop:
hudakz 3:5b17e4656dd0 2036 uip_len = 0;
hudakz 3:5b17e4656dd0 2037 uip_flags = 0;
hudakz 3:5b17e4656dd0 2038 return;
hudakz 3:5b17e4656dd0 2039 }
hudakz 3:5b17e4656dd0 2040
hudakz 3:5b17e4656dd0 2041 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 2042 u16_t htons(u16_t val) {
hudakz 3:5b17e4656dd0 2043 return HTONS(val);
hudakz 3:5b17e4656dd0 2044 }
hudakz 3:5b17e4656dd0 2045
hudakz 3:5b17e4656dd0 2046 /*---------------------------------------------------------------------------*/
hudakz 3:5b17e4656dd0 2047 void uip_send(const void* data, int len) {
hudakz 3:5b17e4656dd0 2048 uip_slen = len;
hudakz 3:5b17e4656dd0 2049 if(len > 0) {
hudakz 3:5b17e4656dd0 2050 if(data != uip_sappdata) {
hudakz 3:5b17e4656dd0 2051 memcpy(uip_sappdata, (data), uip_slen);
hudakz 3:5b17e4656dd0 2052 }
hudakz 3:5b17e4656dd0 2053 }
hudakz 3:5b17e4656dd0 2054 }
hudakz 3:5b17e4656dd0 2055
hudakz 3:5b17e4656dd0 2056 /** @} */