2007-08-09 22:21:44 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Sequential API Main thread module
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
/*
|
2004-02-07 00:30:03 +00:00
|
|
|
* Copyright (c) 2001-2004 Swedish Institute of Computer Science.
|
2007-03-03 16:22:38 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
2002-10-19 12:59:30 +00:00
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
2007-03-03 16:22:38 +00:00
|
|
|
* derived from this software without specific prior written permission.
|
2002-10-19 12:59:30 +00:00
|
|
|
*
|
2007-03-03 16:22:38 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
|
|
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
|
|
|
|
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
2002-10-19 12:59:30 +00:00
|
|
|
* OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
2007-03-03 16:22:38 +00:00
|
|
|
*
|
2002-10-19 12:59:30 +00:00
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lwip/opt.h"
|
|
|
|
|
|
|
|
#include "lwip/sys.h"
|
|
|
|
|
|
|
|
#include "lwip/memp.h"
|
|
|
|
#include "lwip/pbuf.h"
|
|
|
|
|
2007-03-06 14:18:02 +00:00
|
|
|
#include "netif/etharp.h"
|
2007-08-16 19:16:03 +00:00
|
|
|
#include "netif/ppp_oe.h"
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/ip.h"
|
2006-03-01 14:51:58 +00:00
|
|
|
#include "lwip/ip_frag.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
#include "lwip/udp.h"
|
|
|
|
#include "lwip/tcp.h"
|
|
|
|
|
|
|
|
#include "lwip/tcpip.h"
|
2007-03-11 19:16:38 +00:00
|
|
|
#include "lwip/igmp.h"
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2007-05-18 11:27:46 +00:00
|
|
|
#if !NO_SYS
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/* global variables */
|
2002-10-19 12:59:30 +00:00
|
|
|
static void (* tcpip_init_done)(void *arg) = NULL;
|
2007-03-20 18:01:40 +00:00
|
|
|
static void *tcpip_init_done_arg = NULL;
|
|
|
|
static sys_mbox_t mbox = SYS_MBOX_NULL;
|
2004-11-28 18:23:00 +00:00
|
|
|
|
2007-06-08 19:27:59 +00:00
|
|
|
#if LWIP_TCPIP_CORE_LOCKING
|
|
|
|
/** The global semaphore to lock the stack. */
|
|
|
|
sys_sem_t lock_tcpip_core = 0;
|
|
|
|
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
|
2003-03-21 10:48:21 +00:00
|
|
|
#if LWIP_TCP
|
2007-06-17 12:18:11 +00:00
|
|
|
/* global variable that shows if the tcp timer is currently scheduled or not */
|
2003-02-06 22:18:56 +00:00
|
|
|
static int tcpip_tcp_timer_active = 0;
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls tcp_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
static void
|
|
|
|
tcpip_tcp_timer(void *arg)
|
|
|
|
{
|
2007-04-11 19:39:24 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2003-02-06 22:18:56 +00:00
|
|
|
|
2004-07-12 20:42:16 +00:00
|
|
|
/* call TCP timer handler */
|
2002-10-19 12:59:30 +00:00
|
|
|
tcp_tmr();
|
2004-07-12 20:42:16 +00:00
|
|
|
/* timer still needed? */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (tcp_active_pcbs || tcp_tw_pcbs) {
|
2004-07-12 20:42:16 +00:00
|
|
|
/* restart timer */
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
|
2003-02-06 22:18:56 +00:00
|
|
|
} else {
|
2004-07-12 20:42:16 +00:00
|
|
|
/* disable timer */
|
|
|
|
tcpip_tcp_timer_active = 0;
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
|
|
|
|
2004-11-28 18:23:00 +00:00
|
|
|
#if !NO_SYS
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Called from TCP_REG when registering a new PCB:
|
|
|
|
* the reason is to have the TCP timer only running when
|
|
|
|
* there are active (or time-wait) PCBs.
|
|
|
|
*/
|
2003-02-06 22:18:56 +00:00
|
|
|
void
|
|
|
|
tcp_timer_needed(void)
|
|
|
|
{
|
2004-07-12 20:42:16 +00:00
|
|
|
/* timer is off but needed again? */
|
2003-05-01 13:24:01 +00:00
|
|
|
if (!tcpip_tcp_timer_active && (tcp_active_pcbs || tcp_tw_pcbs)) {
|
2004-07-12 20:42:16 +00:00
|
|
|
/* enable and start timer */
|
|
|
|
tcpip_tcp_timer_active = 1;
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL);
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-28 18:23:00 +00:00
|
|
|
#endif /* !NO_SYS */
|
2003-03-21 10:48:21 +00:00
|
|
|
#endif /* LWIP_TCP */
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2006-03-01 14:51:58 +00:00
|
|
|
#if IP_REASSEMBLY
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls ip_reass_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2006-03-01 14:51:58 +00:00
|
|
|
static void
|
2007-06-17 12:18:11 +00:00
|
|
|
ip_reass_timer(void *arg)
|
2006-03-01 14:51:58 +00:00
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2006-03-01 14:51:58 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: ip_reass_tmr()\n"));
|
|
|
|
ip_reass_tmr();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL);
|
2006-03-01 14:51:58 +00:00
|
|
|
}
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* IP_REASSEMBLY */
|
2006-03-01 14:51:58 +00:00
|
|
|
|
2007-03-26 16:13:46 +00:00
|
|
|
#if LWIP_ARP
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls etharp_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-03-06 14:18:02 +00:00
|
|
|
static void
|
|
|
|
arp_timer(void *arg)
|
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2007-03-06 14:18:02 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: etharp_tmr()\n"));
|
|
|
|
etharp_tmr();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
|
2007-03-06 14:18:02 +00:00
|
|
|
}
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_ARP */
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2007-03-08 10:37:31 +00:00
|
|
|
#if LWIP_DHCP
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls dhcp_coarse_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-03-08 10:37:31 +00:00
|
|
|
static void
|
|
|
|
dhcp_timer_coarse(void *arg)
|
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2007-03-08 10:37:31 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: dhcp_coarse_tmr()\n"));
|
|
|
|
dhcp_coarse_tmr();
|
|
|
|
sys_timeout(DHCP_COARSE_TIMER_SECS*1000, dhcp_timer_coarse, NULL);
|
|
|
|
}
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls dhcp_fine_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-03-08 10:37:31 +00:00
|
|
|
static void
|
|
|
|
dhcp_timer_fine(void *arg)
|
|
|
|
{
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2007-03-08 10:37:31 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: dhcp_fine_tmr()\n"));
|
|
|
|
dhcp_fine_tmr();
|
|
|
|
sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL);
|
|
|
|
}
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_DHCP */
|
2007-03-08 10:37:31 +00:00
|
|
|
|
2007-06-19 10:11:27 +00:00
|
|
|
#if LWIP_AUTOIP
|
|
|
|
/**
|
|
|
|
* Timer callback function that calls autoip_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
autoip_timer(void *arg)
|
|
|
|
{
|
|
|
|
LWIP_UNUSED_ARG(arg);
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: autoip_tmr()\n"));
|
|
|
|
autoip_tmr();
|
|
|
|
sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL);
|
|
|
|
}
|
|
|
|
#endif /* LWIP_AUTOIP */
|
|
|
|
|
2007-05-16 14:12:52 +00:00
|
|
|
#if LWIP_IGMP
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Timer callback function that calls igmp_tmr() and reschedules itself.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2007-05-16 14:12:52 +00:00
|
|
|
static void
|
|
|
|
igmp_timer(void *arg)
|
|
|
|
{
|
|
|
|
LWIP_UNUSED_ARG(arg);
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip: igmp_tmr()\n"));
|
|
|
|
igmp_tmr();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL);
|
2007-05-16 14:12:52 +00:00
|
|
|
}
|
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2007-03-06 14:18:02 +00:00
|
|
|
#if ETHARP_TCPIP_ETHINPUT
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Process received ethernet frames. Using this function instead of directly
|
|
|
|
* calling ip_input and passing ARP frames through etharp in ethernetif_input,
|
|
|
|
* the ARP cache is protected from concurrent access.
|
|
|
|
*
|
|
|
|
* @param p the recevied packet, p->payload pointing to the ethernet header
|
|
|
|
* @param netif the network interface on which the packet was received
|
|
|
|
*/
|
2007-08-16 20:50:43 +00:00
|
|
|
static err_t
|
2007-03-06 14:18:02 +00:00
|
|
|
ethernet_input(struct pbuf *p, struct netif *netif)
|
|
|
|
{
|
|
|
|
struct eth_hdr* ethhdr;
|
|
|
|
|
|
|
|
/* points to packet payload, which starts with an Ethernet header */
|
|
|
|
ethhdr = p->payload;
|
2007-03-06 19:31:49 +00:00
|
|
|
|
2007-03-06 14:18:02 +00:00
|
|
|
switch (htons(ethhdr->type)) {
|
|
|
|
/* IP packet? */
|
|
|
|
case ETHTYPE_IP:
|
2007-05-17 09:04:36 +00:00
|
|
|
#if ETHARP_TRUST_IP_MAC
|
2007-03-06 14:18:02 +00:00
|
|
|
/* update ARP table */
|
|
|
|
etharp_ip_input( netif, p);
|
2007-05-17 09:04:36 +00:00
|
|
|
#endif
|
2007-03-06 14:18:02 +00:00
|
|
|
/* skip Ethernet header */
|
2007-03-26 18:57:30 +00:00
|
|
|
if(pbuf_header(p, -(s16_t)sizeof(struct eth_hdr))) {
|
2007-03-21 12:55:00 +00:00
|
|
|
LWIP_ASSERT("Can't move over header in packet", 0);
|
|
|
|
pbuf_free(p);
|
|
|
|
p = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* pass to IP layer */
|
|
|
|
ip_input(p, netif);
|
2007-03-06 14:18:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ETHTYPE_ARP:
|
|
|
|
/* pass p to ARP module */
|
|
|
|
etharp_arp_input(netif, (struct eth_addr*)(netif->hwaddr), p);
|
|
|
|
break;
|
|
|
|
|
2007-08-17 00:30:27 +00:00
|
|
|
#if PPPOE_SUPPORT
|
|
|
|
case ETHTYPE_PPPOEDISC: /* PPP Over Ethernet Discovery Stage */
|
|
|
|
pppoe_disc_input(netif, p);
|
|
|
|
break;
|
|
|
|
case ETHTYPE_PPPOE: /* PPP Over Ethernet Session Stage */
|
|
|
|
pppoe_data_input(netif, p);
|
|
|
|
break;
|
|
|
|
#endif /* PPPOE_SUPPORT */
|
2007-08-16 19:16:03 +00:00
|
|
|
|
2007-03-06 14:18:02 +00:00
|
|
|
default:
|
|
|
|
pbuf_free(p);
|
|
|
|
p = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2007-08-16 20:50:43 +00:00
|
|
|
|
|
|
|
return ERR_OK; /* return value ignored */
|
2007-03-06 14:18:02 +00:00
|
|
|
}
|
|
|
|
#endif /* ETHARP_TCPIP_ETHINPUT */
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* The main lwIP thread. This thread has exclusive access to lwIP core functions
|
|
|
|
* (unless access to them is not locked). Other threads communicate with this
|
|
|
|
* thread using message boxes.
|
|
|
|
*
|
|
|
|
* It also starts all the timers to make sure they are running in the right
|
|
|
|
* thread context.
|
|
|
|
*
|
|
|
|
* @param arg unused argument
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
static void
|
|
|
|
tcpip_thread(void *arg)
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-04-24 08:35:19 +00:00
|
|
|
LWIP_UNUSED_ARG(arg);
|
2002-10-19 12:59:30 +00:00
|
|
|
|
2006-03-01 14:51:58 +00:00
|
|
|
#if IP_REASSEMBLY
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL);
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* IP_REASSEMBLY */
|
|
|
|
#if LWIP_ARP
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL);
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_ARP */
|
2007-03-08 10:37:31 +00:00
|
|
|
#if LWIP_DHCP
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(DHCP_COARSE_TIMER_SECS*1000, dhcp_timer_coarse, NULL);
|
|
|
|
sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL);
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_DHCP */
|
2007-06-19 10:11:27 +00:00
|
|
|
#if LWIP_AUTOIP
|
|
|
|
sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL);
|
|
|
|
#endif /* LWIP_AUTOIP */
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2003-05-01 13:24:01 +00:00
|
|
|
if (tcpip_init_done != NULL) {
|
2002-10-19 12:59:30 +00:00
|
|
|
tcpip_init_done(tcpip_init_done_arg);
|
|
|
|
}
|
|
|
|
|
2007-05-16 14:12:52 +00:00
|
|
|
#if LWIP_IGMP
|
|
|
|
igmp_init();
|
2007-06-17 12:18:11 +00:00
|
|
|
sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL);
|
2007-05-16 14:12:52 +00:00
|
|
|
#endif /* LWIP_IGMP */
|
|
|
|
|
2007-06-08 19:27:59 +00:00
|
|
|
LOCK_TCPIP_CORE();
|
2003-05-01 13:24:01 +00:00
|
|
|
while (1) { /* MAIN Loop */
|
2007-03-08 20:58:46 +00:00
|
|
|
sys_mbox_fetch(mbox, (void *)&msg);
|
2003-05-01 13:24:01 +00:00
|
|
|
switch (msg->type) {
|
2002-10-19 12:59:30 +00:00
|
|
|
case TCPIP_MSG_API:
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: API message %p\n", (void *)msg));
|
2007-05-11 08:58:23 +00:00
|
|
|
msg->msg.apimsg->function(&(msg->msg.apimsg->msg));
|
2002-10-19 12:59:30 +00:00
|
|
|
break;
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2007-08-16 19:49:08 +00:00
|
|
|
#if ETHARP_TCPIP_INPUT || ETHARP_TCPIP_ETHINPUT
|
2007-08-17 02:46:43 +00:00
|
|
|
case TCPIP_MSG_INPKT:
|
2007-08-16 19:49:08 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: PACKET %p\n", (void *)msg));
|
2007-08-17 09:57:37 +00:00
|
|
|
msg->msg.inp.f(msg->msg.inp.p, msg->msg.inp.netif);
|
|
|
|
memp_free(MEMP_TCPIP_MSG_INPKT, msg);
|
2007-03-06 14:18:02 +00:00
|
|
|
break;
|
2007-08-16 19:49:08 +00:00
|
|
|
#endif /* ETHARP_TCPIP_INPUT || ETHARP_TCPIP_ETHINPUT */
|
2007-03-06 14:18:02 +00:00
|
|
|
|
2007-04-06 10:09:24 +00:00
|
|
|
#if LWIP_NETIF_API
|
|
|
|
case TCPIP_MSG_NETIFAPI:
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: Netif API message %p\n", (void *)msg));
|
2007-06-28 10:11:05 +00:00
|
|
|
msg->msg.netifapimsg->function(&(msg->msg.netifapimsg->msg));
|
2007-04-06 10:09:24 +00:00
|
|
|
break;
|
|
|
|
#endif /* LWIP_NETIF_API */
|
|
|
|
|
2003-03-19 11:23:46 +00:00
|
|
|
case TCPIP_MSG_CALLBACK:
|
2003-06-10 10:45:29 +00:00
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: CALLBACK %p\n", (void *)msg));
|
2003-03-19 11:23:46 +00:00
|
|
|
msg->msg.cb.f(msg->msg.cb.ctx);
|
2007-08-17 02:46:43 +00:00
|
|
|
memp_free(MEMP_TCPIP_MSG_API, msg);
|
2003-02-06 22:18:56 +00:00
|
|
|
break;
|
2007-08-17 09:57:37 +00:00
|
|
|
case TCPIP_MSG_TIMEOUT:
|
|
|
|
LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: TIMEOUT %p\n", (void *)msg));
|
2007-08-16 18:12:20 +00:00
|
|
|
|
2007-08-17 09:57:37 +00:00
|
|
|
if(msg->msg.tmo.msecs != 0xffffffff)
|
|
|
|
sys_timeout (msg->msg.tmo.msecs, msg->msg.tmo.h, msg->msg.tmo.arg);
|
|
|
|
else
|
|
|
|
sys_untimeout (msg->msg.tmo.h, msg->msg.tmo.arg);
|
2007-08-17 02:46:43 +00:00
|
|
|
memp_free(MEMP_TCPIP_MSG_API, msg);
|
2007-08-17 09:57:37 +00:00
|
|
|
break;
|
2002-10-19 12:59:30 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-03-06 14:18:02 +00:00
|
|
|
#if ETHARP_TCPIP_INPUT
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Pass a received IP packet to tcpip_thread for input processing
|
|
|
|
*
|
|
|
|
* @param p the recevied packet, p->payload pointing to the IP header
|
|
|
|
* @param netif the network interface on which the packet was received
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
err_t
|
|
|
|
tcpip_input(struct pbuf *p, struct netif *inp)
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-03-20 18:01:40 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 02:46:43 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_INPKT);
|
2007-03-20 18:01:40 +00:00
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-08-17 02:46:43 +00:00
|
|
|
msg->type = TCPIP_MSG_INPKT;
|
2007-08-17 09:57:37 +00:00
|
|
|
msg->msg.inp.f = ip_input;
|
|
|
|
msg->msg.inp.p = p;
|
|
|
|
msg->msg.inp.netif = inp;
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
return ERR_OK;
|
2007-08-16 19:49:08 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
err_t
|
|
|
|
tcpip_input_callback(struct pbuf *p, struct netif *inp, err_t (*f)(struct pbuf *, struct netif *))
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-08-17 09:57:37 +00:00
|
|
|
|
2007-08-16 19:49:08 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 09:57:37 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_INPKT);
|
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-08-16 19:49:08 +00:00
|
|
|
|
2007-08-17 09:57:37 +00:00
|
|
|
msg->type = TCPIP_MSG_INPKT;
|
|
|
|
msg->msg.inp.f = f;
|
2007-03-20 18:01:40 +00:00
|
|
|
msg->msg.inp.p = p;
|
|
|
|
msg->msg.inp.netif = inp;
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
return ERR_VAL;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2007-03-06 14:18:02 +00:00
|
|
|
#endif /* ETHARP_TCPIP_INPUT */
|
|
|
|
|
|
|
|
#if ETHARP_TCPIP_ETHINPUT
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Pass a received IP packet to tcpip_thread for input processing
|
|
|
|
*
|
|
|
|
* @param p the recevied packet, p->payload pointing to the ethernet header
|
|
|
|
* @param netif the network interface on which the packet was received
|
|
|
|
*/
|
2007-03-06 14:18:02 +00:00
|
|
|
err_t
|
|
|
|
tcpip_ethinput(struct pbuf *p, struct netif *inp)
|
|
|
|
{
|
2007-08-16 19:49:08 +00:00
|
|
|
return tcpip_input_callback(p, inp, ethernet_input);
|
2007-03-06 14:18:02 +00:00
|
|
|
}
|
|
|
|
#endif /* ETHARP_TCPIP_ETHINPUT */
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Call a specific function in the thread context of
|
|
|
|
* tcpip_thread for easy access synchronization.
|
|
|
|
* A function called in that way may access lwIP core code
|
|
|
|
* without fearing concurrent access.
|
|
|
|
*
|
|
|
|
* @param f the function to call
|
|
|
|
* @param ctx parameter passed to f
|
|
|
|
* @return ERR_OK if the function was called, another err_t if not
|
|
|
|
*/
|
2003-02-06 22:18:56 +00:00
|
|
|
err_t
|
2003-03-19 11:23:46 +00:00
|
|
|
tcpip_callback(void (*f)(void *ctx), void *ctx)
|
2003-02-06 22:18:56 +00:00
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-03-20 18:01:40 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 02:46:43 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_API);
|
2007-03-20 18:01:40 +00:00
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2007-03-20 18:01:40 +00:00
|
|
|
msg->type = TCPIP_MSG_CALLBACK;
|
|
|
|
msg->msg.cb.f = f;
|
|
|
|
msg->msg.cb.ctx = ctx;
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
return ERR_VAL;
|
2003-02-06 22:18:56 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-08-16 18:12:20 +00:00
|
|
|
err_t
|
|
|
|
tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg)
|
|
|
|
{
|
|
|
|
struct tcpip_msg *msg;
|
2007-08-17 10:46:07 +00:00
|
|
|
|
2007-08-16 18:12:20 +00:00
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-08-17 10:46:07 +00:00
|
|
|
msg = memp_malloc(MEMP_TCPIP_MSG_API);
|
|
|
|
if (msg == NULL) {
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg->type = TCPIP_MSG_TIMEOUT;
|
|
|
|
msg->msg.tmo.msecs = msecs;
|
|
|
|
msg->msg.tmo.h = h;
|
|
|
|
msg->msg.tmo.arg = arg;
|
|
|
|
sys_mbox_post(mbox, msg);
|
|
|
|
return ERR_OK;
|
2007-08-16 18:12:20 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Call the lower part of a netconn_* function
|
|
|
|
* This function is then running in the thread context
|
|
|
|
* of tcpip_thread and has exclusive access to lwIP core code.
|
|
|
|
*
|
|
|
|
* @param apimsg a struct containing the function to call and its parameters
|
|
|
|
* @return ERR_OK if the function was called, another err_t if not
|
|
|
|
*/
|
2007-03-19 20:35:32 +00:00
|
|
|
err_t
|
2002-10-19 12:59:30 +00:00
|
|
|
tcpip_apimsg(struct api_msg *apimsg)
|
|
|
|
{
|
2007-03-21 16:38:58 +00:00
|
|
|
struct tcpip_msg msg;
|
2007-03-20 18:01:40 +00:00
|
|
|
|
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-03-21 16:38:58 +00:00
|
|
|
msg.type = TCPIP_MSG_API;
|
|
|
|
msg.msg.apimsg = apimsg;
|
|
|
|
sys_mbox_post(mbox, &msg);
|
2007-05-22 20:51:34 +00:00
|
|
|
sys_arch_mbox_fetch(apimsg->msg.conn->mbox, NULL, 0);
|
2007-03-20 18:01:40 +00:00
|
|
|
return ERR_OK;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2007-03-20 18:01:40 +00:00
|
|
|
return ERR_VAL;
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-06-08 19:27:59 +00:00
|
|
|
#if LWIP_TCPIP_CORE_LOCKING
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Call the lower part of a netconn_* function
|
2007-06-28 10:11:05 +00:00
|
|
|
* This function has exclusive access to lwIP core code by locking it
|
2007-06-17 12:18:11 +00:00
|
|
|
* before the function is called.
|
|
|
|
*
|
|
|
|
* @param apimsg a struct containing the function to call and its parameters
|
|
|
|
* @return ERR_OK (only for compatibility fo tcpip_apimsg())
|
|
|
|
*/
|
2007-06-08 19:27:59 +00:00
|
|
|
err_t
|
|
|
|
tcpip_apimsg_lock(struct api_msg *apimsg)
|
|
|
|
{
|
|
|
|
LOCK_TCPIP_CORE();
|
|
|
|
apimsg->function(&(apimsg->msg));
|
|
|
|
UNLOCK_TCPIP_CORE();
|
|
|
|
return ERR_OK;
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
|
2007-04-06 10:09:24 +00:00
|
|
|
#if LWIP_NETIF_API
|
2007-06-28 10:11:05 +00:00
|
|
|
#if !LWIP_TCPIP_CORE_LOCKING
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Much like tcpip_apimsg, but calls the lower part of a netifapi_*
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* @param netifapimsg a struct containing the function to call and its parameters
|
|
|
|
* @return error code given back by the function that was called
|
|
|
|
*/
|
|
|
|
err_t
|
|
|
|
tcpip_netifapi(struct netifapi_msg* netifapimsg)
|
2007-04-06 10:09:24 +00:00
|
|
|
{
|
|
|
|
struct tcpip_msg msg;
|
|
|
|
|
|
|
|
if (mbox != SYS_MBOX_NULL) {
|
2007-06-28 10:11:05 +00:00
|
|
|
netifapimsg->msg.sem = sys_sem_new(0);
|
|
|
|
if (netifapimsg->msg.sem == SYS_SEM_NULL) {
|
|
|
|
netifapimsg->msg.err = ERR_MEM;
|
|
|
|
return netifapimsg->msg.err;
|
2007-05-22 20:51:34 +00:00
|
|
|
}
|
|
|
|
|
2007-04-06 10:09:24 +00:00
|
|
|
msg.type = TCPIP_MSG_NETIFAPI;
|
|
|
|
msg.msg.netifapimsg = netifapimsg;
|
|
|
|
sys_mbox_post(mbox, &msg);
|
2007-06-28 10:11:05 +00:00
|
|
|
sys_sem_wait(netifapimsg->msg.sem);
|
|
|
|
sys_sem_free(netifapimsg->msg.sem);
|
|
|
|
return netifapimsg->msg.err;
|
2007-04-06 10:09:24 +00:00
|
|
|
}
|
|
|
|
return ERR_VAL;
|
|
|
|
}
|
2007-06-28 10:11:05 +00:00
|
|
|
#else /* !LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
/**
|
|
|
|
* Call the lower part of a netifapi_* function
|
|
|
|
* This function has exclusive access to lwIP core code by locking it
|
|
|
|
* before the function is called.
|
|
|
|
*
|
|
|
|
* @param netifapimsg a struct containing the function to call and its parameters
|
|
|
|
* @return ERR_OK (only for compatibility fo tcpip_netifapi())
|
|
|
|
*/
|
|
|
|
err_t
|
|
|
|
tcpip_netifapi_lock(struct netifapi_msg* netifapimsg)
|
|
|
|
{
|
|
|
|
LOCK_TCPIP_CORE();
|
|
|
|
netifapimsg->function(&(netifapimsg->msg));
|
|
|
|
UNLOCK_TCPIP_CORE();
|
|
|
|
return netifapimsg->msg.err;
|
|
|
|
}
|
|
|
|
#endif /* !LWIP_TCPIP_CORE_LOCKING */
|
2007-04-06 10:09:24 +00:00
|
|
|
#endif /* LWIP_NETIF_API */
|
|
|
|
|
2007-06-17 12:18:11 +00:00
|
|
|
/**
|
|
|
|
* Initialize this module:
|
|
|
|
* - initialize ARP, IP, UDP and TCP
|
|
|
|
* - start the tcpip_thread
|
|
|
|
*
|
|
|
|
* @param initfunc a function to call when tcpip_thread is running and
|
|
|
|
* finished initializing
|
|
|
|
* @param arg argument to pass to initfunc
|
|
|
|
*/
|
2002-10-19 12:59:30 +00:00
|
|
|
void
|
|
|
|
tcpip_init(void (* initfunc)(void *), void *arg)
|
|
|
|
{
|
2007-03-26 16:13:46 +00:00
|
|
|
#if LWIP_ARP
|
|
|
|
etharp_init();
|
2007-06-19 10:11:27 +00:00
|
|
|
#endif /* LWIP_ARP */
|
2007-03-03 16:22:38 +00:00
|
|
|
ip_init();
|
2007-08-17 09:57:37 +00:00
|
|
|
#if LWIP_RAW
|
|
|
|
raw_init();
|
|
|
|
#endif /* LWIP_RAW */
|
2007-03-03 16:22:38 +00:00
|
|
|
#if LWIP_UDP
|
|
|
|
udp_init();
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_UDP */
|
2007-03-03 16:22:38 +00:00
|
|
|
#if LWIP_TCP
|
|
|
|
tcp_init();
|
2007-03-26 16:13:46 +00:00
|
|
|
#endif /* LWIP_TCP */
|
2007-08-17 09:57:37 +00:00
|
|
|
#if LWIP_AUTOIP
|
|
|
|
autoip_init();
|
|
|
|
#endif /* LWIP_AUTOIP */
|
2007-03-03 16:22:38 +00:00
|
|
|
|
2002-10-19 12:59:30 +00:00
|
|
|
tcpip_init_done = initfunc;
|
|
|
|
tcpip_init_done_arg = arg;
|
|
|
|
mbox = sys_mbox_new();
|
2007-06-08 19:27:59 +00:00
|
|
|
#if LWIP_TCPIP_CORE_LOCKING
|
|
|
|
lock_tcpip_core = sys_sem_new(1);
|
|
|
|
#endif /* LWIP_TCPIP_CORE_LOCKING */
|
|
|
|
|
2003-03-19 15:27:56 +00:00
|
|
|
sys_thread_new(tcpip_thread, NULL, TCPIP_THREAD_PRIO);
|
2002-10-19 12:59:30 +00:00
|
|
|
}
|
2003-11-14 13:17:23 +00:00
|
|
|
|
2007-05-18 11:27:46 +00:00
|
|
|
#endif /* !NO_SYS */
|