📄 tcp.c
字号:
} }/*-----------------------------------------------------------------------------------*//*-----------------------------------------------------------------------------------*/struct tcp_pcb *tcp_alloc(u8_t prio){ struct tcp_pcb *pcb; u32_t iss; pcb = memp_malloc(MEMP_TCP_PCB); if(pcb == NULL) { /* Try killing oldest connection in TIME-WAIT. */ DEBUGF(TCP_DEBUG, ("tcp_alloc: killing off oldest TIME-WAIT connection\n")); tcp_kill_timewait(); pcb = memp_malloc(MEMP_TCP_PCB); if(pcb == NULL) { tcp_kill_prio(prio); pcb = memp_malloc(MEMP_TCP_PCB); } } if(pcb != NULL) { memset(pcb, 0, sizeof(struct tcp_pcb)); pcb->prio = TCP_PRIO_NORMAL; pcb->snd_buf = TCP_SND_BUF; pcb->snd_queuelen = 0; pcb->rcv_wnd = TCP_WND; pcb->mss = TCP_MSS; pcb->rto = 3000 / TCP_SLOW_INTERVAL; pcb->sa = 0; pcb->sv = 3000 / TCP_SLOW_INTERVAL; pcb->rtime = 0; pcb->cwnd = 1; iss = tcp_next_iss(); pcb->snd_wl2 = iss; pcb->snd_nxt = iss; pcb->snd_max = iss; pcb->lastack = iss; pcb->snd_lbb = iss; pcb->tmr = tcp_ticks; pcb->polltmr = 0;#if LWIP_CALLBACK_API pcb->recv = tcp_recv_null;#endif /* LWIP_CALLBACK_API */ } return pcb;}/*-----------------------------------------------------------------------------------*//* * tcp_new(): * * Creates a new TCP protocol control block but doesn't place it on * any of the TCP PCB lists. * *//*-----------------------------------------------------------------------------------*/struct tcp_pcb *tcp_new(void){ return tcp_alloc(TCP_PRIO_NORMAL);}/*-----------------------------------------------------------------------------------*//* * tcp_arg(): * * Used to specify the argument that should be passed callback * functions. * */ /*-----------------------------------------------------------------------------------*/voidtcp_arg(struct tcp_pcb *pcb, void *arg){ pcb->callback_arg = arg;}/*-----------------------------------------------------------------------------------*//* * tcp_recv(): * * Used to specify the function that should be called when a TCP * connection receives data. * */ /*-----------------------------------------------------------------------------------*/#if LWIP_CALLBACK_APIvoidtcp_recv(struct tcp_pcb *pcb, err_t (* recv)(void *arg, struct tcp_pcb *tpcb, struct pbuf *p, err_t err)){ pcb->recv = recv;}#endif /* LWIP_CALLBACK_API *//*-----------------------------------------------------------------------------------*//* * tcp_sent(): * * Used to specify the function that should be called when TCP data * has been successfully delivered to the remote host. * */ /*-----------------------------------------------------------------------------------*/#if LWIP_CALLBACK_APIvoidtcp_sent(struct tcp_pcb *pcb, err_t (* sent)(void *arg, struct tcp_pcb *tpcb, u16_t len)){ pcb->sent = sent;}#endif /* LWIP_CALLBACK_API *//*-----------------------------------------------------------------------------------*//* * tcp_err(): * * Used to specify the function that should be called when a fatal error * has occured on the connection. * */ /*-----------------------------------------------------------------------------------*/#if LWIP_CALLBACK_APIvoidtcp_err(struct tcp_pcb *pcb, void (* errf)(void *arg, err_t err)){ pcb->errf = errf;}#endif /* LWIP_CALLBACK_API *//*-----------------------------------------------------------------------------------*//* * tcp_poll(): * * Used to specify the function that should be called periodically * from TCP. The interval is specified in terms of the TCP coarse * timer interval, which is called twice a second. * */ /*-----------------------------------------------------------------------------------*/voidtcp_poll(struct tcp_pcb *pcb, err_t (* poll)(void *arg, struct tcp_pcb *tpcb), u8_t interval){#if LWIP_CALLBACK_API pcb->poll = poll;#endif /* LWIP_CALLBACK_API */ pcb->pollinterval = interval;}/*-----------------------------------------------------------------------------------*//* * tcp_accept(): * * Used for specifying the function that should be called when a * LISTENing connection has been connected to another host. * */ /*-----------------------------------------------------------------------------------*/#if LWIP_CALLBACK_APIvoidtcp_accept(struct tcp_pcb *pcb, err_t (* accept)(void *arg, struct tcp_pcb *newpcb, err_t err)){ ((struct tcp_pcb_listen *)pcb)->accept = accept;}#endif /* LWIP_CALLBACK_API *//*-----------------------------------------------------------------------------------*//* * tcp_pcb_purge(): * * Purges a TCP PCB. Removes any buffered data and frees the buffer memory. * *//*-----------------------------------------------------------------------------------*/voidtcp_pcb_purge(struct tcp_pcb *pcb){ if(pcb->state != CLOSED && pcb->state != TIME_WAIT && pcb->state != LISTEN) { DEBUGF(TCP_DEBUG, ("tcp_pcb_purge\n")); #if TCP_DEBUG if(pcb->unsent != NULL) { DEBUGF(TCP_DEBUG, ("tcp_pcb_purge: not all data sent\n")); } if(pcb->unacked != NULL) { DEBUGF(TCP_DEBUG, ("tcp_pcb_purge: data left on ->unacked\n")); }#if TCP_QUEUE_OOSEQ /* LW */ if(pcb->ooseq != NULL) { DEBUGF(TCP_DEBUG, ("tcp_pcb_purge: data left on ->ooseq\n")); }#endif#endif /* TCP_DEBUG */ tcp_segs_free(pcb->unsent);#if TCP_QUEUE_OOSEQ tcp_segs_free(pcb->ooseq);#endif /* TCP_QUEUE_OOSEQ */ tcp_segs_free(pcb->unacked); pcb->unacked = pcb->unsent =#if TCP_QUEUE_OOSEQ pcb->ooseq =#endif /* TCP_QUEUE_OOSEQ */ NULL; }}/*-----------------------------------------------------------------------------------*//* * tcp_pcb_remove(): * * Purges the PCB and removes it from a PCB list. Any delayed ACKs are sent first. * *//*-----------------------------------------------------------------------------------*/voidtcp_pcb_remove(struct tcp_pcb **pcblist, struct tcp_pcb *pcb){ TCP_RMV(pcblist, pcb); tcp_pcb_purge(pcb); /* if there is an outstanding delayed ACKs, send it */ if(pcb->state != TIME_WAIT && pcb->state != LISTEN && pcb->flags & TF_ACK_DELAY) { pcb->flags |= TF_ACK_NOW; tcp_output(pcb); } pcb->state = CLOSED; LWIP_ASSERT("tcp_pcb_remove: tcp_pcbs_sane()", tcp_pcbs_sane());}/*-----------------------------------------------------------------------------------*//* * tcp_next_iss(): * * Calculates a new initial sequence number for new connections. * *//*-----------------------------------------------------------------------------------*/u32_ttcp_next_iss(void){ static u32_t iss = 6510; iss += tcp_ticks; /* XXX */ return iss;}/*-----------------------------------------------------------------------------------*/#if TCP_DEBUG || TCP_INPUT_DEBUG || TCP_OUTPUT_DEBUGvoidtcp_debug_print(struct tcp_hdr *tcphdr){ DEBUGF(TCP_DEBUG, ("TCP header:\n")); DEBUGF(TCP_DEBUG, ("+-------------------------------+\n")); DEBUGF(TCP_DEBUG, ("| %04x | %04x | (src port, dest port)\n", tcphdr->src, tcphdr->dest)); DEBUGF(TCP_DEBUG, ("+-------------------------------+\n")); DEBUGF(TCP_DEBUG, ("| %08lu | (seq no)\n", tcphdr->seqno)); DEBUGF(TCP_DEBUG, ("+-------------------------------+\n")); DEBUGF(TCP_DEBUG, ("| %08lu | (ack no)\n", tcphdr->ackno)); DEBUGF(TCP_DEBUG, ("+-------------------------------+\n")); DEBUGF(TCP_DEBUG, ("| %2u | |%u%u%u%u%u| %5u | (offset, flags (", TCPH_OFFSET(tcphdr), TCPH_FLAGS(tcphdr) >> 4 & 1, TCPH_FLAGS(tcphdr) >> 4 & 1, TCPH_FLAGS(tcphdr) >> 3 & 1, TCPH_FLAGS(tcphdr) >> 2 & 1, TCPH_FLAGS(tcphdr) >> 1 & 1, TCPH_FLAGS(tcphdr) & 1, tcphdr->wnd)); tcp_debug_print_flags(TCPH_FLAGS(tcphdr)); DEBUGF(TCP_DEBUG, ("), win)\n")); DEBUGF(TCP_DEBUG, ("+-------------------------------+\n")); DEBUGF(TCP_DEBUG, ("| 0x%04x | %5u | (chksum, urgp)\n", ntohs(tcphdr->chksum), ntohs(tcphdr->urgp))); DEBUGF(TCP_DEBUG, ("+-------------------------------+\n"));}/*-----------------------------------------------------------------------------------*/voidtcp_debug_print_state(enum tcp_state s){ DEBUGF(TCP_DEBUG, ("State: ")); switch(s) { case CLOSED: DEBUGF(TCP_DEBUG, ("CLOSED\n")); break; case LISTEN: DEBUGF(TCP_DEBUG, ("LISTEN\n")); break; case SYN_SENT: DEBUGF(TCP_DEBUG, ("SYN_SENT\n")); break; case SYN_RCVD: DEBUGF(TCP_DEBUG, ("SYN_RCVD\n")); break; case ESTABLISHED: DEBUGF(TCP_DEBUG, ("ESTABLISHED\n")); break; case FIN_WAIT_1: DEBUGF(TCP_DEBUG, ("FIN_WAIT_1\n")); break; case FIN_WAIT_2: DEBUGF(TCP_DEBUG, ("FIN_WAIT_2\n")); break; case CLOSE_WAIT: DEBUGF(TCP_DEBUG, ("CLOSE_WAIT\n")); break; case CLOSING: DEBUGF(TCP_DEBUG, ("CLOSING\n")); break; case LAST_ACK: DEBUGF(TCP_DEBUG, ("LAST_ACK\n")); break; case TIME_WAIT: DEBUGF(TCP_DEBUG, ("TIME_WAIT\n")); break; }}/*-----------------------------------------------------------------------------------*/voidtcp_debug_print_flags(u8_t flags){ if(flags & TCP_FIN) { DEBUGF(TCP_DEBUG, ("FIN ")); } if(flags & TCP_SYN) { DEBUGF(TCP_DEBUG, ("SYN ")); } if(flags & TCP_RST) { DEBUGF(TCP_DEBUG, ("RST ")); } if(flags & TCP_PSH) { DEBUGF(TCP_DEBUG, ("PSH ")); } if(flags & TCP_ACK) { DEBUGF(TCP_DEBUG, ("ACK ")); } if(flags & TCP_URG) { DEBUGF(TCP_DEBUG, ("URG ")); }}/*-----------------------------------------------------------------------------------*/voidtcp_debug_print_pcbs(void){ struct tcp_pcb *pcb; DEBUGF(TCP_DEBUG, ("Active PCB states:\n")); for(pcb = tcp_active_pcbs; pcb != NULL; pcb = pcb->next) { DEBUGF(TCP_DEBUG, ("Local port %u, foreign port %u snd_nxt %lu rcv_nxt %lu ", pcb->local_port, pcb->remote_port, pcb->snd_nxt, pcb->rcv_nxt)); tcp_debug_print_state(pcb->state); } DEBUGF(TCP_DEBUG, ("Listen PCB states:\n")); for(pcb = (struct tcp_pcb *)tcp_listen_pcbs; pcb != NULL; pcb = pcb->next) { DEBUGF(TCP_DEBUG, ("Local port %u, foreign port %u snd_nxt %lu rcv_nxt %lu ", pcb->local_port, pcb->remote_port, pcb->snd_nxt, pcb->rcv_nxt)); tcp_debug_print_state(pcb->state); } DEBUGF(TCP_DEBUG, ("TIME-WAIT PCB states:\n")); for(pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) { DEBUGF(TCP_DEBUG, ("Local port %u, foreign port %u snd_nxt %lu rcv_nxt %lu ", pcb->local_port, pcb->remote_port, pcb->snd_nxt, pcb->rcv_nxt)); tcp_debug_print_state(pcb->state); } }/*-----------------------------------------------------------------------------------*/inttcp_pcbs_sane(void){ struct tcp_pcb *pcb; for(pcb = tcp_active_pcbs; pcb != NULL; pcb = pcb->next) { LWIP_ASSERT("tcp_pcbs_sane: active pcb->state != CLOSED", pcb->state != CLOSED); LWIP_ASSERT("tcp_pcbs_sane: active pcb->state != LISTEN", pcb->state != LISTEN); LWIP_ASSERT("tcp_pcbs_sane: active pcb->state != TIME-WAIT", pcb->state != TIME_WAIT); } for(pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) { LWIP_ASSERT("tcp_pcbs_sane: tw pcb->state == TIME-WAIT", pcb->state == TIME_WAIT); } return 1;}#endif /* TCP_DEBUG */#endif /* LWIP_TCP *//*-----------------------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -