56 #ifndef LWIP_HDR_TCP_PRIV_H 57 #define LWIP_HDR_TCP_PRIV_H 86 void tcp_slowtmr (
void);
87 void tcp_fasttmr (
void);
93 void tcp_txnow (
void);
96 void tcp_input (
struct pbuf *p,
struct netif *inp);
98 struct tcp_pcb * tcp_alloc (u8_t prio);
99 void tcp_abandon (
struct tcp_pcb *pcb,
int reset);
100 err_t tcp_send_empty_ack(
struct tcp_pcb *pcb);
101 void tcp_rexmit (
struct tcp_pcb *pcb);
102 void tcp_rexmit_rto (
struct tcp_pcb *pcb);
103 void tcp_rexmit_fast (
struct tcp_pcb *pcb);
104 u32_t tcp_update_rcv_ann_wnd(
struct tcp_pcb *pcb);
105 err_t tcp_process_refused_data(
struct tcp_pcb *pcb);
116 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \ 117 ((tpcb)->flags & (TF_NODELAY | TF_INFR)) || \ 118 (((tpcb)->unsent != NULL) && (((tpcb)->unsent->next != NULL) || \ 119 ((tpcb)->unsent->len >= (tpcb)->mss))) || \ 120 ((tcp_sndbuf(tpcb) == 0) || (tcp_sndqueuelen(tpcb) >= TCP_SND_QUEUELEN)) \ 122 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK) 125 #define TCP_SEQ_LT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) < 0) 126 #define TCP_SEQ_LEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) <= 0) 127 #define TCP_SEQ_GT(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) > 0) 128 #define TCP_SEQ_GEQ(a,b) ((s32_t)((u32_t)(a) - (u32_t)(b)) >= 0) 131 #define TCP_SEQ_BETWEEN(a,b,c) ((c)-(b) >= (a)-(b)) 133 #define TCP_SEQ_BETWEEN(a,b,c) (TCP_SEQ_GEQ(a,b) && TCP_SEQ_LEQ(a,c)) 135 #ifndef TCP_TMR_INTERVAL 136 #define TCP_TMR_INTERVAL 250 139 #ifndef TCP_FAST_INTERVAL 140 #define TCP_FAST_INTERVAL TCP_TMR_INTERVAL 143 #ifndef TCP_SLOW_INTERVAL 144 #define TCP_SLOW_INTERVAL (2*TCP_TMR_INTERVAL) 147 #define TCP_FIN_WAIT_TIMEOUT 20000 148 #define TCP_SYN_RCVD_TIMEOUT 20000 150 #define TCP_OOSEQ_TIMEOUT 6U 153 #define TCP_MSL 60000UL 157 #ifndef TCP_KEEPIDLE_DEFAULT 158 #define TCP_KEEPIDLE_DEFAULT 7200000UL 161 #ifndef TCP_KEEPINTVL_DEFAULT 162 #define TCP_KEEPINTVL_DEFAULT 75000UL 165 #ifndef TCP_KEEPCNT_DEFAULT 166 #define TCP_KEEPCNT_DEFAULT 9U 169 #define TCP_MAXIDLE TCP_KEEPCNT_DEFAULT * TCP_KEEPINTVL_DEFAULT 171 #define TCP_TCPLEN(seg) ((seg)->len + (((TCPH_FLAGS((seg)->tcphdr) & (TCP_FIN | TCP_SYN)) != 0) ? 1U : 0U)) 175 #define TF_RESET (u8_t)0x08U 176 #define TF_CLOSED (u8_t)0x10U 177 #define TF_GOT_FIN (u8_t)0x20U 182 #define TCP_EVENT_ACCEPT(lpcb,pcb,arg,err,ret) ret = lwip_tcp_event(arg, (pcb),\ 183 LWIP_EVENT_ACCEPT, NULL, 0, err) 184 #define TCP_EVENT_SENT(pcb,space,ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb),\ 185 LWIP_EVENT_SENT, NULL, space, ERR_OK) 186 #define TCP_EVENT_RECV(pcb,p,err,ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb),\ 187 LWIP_EVENT_RECV, (p), 0, (err)) 188 #define TCP_EVENT_CLOSED(pcb,ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb),\ 189 LWIP_EVENT_RECV, NULL, 0, ERR_OK) 190 #define TCP_EVENT_CONNECTED(pcb,err,ret) ret = lwip_tcp_event((pcb)->callback_arg, (pcb),\ 191 LWIP_EVENT_CONNECTED, NULL, 0, (err)) 192 #define TCP_EVENT_POLL(pcb,ret) do { if ((pcb)->state != SYN_RCVD) { \ 193 ret = lwip_tcp_event((pcb)->callback_arg, (pcb), LWIP_EVENT_POLL, NULL, 0, ERR_OK); \ 195 ret = ERR_ARG; } } while(0) 196 #define TCP_EVENT_ERR(last_state,errf,arg,err) do { if (last_state != SYN_RCVD) { \ 197 lwip_tcp_event((arg), NULL, LWIP_EVENT_ERR, NULL, 0, (err)); } } while(0) 201 #define TCP_EVENT_ACCEPT(lpcb,pcb,arg,err,ret) \ 203 if((lpcb)->accept != NULL) \ 204 (ret) = (lpcb)->accept((arg),(pcb),(err)); \ 205 else (ret) = ERR_ARG; \ 208 #define TCP_EVENT_SENT(pcb,space,ret) \ 210 if((pcb)->sent != NULL) \ 211 (ret) = (pcb)->sent((pcb)->callback_arg,(pcb),(space)); \ 212 else (ret) = ERR_OK; \ 215 #define TCP_EVENT_RECV(pcb,p,err,ret) \ 217 if((pcb)->recv != NULL) { \ 218 (ret) = (pcb)->recv((pcb)->callback_arg,(pcb),(p),(err));\ 220 (ret) = tcp_recv_null(NULL, (pcb), (p), (err)); \ 224 #define TCP_EVENT_CLOSED(pcb,ret) \ 226 if(((pcb)->recv != NULL)) { \ 227 (ret) = (pcb)->recv((pcb)->callback_arg,(pcb),NULL,ERR_OK);\ 233 #define TCP_EVENT_CONNECTED(pcb,err,ret) \ 235 if((pcb)->connected != NULL) \ 236 (ret) = (pcb)->connected((pcb)->callback_arg,(pcb),(err)); \ 237 else (ret) = ERR_OK; \ 240 #define TCP_EVENT_POLL(pcb,ret) \ 242 if((pcb)->poll != NULL) \ 243 (ret) = (pcb)->poll((pcb)->callback_arg,(pcb)); \ 244 else (ret) = ERR_OK; \ 247 #define TCP_EVENT_ERR(last_state,errf,arg,err) \ 249 LWIP_UNUSED_ARG(last_state); \ 251 (errf)((arg),(err)); \ 257 #if TCP_OVERSIZE && defined(LWIP_DEBUG) 258 #define TCP_OVERSIZE_DBGCHECK 1 260 #define TCP_OVERSIZE_DBGCHECK 0 264 #define TCP_CHECKSUM_ON_COPY (LWIP_CHECKSUM_ON_COPY && CHECKSUM_GEN_TCP) 268 struct tcp_seg *next;
271 #if TCP_OVERSIZE_DBGCHECK 276 #if TCP_CHECKSUM_ON_COPY 281 #define TF_SEG_OPTS_MSS (u8_t)0x01U 282 #define TF_SEG_OPTS_TS (u8_t)0x02U 283 #define TF_SEG_DATA_CHECKSUMMED (u8_t)0x04U 285 #define TF_SEG_OPTS_WND_SCALE (u8_t)0x08U 289 #define LWIP_TCP_OPT_EOL 0 290 #define LWIP_TCP_OPT_NOP 1 291 #define LWIP_TCP_OPT_MSS 2 292 #define LWIP_TCP_OPT_WS 3 293 #define LWIP_TCP_OPT_TS 8 295 #define LWIP_TCP_OPT_LEN_MSS 4 296 #if LWIP_TCP_TIMESTAMPS 297 #define LWIP_TCP_OPT_LEN_TS 10 298 #define LWIP_TCP_OPT_LEN_TS_OUT 12 300 #define LWIP_TCP_OPT_LEN_TS_OUT 0 303 #define LWIP_TCP_OPT_LEN_WS 3 304 #define LWIP_TCP_OPT_LEN_WS_OUT 4 306 #define LWIP_TCP_OPT_LEN_WS_OUT 0 309 #define LWIP_TCP_OPT_LENGTH(flags) \ 310 (flags & TF_SEG_OPTS_MSS ? LWIP_TCP_OPT_LEN_MSS : 0) + \ 311 (flags & TF_SEG_OPTS_TS ? LWIP_TCP_OPT_LEN_TS_OUT : 0) + \ 312 (flags & TF_SEG_OPTS_WND_SCALE ? LWIP_TCP_OPT_LEN_WS_OUT : 0) 315 #define TCP_BUILD_MSS_OPTION(mss) lwip_htonl(0x02040000 | ((mss) & 0xFFFF)) 318 #define TCPWNDSIZE_F U32_F 319 #define TCPWND_MAX 0xFFFFFFFFU 320 #define TCPWND_CHECK16(x) LWIP_ASSERT("window size > 0xFFFF", (x) <= 0xFFFF) 321 #define TCPWND_MIN16(x) ((u16_t)LWIP_MIN((x), 0xFFFF)) 323 #define TCPWNDSIZE_F U16_F 324 #define TCPWND_MAX 0xFFFFU 325 #define TCPWND_CHECK16(x) 326 #define TCPWND_MIN16(x) x 330 extern struct tcp_pcb *tcp_input_pcb;
331 extern u32_t tcp_ticks;
332 extern u8_t tcp_active_pcbs_changed;
335 union tcp_listen_pcbs_t {
336 struct tcp_pcb_listen *listen_pcbs;
337 struct tcp_pcb *pcbs;
339 extern struct tcp_pcb *tcp_bound_pcbs;
340 extern union tcp_listen_pcbs_t tcp_listen_pcbs;
341 extern struct tcp_pcb *tcp_active_pcbs;
344 extern struct tcp_pcb *tcp_tw_pcbs;
346 #define NUM_TCP_PCB_LISTS_NO_TIME_WAIT 3 347 #define NUM_TCP_PCB_LISTS 4 348 extern struct tcp_pcb **
const tcp_pcb_lists[NUM_TCP_PCB_LISTS];
358 #ifndef TCP_DEBUG_PCB_LISTS 359 #define TCP_DEBUG_PCB_LISTS 0 361 #if TCP_DEBUG_PCB_LISTS 362 #define TCP_REG(pcbs, npcb) do {\ 363 struct tcp_pcb *tcp_tmp_pcb; \ 364 LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %d\n", (npcb), (npcb)->local_port)); \ 365 for (tcp_tmp_pcb = *(pcbs); \ 366 tcp_tmp_pcb != NULL; \ 367 tcp_tmp_pcb = tcp_tmp_pcb->next) { \ 368 LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \ 370 LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", ((pcbs) == &tcp_bound_pcbs) || ((npcb)->state != CLOSED)); \ 371 (npcb)->next = *(pcbs); \ 372 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \ 374 LWIP_ASSERT("TCP_RMV: tcp_pcbs sane", tcp_pcbs_sane()); \ 375 tcp_timer_needed(); \ 377 #define TCP_RMV(pcbs, npcb) do { \ 378 struct tcp_pcb *tcp_tmp_pcb; \ 379 LWIP_ASSERT("TCP_RMV: pcbs != NULL", *(pcbs) != NULL); \ 380 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removing %p from %p\n", (npcb), *(pcbs))); \ 381 if(*(pcbs) == (npcb)) { \ 382 *(pcbs) = (*pcbs)->next; \ 383 } else for (tcp_tmp_pcb = *(pcbs); tcp_tmp_pcb != NULL; tcp_tmp_pcb = tcp_tmp_pcb->next) { \ 384 if(tcp_tmp_pcb->next == (npcb)) { \ 385 tcp_tmp_pcb->next = (npcb)->next; \ 389 (npcb)->next = NULL; \ 390 LWIP_ASSERT("TCP_RMV: tcp_pcbs sane", tcp_pcbs_sane()); \ 391 LWIP_DEBUGF(TCP_DEBUG, ("TCP_RMV: removed %p from %p\n", (npcb), *(pcbs))); \ 396 #define TCP_REG(pcbs, npcb) \ 398 (npcb)->next = *pcbs; \ 400 tcp_timer_needed(); \ 403 #define TCP_RMV(pcbs, npcb) \ 405 if(*(pcbs) == (npcb)) { \ 406 (*(pcbs)) = (*pcbs)->next; \ 409 struct tcp_pcb *tcp_tmp_pcb; \ 410 for (tcp_tmp_pcb = *pcbs; \ 411 tcp_tmp_pcb != NULL; \ 412 tcp_tmp_pcb = tcp_tmp_pcb->next) { \ 413 if(tcp_tmp_pcb->next == (npcb)) { \ 414 tcp_tmp_pcb->next = (npcb)->next; \ 419 (npcb)->next = NULL; \ 424 #define TCP_REG_ACTIVE(npcb) \ 426 TCP_REG(&tcp_active_pcbs, npcb); \ 427 tcp_active_pcbs_changed = 1; \ 430 #define TCP_RMV_ACTIVE(npcb) \ 432 TCP_RMV(&tcp_active_pcbs, npcb); \ 433 tcp_active_pcbs_changed = 1; \ 436 #define TCP_PCB_REMOVE_ACTIVE(pcb) \ 438 tcp_pcb_remove(&tcp_active_pcbs, pcb); \ 439 tcp_active_pcbs_changed = 1; \ 444 struct tcp_pcb *tcp_pcb_copy(
struct tcp_pcb *pcb);
445 void tcp_pcb_purge(
struct tcp_pcb *pcb);
446 void tcp_pcb_remove(
struct tcp_pcb **pcblist,
struct tcp_pcb *pcb);
448 void tcp_segs_free(
struct tcp_seg *seg);
449 void tcp_seg_free(
struct tcp_seg *seg);
450 struct tcp_seg *tcp_seg_copy(
struct tcp_seg *seg);
452 #define tcp_ack(pcb) \ 454 if((pcb)->flags & TF_ACK_DELAY) { \ 455 (pcb)->flags &= ~TF_ACK_DELAY; \ 456 (pcb)->flags |= TF_ACK_NOW; \ 459 (pcb)->flags |= TF_ACK_DELAY; \ 463 #define tcp_ack_now(pcb) \ 465 (pcb)->flags |= TF_ACK_NOW; \ 468 err_t tcp_send_fin(
struct tcp_pcb *pcb);
469 err_t tcp_enqueue_flags(
struct tcp_pcb *pcb, u8_t flags);
471 void tcp_rexmit_seg(
struct tcp_pcb *pcb,
struct tcp_seg *seg);
473 void tcp_rst(u32_t seqno, u32_t ackno,
474 const ip_addr_t *local_ip,
const ip_addr_t *remote_ip,
475 u16_t local_port, u16_t remote_port);
477 u32_t tcp_next_iss(
struct tcp_pcb *pcb);
479 err_t tcp_keepalive(
struct tcp_pcb *pcb);
480 err_t tcp_zero_window_probe(
struct tcp_pcb *pcb);
481 void tcp_trigger_input_pcb_close(
void);
483 #if TCP_CALCULATE_EFF_SEND_MSS 484 u16_t tcp_eff_send_mss_impl(u16_t sendmss,
const ip_addr_t *dest
485 #
if LWIP_IPV6 || LWIP_IPV4_SRC_ROUTING
486 ,
const ip_addr_t *src
489 #if LWIP_IPV6 || LWIP_IPV4_SRC_ROUTING 490 #define tcp_eff_send_mss(sendmss, src, dest) tcp_eff_send_mss_impl(sendmss, dest, src) 492 #define tcp_eff_send_mss(sendmss, src, dest) tcp_eff_send_mss_impl(sendmss, dest) 496 #if LWIP_CALLBACK_API 497 err_t tcp_recv_null(
void *arg,
struct tcp_pcb *pcb,
struct pbuf *p,
err_t err);
500 #if TCP_DEBUG || TCP_INPUT_DEBUG || TCP_OUTPUT_DEBUG 501 void tcp_debug_print(
struct tcp_hdr *tcphdr);
502 void tcp_debug_print_flags(u8_t flags);
503 void tcp_debug_print_state(
enum tcp_state s);
504 void tcp_debug_print_pcbs(
void);
505 s16_t tcp_pcbs_sane(
void);
507 # define tcp_debug_print(tcphdr) 508 # define tcp_debug_print_flags(flags) 509 # define tcp_debug_print_state(s) 510 # define tcp_debug_print_pcbs() 511 # define tcp_pcbs_sane() 1 516 void tcp_timer_needed(
void);
518 void tcp_netif_ip_addr_changed(
const ip_addr_t* old_addr,
const ip_addr_t* new_addr);